Skip to content
Snippets Groups Projects
Commit 410b30a4 authored by jacques.grelet_ird.fr's avatar jacques.grelet_ird.fr
Browse files

add File/Export menu

parent 07b8f949
No related branches found
No related tags found
No related merge requests found
......@@ -138,6 +138,14 @@ hSaveMenu = uimenu(...
'UserData', 'off',...
'HandleVisibility','callback',...
'Callback',@SaveMenuCallback);
hExportMenu = uimenu(...
'Parent', hFileMenu,...
'Label','Export',...
'Accelerator','E',...
'Enable', 'off',...
'UserData', 'off',...
'HandleVisibility','callback',...
'Callback',@ExportMenuCallback);
hQuitMenu = uimenu(...
'Parent',hFileMenu,...
'Label','Quit',...
......@@ -2158,6 +2166,18 @@ end
end
%% ExportMenuCallback
% -------------------------------------------------------------------
% Callback function run when the Export menu item is selected
% -------------------------------------------------------------------
function ExportMenuCallback(hObject, eventdata)
% Export module not yet implemented
% -------------------------------
msgbox('Export module not yet implemented', 'modal');
end
%% UndoMenuCallback
% -----------------------------------------------------------------------
% Callback function run when the Edit/Undo menu item is selected (Ctrl+Z)
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment