Implement a master form window along with controls as you can see in the screen shot
-
Hi All,
I am trying to design and implement master form includes all the controls and with group button as you can find in the screen shot is it possible to implement in qt creator on Ubuntu?
please guide me ,waiting for the positive reply.With regards
Veera
0_1507096275271_screenshot1234.png -
Hi
Are you asking if Creator is a report generator ?Or what do you mean by master form?
-
Hi
Well you can have as many widgets in same forms as you like.
You can add them in Designer or at runtime.Yes you can a new tabs at runtime.
-
Hi,
Can you please share me some examples so that i will try it now ....I am a beginner in qt programming...HI
Creator comes with lots of samples
http://doc.qt.io/qt-5/qtexamplesandtutorials.htmlIf you mean something else, please try to be as clear and
concrete in what you are asking to see samples of. :) -
Hi ,
Which controls i need to use in order to implement above concepts...I have developed using menus and context menu but adding designer class form into qt project its opening in separate window.....i could not understand so.....Do you mean a ribbon like seen in Microsoft products?
-Adding designer class form into qt project its opening in separate window.
Its a bit hard to understand you.
Do you mean your class/widget became a window when you run the app ?
That is often due to not having a parent assigned
likeMyWidget * ptr = new MyWidget( PARENT_POINTER );
-
Hi
there is no ribbon control in Qt
you could use a tabwidget
like here
http://developers-club.com/posts/48963/
(python code but concept is same for c++)Or you can try something premade
https://github.com/hdijkema/QRibbonThere are many samples / ideas/ talk about this on google.
Seems to be something people want from time to time.