% By Philip Torr 2002 % copyright Microsoft Corp. function F_param_out = torr_c_menu(varargin) % C_MENU Application M-file for c_menu.fig % FIG = C_MENU launch c_menu GUI. % C_MENU('callback_name', ...) invoke the named callback. % Last Modified by GUIDE v2.0 10-Apr-2002 16:21:13 error(nargchk(0,4,nargin)) % function takes only 0 or 2 argument if nargin == 2 % LAUNCH GUI fig = openfig(mfilename,'reuse'); % Use system color scheme for figure: set(fig,'Color',get(0,'defaultUicontrolBackgroundColor')); % % Position figure % if nargin == 2 % pos_size = get(fig,'Position'); % pos = varargin{2}; % if length(pos) ~= 2 % errordlg('Input argument must be a 2-element vector','argh') % end % new_pos = [pos(1) pos(2) pos_size(3) pos_size(4)]; % set(fig,'Position',new_pos,'Visible','on') % figure(fig) % % end % Use system color scheme for figure: set(fig,'Color',get(0,'defaultUicontrolBackgroundColor')); % Generate a structure of handles to pass to callbacks, and store it. handles = guihandles(fig); F_param = varargin{1}; handles.no_samp = F_param.no_samp; handles.threshold = F_param.f_threshold; set(handles.number_samples_button, 'String', num2str(handles.no_samp)); set(handles.T_button, 'String', num2str(handles.threshold)); guidata(fig, handles); % Wait for callbacks to run and window to be dismissed: uiwait(fig); % % UIWAIT might have returned because the window was deleted using % the close box - in that case, return 'cancel' as the answer, and % don't bother deleting the window! if ~ishandle(fig) disp('No changes made'); F_param_out(1) = handles.no_samp; F_param_out(2) = handles.threshold; else % otherwise, we got here because the user pushed one of the two buttons. % retrieve the latest copy of the 'handles' struct, and return the answer. % Also, we need to delete the window. handles = guidata(fig); F_param_out(1) = handles.no_samp F_param_out(2) = handles.threshold delete(fig); end elseif ischar(varargin{1}) % INVOKE NAMED SUBFUNCTION OR CALLBACK try [varargout{1:nargout}] = feval(varargin{:}); % FEVAL switchyard catch disp(lasterr); end end %| ABOUT CALLBACKS: %| GUIDE automatically appends subfunction prototypes to this file, and %| sets objects' callback properties to call them through the FEVAL %| switchyard above. This comment describes that mechanism. %| %| Each callback subfunction declaration has the following form: %| (H, EVENTDATA, HANDLES, VARARGIN) %| %| The subfunction name is composed using the object's Tag and the %| callback type separated by '_', e.g. 'slider2_Callback', %| 'figure1_CloseRequestFcn', 'axis1_ButtondownFcn'. %| %| H is the callback object's handle (obtained using GCBO). %| %| EVENTDATA is empty, but reserved for future use. %| %| HANDLES is a structure containing handles of components in GUI using %| tags as fieldnames, e.g. handles.figure1, handles.slider2. This %| structure is created at GUI startup using GUIHANDLES and stored in %| the figure's application data using GUIDATA. A copy of the structure %| is passed to each callback. You can store additional information in %| this structure at GUI startup, and you can change the structure %| during callbacks. Call guidata(h, handles) after changing your %| copy to replace the stored original so that subsequent callbacks see %| the updates. Type "help guihandles" and "help guidata" for more %| information. %| %| VARARGIN contains any extra arguments you have passed to the %| callback. Specify the extra arguments by editing the callback %| property in the inspector. By default, GUIDE sets the property to: %| ('', gcbo, [], guidata(gcbo)) %| Add any extra arguments after the last argument, before the final %| closing parenthesis. % -------------------------------------------------------------------- function varargout = close_button_Callback(h, eventdata, handles, varargin) % Stub for Callback of the uicontrol handles.close_button. %Stub for Callback of the uicontrol handles.close_button. % % Obtaining the Figure Handle from Within a Callback. In general, dismissing a modal figure requires the handle % of the figure. Since most GUIs hide figure handles to prevent accidental access, the gcbf (get callback figure) % command provides the most effective method to get the figure handle from within a callback routine. % % gcbf returns the handle of the figure containing the object whose callback is executing. This enables you to use % gcbf in the callback of the component that will dismiss the dialog. For example, suppose your dialog includes a % push button (tagged pushbutton1) that closes the dialog. Its callback could include a call to delete at the end of % its callback subfunction. disp('closing'); % F_param_out.no_samp = handles.no_samp; % F_param_out.threshold = handles.threshold; % F_param_out.corner_width = handles.corner_width; uiresume(handles.figure1); % -------------------------------------------------------------------- function varargout = T_button_Callback(h, eventdata, handles, varargin) nc = str2num(get(handles.T_button, 'String')); minnc = 0; maxnc = 20; if (isempty(nc) | (nc <= minnc) | (nc >maxnc)) nc = handles.threshold; WARNDLG(['out of range' num2str(minnc) '-' num2str(maxnc)],'ooops') end; handles.threshold = nc; set(handles.T_button, 'String', num2str(handles.threshold)); %save data guidata(handles.figure1, handles); % -------------------------------------------------------------------- function varargout = number_samples_button_Callback(h, eventdata, handles, varargin) % Stub for Callback of the uicontrol handles.number_samples_button. nc = str2num(get(handles.number_samples_button, 'String')); minnc = 10; maxnc = 10000; if (isempty(nc) | (nc < minnc) | (nc >maxnc)) nc = handles.no_samp; WARNDLG(['out of range' num2str(minnc) '-' num2str(maxnc)],'ooops') end; handles.no_samp = nc; set(handles.number_samples_button, 'String', num2str(handles.no_samp)); %save data guidata(handles.figure1, handles); % -------------------------------------------------------------------- function varargout = text3_Callback(h, eventdata, handles, varargin) % Stub for Callback of the uicontrol handles.text3. disp('text3 Callback not implemented yet.')