I'd like to place QMainWindow instance inside another QWidget (for example centralWidget of another QMainWindow).

I'm wondering why it doesn't work ? QMainWindow inherits directly from QWidget. Placeing QWidget inside another QWidget works fine.

I often place QMainWindow instances in QTabBar without any problems.

ps You may ask why do I need to use QMainWindow ? I want to place 2 widgets inside 1 form using vertical layout. I want both widgets to have seperate Toolbars directly over them.

Maybe there is some other way to place toolbars inside plain QWidgets using QtCreator ?


Edit

First example (works fine)

I create new class/form based on QWidget. (QtCreator creates 3 files *.cpp, *.h and *.ui based on standard templates).

Class declaration looks like this

class NotesEditor : public QWidget
{
    Q_OBJECT

public:
    explicit NotesEditor(QWidget *parent = 0);
    ~NotesEditor();

private:
    Ui::NotesEditor *ui;
};

When I try to use this widget and place it inside another widget it works fine. I used "promote to ..." feature of qtcreator - no problems here.

Second example (doesn't work)

I create new class/form based on QMainWindow. (QtCreator creates 3 files *.cpp, *.h and *.ui based on standard templates).

Class declaration looks like this:

class Notes : public QMainWindow
{
    Q_OBJECT

public:
    explicit Notes(QWidget *parent = 0);
    ~Notes();

private:
    Ui::Notes *ui;
};

And now when I try to place this widget in another widget its not visible. Same as before I used "promote to ..." feature of qtcreator.

Both widgets (first based on QWidget, second based on QMainWindow) have the same default structure based on standard qtcreator code templates. I didn't change much here - just added some buttons in the form designer.

In the second example I tried to use setEnabled(true) and setVisible(true) on the class instance. The first one gives no results. The second one opens this widget in seperate window.


I think that the big question is what probibits QMainWindow to be nested inside another QWidget. As I wrote before QMainWindow instances can be placed inside QTabWidgets without any problems.

link|improve this question

78% accept rate
1  
Can you elaborate what happens exactly. When you say "it does not work" what happens actually ? Does it give an error or simply nothing shows up ? – OrcunC Jun 15 '11 at 6:11
I provided further description. There no erros, nothing shows up in the second example. – David Richardson Jun 15 '11 at 13:47
feedback

3 Answers

I'm look examples with QMainWindow and QWidget. Look like their create ToolBar in QMainWindow.

mainToolBar = new QToolBar(MainWindow);
mainToolBar->setObjectName(QString::fromUtf8("mainToolBar"));
MainWindow->addToolBar(Qt::TopToolBarArea, mainToolBar);

I'm create a project with base QWidget and place on this 2 child QWidgets. Later in ui_widget.h add some code like:

class Ui_Widget
{
public:
    QWidget *widget;
    QWidget *widget_2;

    //declare Toolbars
    QToolBar *tb;
    QToolBar *tb_2;
    QHBoxLayout *layout;
    QHBoxLayout *layout_2;

    void setupUi(QWidget *Widget)
    {
        if (Widget->objectName().isEmpty())
            Widget->setObjectName(QString::fromUtf8("Widget"));
        Widget->resize(400, 300);
        widget = new QWidget(Widget);
        widget->setObjectName(QString::fromUtf8("widget"));
        widget->setGeometry(QRect(50, 100, 120, 80));
        widget_2 = new QWidget(Widget);
        widget_2->setObjectName(QString::fromUtf8("widget_2"));
        widget_2->setGeometry(QRect(220, 100, 120, 80));

        //Add ToolBar in fistr QWidget
        tb = new QToolBar(widget);
        tb->setObjectName(QString::fromUtf8("tb1"));

        layout = new QHBoxLayout;
        layout->addWidget(tb);
        widget->setLayout(layout);

        //in second QWidget
        tb_2 = new QToolBar(widget_2);
        tb_2->setObjectName(QString::fromUtf8("tb2"));

        layout_2 = new QHBoxLayout;
        layout_2->addWidget(tb_2);
        widget_2->setLayout(layout_2);


        retranslateUi(Widget);

        QMetaObject::connectSlotsByName(Widget);
    } // setupUi

this method non-cool but... )

link|improve this answer
feedback

QMainWindow provides predefined stuff like toolbars and status bars and menu bars in a platform agnostic way (it "does the right thing", without manual intervention). If all you need is a bunch of buttons in a layout, use QWidget.

You need to make sure each QMainWindow has centralQWidget`, other than that, you should be fine.

link|improve this answer
I know what QMainWindow is. This post doesn't answer my question at all. – David Richardson Jun 14 '11 at 15:15
1  
Well, if your question is "I'm wondering why it doesn't work ?", I tried to answer as precise as the question itself is. There's only one thing that can prevent you from doing what you are trying to do: no central widget. You can create your own layout with toolbars inside each tab of the QTabBar. Specify what you're after, and at least provide some code and/or error messages. I can't read your mind. – rubenvb Jun 14 '11 at 15:50
I provided further description of the problem. I thought that my question was straightforward. There are no errors, its very simple. Anyway thanks for help :) – David Richardson Jun 15 '11 at 13:46
feedback
centralwidget = new QMainWindow(this);
centralwidget->setWindowFlags(Qt::Widget);
setCentralWidget(centralwidget);

This should help.

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.