function varargout = beispiel(varargin)
%BEISPIEL M-file for beispiel.fig
%      BEISPIEL, by itself, creates a new BEISPIEL or raises the existing
%      singleton*.
%
%      H = BEISPIEL returns the handle to a new BEISPIEL or the handle to
%      the existing singleton*.
%
%      BEISPIEL('Property','Value',...) creates a new BEISPIEL using the
%      given property value pairs. Unrecognized properties are passed via
%      varargin to beispiel_OpeningFcn.  This calling syntax produces a
%      warning when there is an existing singleton*.
%
%      BEISPIEL('CALLBACK') and BEISPIEL('CALLBACK',hObject,...) call the
%      local function named CALLBACK in BEISPIEL.M with the given input
%      arguments.
%
%      *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 beispiel

% Last Modified by GUIDE v2.5 06-Jun-2008 10:20:32

% Begin initialization code - DO NOT EDIT
gui_Singleton = 1;
gui_State = struct('gui_Name',       mfilename, ...
                   'gui_Singleton',  gui_Singleton, ...
                   'gui_OpeningFcn', @beispiel_OpeningFcn, ...
                   'gui_OutputFcn',  @beispiel_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 beispiel is made visible.
function beispiel_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   unrecognized PropertyName/PropertyValue pairs from the
%            command line (see VARARGIN)

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

% Update handles structure
guidata(hObject, handles);

% UIWAIT makes beispiel wait for user response (see UIRESUME)
% uiwait(handles.figure1);


% --- Outputs from this function are returned to the command line.
function varargout = beispiel_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 on button press in control_button.
function control_button_Callback(hObject, eventdata, handles)
% hObject    handle to control_button (see GCBO)
% eventdata  reserved - to be defined in a future version of MATLAB
% handles    structure with handles and user data (see GUIDATA)

%
set(hObject,'String',setdiff({'START' 'STOP'},get(hObject,'String')));
%
%       if strcmp('START',get(gcbo,'String'))
%          set(gcbo,'String','STOP')
%       else
%          set(gcbo,'String','START')
%          return
%       end
%
% while-loop
%
i=1;
while strcmp('STOP',get(hObject,'String'))
   %
   disp(sprintf('while-loop active :%d',i));
   i = i+1;
   %
   drawnow % <- darf nicht entfernt werden!!!
end
