は現在、私は3 QActionsでQMenuBarを持っており、それは次のようになります。 整列QMenuBar項目(左側の一部を追加し、右サイドでの)
が、私は、これは(右詰め、いくつかのQActionsをゲットしたいと思います):
これを行う方法はありますか?
感謝:)
は現在、私は3 QActionsでQMenuBarを持っており、それは次のようになります。 整列QMenuBar項目(左側の一部を追加し、右サイドでの)
が、私は、これは(右詰め、いくつかのQActionsをゲットしたいと思います):
これを行う方法はありますか?
感謝:)
まあ一つの可能な解決策はhereです。しかし、独自のスタイル(QStyleを思い出しながら)を実装する必要があります。しかし、ここで私はちょうどメインウィンドウクラスにしようとしたスニペットです:
MainWindow::MainWindow(QWidget *parent) :
QMainWindow(parent),
ui(new Ui::MainWindow) {
ui->setupUi(this);
QMenuBar *barLeft = new QMenuBar;
QMenuBar *barRight = new QMenuBar;
barLeft->addAction("Foo Left 1");
barLeft->addAction("Foo Left 2");
barRight->addAction("Foo Left 1");
barRight->addAction("Foo Left 2");
QHBoxLayout *mainMenuLayout = new QHBoxLayout;
mainMenuLayout->addWidget(barLeft);
mainMenuLayout->addWidget(barRight);
mainMenuLayout->setAlignment(barLeft, Qt::AlignLeft);
mainMenuLayout->setAlignment(barRight, Qt::AlignRight);
QWidget *central = new QWidget;
central->setLayout(mainMenuLayout);
setCentralWidget(central);
}
これは適していなければなりません。
おそらく、この特定の問題に対する最も簡単な解決策は、コーナーウィジェットを使用することです。
QMenuBar *bar = new QMenuBar(ui->menuBar);
QMenu *menu = new QMenu("Test menu", bar);
bar->addMenu(menu);
QAction *action = new QAction("Test action", bar);
bar->addAction(action);
ui->menuBar->setCornerWidget(bar);
結果:
これはESPです。新しいメニューバーももちろん、一番右の位置でほとんど何を配置するために使用することができます。メインメニューがまだQDesignerで編集されている場合に役立ちます...