Created tabbed GUI in GUIDE
이전 댓글 표시
Is there any way to lay out and design a GUI with tabs using GUIDE? I don't see any place to insert uitabgroup panels with GUIDE. I fear I may have to go back to basics and program everything from scratch. Yikes!
댓글 수: 2
Joseph Cheng
2015년 5월 26일
what do you have now that would make you go back to scratch?
Justin Solomon
2015년 5월 27일
채택된 답변
추가 답변 (4개)
I have discovered the same issue. I primarily do my GUI's with Guide, and would like to continue. Here is my workaround:
- Make a GUIDE figure large enough to hold all of your tabs side-by-side
- Create panels side-by-side on the GUIDE page. Tag them P1, P2, etc. Make the panels all the same size, set the border to "none", and clear the title (if desired)
- Place panel 1 where you want all the panels to be. Be sure to leave room on the left if you are using left tabs. the location of the rest of the panels does not matter. Make sure panel 1 is the same size or larger than all of your other panels. The remaining panels should leave some space away form panel 1 so that you will be able to grab and drag the figure corner when editing later.
- Lay out all of your buttons, text boxes, and other features within each panel.
- When done with the layout, shrink the overall window in GUIDE to just show panel 1. the other panels continue to exist, off the page.
- Edit the corresponding .m file, OpeningFCN, adding a version of the following code:
%Create tab group
handles.tgroup = uitabgroup('Parent', handles.figure1,'TabLocation', 'left');
handles.tab1 = uitab('Parent', handles.tgroup, 'Title', 'My Tab Label 1');
handles.tab2 = uitab('Parent', handles.tgroup, 'Title', 'My Tab Label 2');
handles.tab3 = uitab('Parent', handles.tgroup, 'Title', 'My Tab Label 3');
%Place panels into each tab
set(handles.P1,'Parent',handles.tab1)
set(handles.P2,'Parent',handles.tab2)
set(handles.P3,'Parent',handles.tab3)
%Reposition each panel to same location as panel 1
set(handles.P2,'position',get(handles.P1,'position'));
set(handles.P3,'position',get(handles.P1,'position'));
Now all of the controls end up on the correct tabs within hidden panels. To edit panel content, in GUIDE expand the figure to see all the panels, edit, then shrink again.
This approach allows the use of GUIDE and has minimal programming to arrange your GUIDE elements into the tabs.
Hope this helps!
Chuck
댓글 수: 17
Kent
2015년 5월 29일
This works! Thank you
Valarie
2015년 10월 28일
Thank you!
Yegor Sinelnikov
2015년 12월 2일
Elegant and simple. Thanks.
yogesh jain
2016년 3월 7일
Thank you very much :)
Carlos Eduardo Santos
2016년 5월 12일
Congratulations!! The best answer.
Jeffery Devereux
2016년 5월 27일
Wonderful! Thank you
Stijn Bonte
2016년 6월 22일
This works really well, thank you! I was just wondering, is it possible to switch to a next panel when pressing a button in the GUI?
Tien Tran
2016년 6월 29일
Good job!
Stephania Vaglica
2016년 9월 1일
If you want to create a switch, place a guidata(hObject, handles); command at the very end of that start up function. Then you can create a uicontrol (like a button) that will allow you to access the property SelectTab from the uitabgroup. I hope this helped!
Sullivan
2017년 2월 24일
This is a good solution and it works well. However, the size of the tabbed panels are limited by the canvas in the layout editor of GUIDE. Interactively its not possible to make the canvas size bigger than the layout editor. As such the total of the width and height of all tabbed panels cannot bigger than the size of screen. Perhaps I don't know the way to expand the size of the canvas. Any one care to correct me?
rinser55
2017년 10월 20일
Late to the party, but for anyone who wants to increase the canvas size beyond the size of the screen:
- Maximize the GUI editor window.
- Drag the canvas so it's as big as possible (fills the window).
- Restore down the window by either clicking the restore down button or dragging the window down from the top of the screen.
- Note that the canvas doesn't default align to the bottom right. Scroll to the bottom right.
- Maximize the window again. The canvas will default align so the bottom right corner is located roughly in the middle of the screen. You can now drag the canvas so it fills the screen again, and thus increase the total canvas size beyond the screen size.
- Repeat as necessary until the canvas reaches your desired size.
Sabrina Benge
2018년 5월 10일
MAGIC!! WORKED WONDERFULLY
Bachtiar Muhammad Lubis
2018년 10월 30일
Nice one Charles
Bachtiar Muhammad Lubis
2018년 10월 30일
Btw how to call another GUI to this tab panel?
Le Dung
2018년 12월 24일
Great !!!!!!!
qaqcvc
2019년 7월 30일
Thanks! It works very well.
beginner94
2019년 10월 22일
Thanks a lot for this workaround!
Do you also know how to resize of the overall window when another tab is opened?
Walter Roberson
2015년 5월 26일
2 개 추천
It appears that GUIDE does not offer a layout service for tab groups. However, see http://www.mathworks.com/matlabcentral/fileexchange/?term=uitab
Ka Mirul
2018년 11월 25일
1 개 추천
You can use several button to switch panel dispaly to create multi tab GUI.
egdeluca
2019년 9월 25일
Good morning,
I'm trying to create a JTabGroup with delete icon but I have some problems to java handle object. From the following example:
% Prepare a tab-group consisting of two tabs
hTabGroup = uitabgroup;
tab1 = uitab(hTabGroup, 'title','Panel 1');
a = axes('parent', tab1); surf(peaks);
tab2 = uitab(hTabGroup, 'title','Panel 2');
uicontrol(tab2, 'String','Close', 'Callback','close(gcbf)');
% Get the underlying Java reference (use hidden property)
jTabGroup = getappdata(handle(hTabGroup),'JTabbedPane');
% First let's load the close icon
jarFile = fullfile(matlabroot,'/java/jar/mwt.jar');
iconsFolder = '/com/mathworks/mwt/resources/';
iconURI = ['jar:file:/' jarFile '!' iconsFolder 'closebox.gif'];
icon = javax.swing.ImageIcon(java.net.URL(iconURI));
% Now let's prepare the close button: icon, size and callback
jCloseButton = handle(javax.swing.JButton,'CallbackProperties');
jCloseButton.setIcon(icon);
jCloseButton.setPreferredSize(java.awt.Dimension(15,15));
jCloseButton.setMaximumSize(java.awt.Dimension(15,15));
jCloseButton.setSize(java.awt.Dimension(15,15));
set(jCloseButton, 'ActionPerformedCallback',@(h,e)delete(tab2));
% Now let's prepare a tab panel with our label and close button
jPanel = javax.swing.JPanel; % default layout = FlowLayout
set(jPanel.getLayout, 'Hgap',0, 'Vgap',0); % default gap = 5px
jLabel = javax.swing.JLabel('Tab #2');
jPanel.add(jLabel);
jPanel.add(jCloseButton);
% Now attach this tab panel as the tab-group's 2nd component
jTabGroup.setTabComponentAt(1,jPanel); % Tab #1 = second tab
The handle of JTabGroup variable is empty, then it doesn't work. The same code works in R2014a version. Can anyone tell me why?
Where is the mistake?
Thank you
Egidio
카테고리
도움말 센터 및 File Exchange에서 Creating, Deleting, and Querying Graphics Objects에 대해 자세히 알아보기
제품
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!