2012-01-04 10 views

答えて

1

まあ一つの可能​​な解決策は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); 

}

これは適していなければなりません。

8

おそらく、この特定の問題に対する最も簡単な解決策は、コーナーウィジェットを使用することです。

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); 

結果:

Standard QMenuBar with additional rightmost 2nd QMenuBar

これはESPです。新しいメニューバーももちろん、一番右の位置でほとんど何を配置するために使用することができます。メインメニューがまだQDesignerで編集されている場合に役立ちます...

関連する問題