From e17cc3455c30d5c9a4841a12bd8c5aa118c5d470 Mon Sep 17 00:00:00 2001 From: Mark Watkins Date: Wed, 27 Aug 2014 04:23:27 +1000 Subject: [PATCH] QMenu stylesheet --- sleepyhead/Graphs/gGraphView.cpp | 25 +++++++++++++++++++++++++ 1 file changed, 25 insertions(+) diff --git a/sleepyhead/Graphs/gGraphView.cpp b/sleepyhead/Graphs/gGraphView.cpp index c973ca61..c0b2f989 100644 --- a/sleepyhead/Graphs/gGraphView.cpp +++ b/sleepyhead/Graphs/gGraphView.cpp @@ -372,6 +372,20 @@ gGraphView::gGraphView(QWidget *parent, gGraphView *shared) lines_menu = context_menu->addMenu(tr("Dotted Lines")); connect(lines_menu, SIGNAL(triggered(QAction*)), this, SLOT(onLinesClicked(QAction*))); + context_menu->setStyleSheet("QMenu {\ + background-color: #EBEBEB; /* sets background of the menu */\ + border: 1px solid black;\ + }\ + QMenu::item {\ + /* sets background of menu item. set this to something non-transparent\ + if you want menu color and menu item color to be different */\ + background-color: transparent;\ + }\ + QMenu::item:selected { /* when user selects item using mouse or keyboard */\ + background-color: #ABCDEF;\ + }"); + + } void gGraphView::togglePin() @@ -1701,9 +1715,20 @@ void MinMaxWidget::onComboChanged(int idx) } } +#include void MinMaxWidget::createLayout() { + +// QHBoxLayout * lay1 = new QHBoxLayout; +// setLayout(lay1); +// QFrame *frame = new QFrame(this); +// frame->setFrameShape(QFrame::Box); +// lay1->addWidget(frame); +// lay1->setMargin(2); +// lay1->setSpacing(0); + QGridLayout * layout = new QGridLayout; +// frame->setLayout(layout); // layout->set // QHBoxLayout *layout = new QHBoxLayout; layout->setMargin(4);