I made a form using the Qt Designer which has some dockwidgets, these dockwidgets have some children widgets. How I can access the dockwidget and these child widgets in my mainwindow.cpp?

link|improve this question

70% accept rate
feedback

2 Answers

up vote 4 down vote accepted

I highly recommend reading the docs for these kinds of things, but to give you a little head start, QDockWidget inherits from QWidget, which inherits from QObject:

http://doc.trolltech.com/4.7/qobject.html#children

widget->children() would simply tell you the children of this widget. This would be needed if you didn't already know the names of the objects to be accessed directly, or had no reference to them.

Update

When you create objects in Qt Designer, and you run the setupUi(this) that is generated for you, inside of your MainWindow, you will then have access to all of the widgets you had set up as members. You can access them directly as they were named in Qt Designer. Please check out one of the numerous tutorials on getting started with Qt. Here is one that shows you how to make use of your ui file, and access the members from it: http://sector.ynet.sk/qt4-tutorial/my-first-qt-gui-application.html

link|improve this answer
I am asking about how to access the docwidget itself, then accessing its childrens. – xdsy Feb 8 at 20:49
1  
@Menopia - I think its unfair for you to vote me down because of your lack of reading the docs or even any entry-level information on qt. – jdi Feb 9 at 0:19
true. He didn't give you any crap about like people normally do. He gave you a short answer and a lot of well written documentation. – chikuba Feb 9 at 2:06
@jdi, sorry for that :(, up voted you now – xdsy Feb 9 at 4:31
@xdsy - No prob. You could accept the answer also if you think its helpful – jdi Feb 24 at 0:57
feedback

You can also get a list of all the dockWidgets from the mainwindow with

QList<QDockWidget *> dockWidgets = findChildren<QDockWidget *>();

A similar technique works for getting toolbars etc. so you don't have to manually store a list as you create them

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.