function varargout = sub_GUI(varargin)
% SUB_GUI M-file for sub_GUI.fig
%      SUB_GUI, by itself, creates a new SUB_GUI or raises the existing
%      singleton*.
%
%      H = SUB_GUI returns the handle to a new SUB_GUI or the handle to
%      the existing singleton*.
%
%      SUB_GUI('CALLBACK',hObject,eventData,handles,...) calls the local
%      function named CALLBACK in SUB_GUI.M with the given input arguments.
%
%      SUB_GUI('Property','Value',...) creates a new SUB_GUI or raises the
%      existing singleton*.  Starting from the left, property value pairs are
%      applied to the GUI before sub_GUI_OpeningFcn gets called.  An
%      unrecognized property name or invalid value makes property application
%      stop.  All inputs are passed to sub_GUI_OpeningFcn via varargin.
%
%      *See GUI Options on GUIDE's Tools menu.  Choose "GUI allows only one
%      instance to run (singleton)".
%
% See also: GUIDE, GUIDATA, GUIHANDLES

% Edit the above text to modify the response to help sub_GUI

% Last Modified by GUIDE v2.5 02-Jun-2011 14:47:12

% Begin initialization code - DO NOT EDIT
gui_Singleton = 1;
gui_State = struct('gui_Name',       mfilename, ...
                   'gui_Singleton',  gui_Singleton, ...
                   'gui_OpeningFcn', @sub_GUI_OpeningFcn, ...
                   'gui_OutputFcn',  @sub_GUI_OutputFcn, ...
                   'gui_LayoutFcn',  [] , ...
                   'gui_Callback',   []);
if nargin && ischar(varargin{1})
    gui_State.gui_Callback = str2func(varargin{1});
end

if nargout
    [varargout{1:nargout}] = gui_mainfcn(gui_State, varargin{:});
else
    gui_mainfcn(gui_State, varargin{:});
end
% End initialization code - DO NOT EDIT


% --- Executes just before sub_GUI is made visible.
function sub_GUI_OpeningFcn(hObject, eventdata, handles, varargin)
% This function has no output args, see OutputFcn.
% hObject    handle to figure
% eventdata  reserved - to be defined in a future version of MATLAB
% handles    structure with handles and user data (see GUIDATA)
% varargin   command line arguments to sub_GUI (see VARARGIN)

handles.main_GUI = varargin{1}; % handle auf die figures des Hauptprogramms in handlestruktur des sub_GUI_preload GUIs kopieren
handles.fcn_handle = varargin{2};

% Choose default command line output for sub_GUI
handles.output = hObject;

% Update handles structure

guidata(hObject, handles);
delta_t=0.1;
vis_fcn_h='plot_force';
outputplace_h=handles.axes1;    
feval(handles.fcn_handle,delta_t,vis_fcn_h, outputplace_h,handles.main_GUI);

main_GUI_handles=guidata(handles.main_GUI); %aktuelle handles struktur des main_GUI laden

if isvalid(main_GUI_handles.read)    %wenn einlesevorgang nicht chon durch stop angehalten
    set(handles.text1,'string','valid');
else
    set(handles.text1,'string','invalid');
end

% --- Outputs from this function are returned to the command line.
function varargout = sub_GUI_OutputFcn(hObject, eventdata, handles) 
% varargout  cell array for returning output args (see VARARGOUT);
% hObject    handle to figure
% eventdata  reserved - to be defined in a future version of MATLAB
% handles    structure with handles and user data (see GUIDATA)

% Get default command line output from handles structure
varargout{1} = handles.output;

% --- Executes when user attempts to close sub_GUI_preload.
function sub_GUI_preload_CloseRequestFcn(hObject, eventdata, handles)
% hObject    handle to sub_GUI_preload (see GCBO)
% eventdata  reserved - to be defined in a future version of MATLAB
% handles    structure with handles and user data (see GUIDATA)

% Hint: delete(hObject) closes the figure

main_GUI_handles=guidata(handles.main_GUI); %aktuelle handles struktur des main_GUI laden

if isvalid(main_GUI_handles.read)    %wenn einlesevorgang nicht chon durch stop angehalten
    stop(main_GUI_handles.read);%timer stoppen
    delete(main_GUI_handles.read);%timer löschen (schließt auch die Ports)
end

main_GUI_handles = rmfield(main_GUI_handles,'sub_GUI_preload');% feld löschen GUI2 aus handlestruktur GUI1
guidata(handles.main_GUI,main_GUI_handles)% update handlestruktur GUI1
delete(handles.sub_GUI_preload);


% --- Executes on button press in pb_check.
function pb_check_Callback(hObject, eventdata, handles)
% hObject    handle to pb_check (see GCBO)
% eventdata  reserved - to be defined in a future version of MATLAB
% handles    structure with handles and user data (see GUIDATA)

main_GUI_handles=guidata(handles.main_GUI); %aktuelle handles struktur des main_GUI laden

if isvalid(main_GUI_handles.read)    %wenn einlesevorgang nicht chon durch stop angehalten
    set(hObject,'string','valid');
else
    set(hObject,'string','invalid');
end



function edit1_Callback(hObject, eventdata, handles)
% hObject    handle to edit1 (see GCBO)
% eventdata  reserved - to be defined in a future version of MATLAB
% handles    structure with handles and user data (see GUIDATA)

% Hints: get(hObject,'String') returns contents of edit1 as text
%        str2double(get(hObject,'String')) returns contents of edit1 as a double


% --- Executes during object creation, after setting all properties.
function edit1_CreateFcn(hObject, eventdata, handles)
% hObject    handle to edit1 (see GCBO)
% eventdata  reserved - to be defined in a future version of MATLAB
% handles    empty - handles not created until after all CreateFcns called

% Hint: edit controls usually have a white background on Windows.
%       See ISPC and COMPUTER.
if ispc && isequal(get(hObject,'BackgroundColor'), get(0,'defaultUicontrolBackgroundColor'))
    set(hObject,'BackgroundColor','white');
end
