diff options
author | Ken Moore <ken@pcbsd.org> | 2014-11-10 11:42:42 -0500 |
---|---|---|
committer | Ken Moore <ken@pcbsd.org> | 2014-11-10 11:42:42 -0500 |
commit | 6ea033338f8bcfdbad869566e9691faf9f12760a (patch) | |
tree | 1e1a601f5159bf957aa00d441020ceecc341947b /lumina-desktop/desktop-plugins/notepad/NotepadPlugin.cpp | |
parent | Clean up the default theme template a little bit. (diff) | |
download | lumina-6ea033338f8bcfdbad869566e9691faf9f12760a.tar.gz lumina-6ea033338f8bcfdbad869566e9691faf9f12760a.tar.bz2 lumina-6ea033338f8bcfdbad869566e9691faf9f12760a.zip |
Clean up the appearance of the new desktop plugins a bit.
Diffstat (limited to 'lumina-desktop/desktop-plugins/notepad/NotepadPlugin.cpp')
-rw-r--r-- | lumina-desktop/desktop-plugins/notepad/NotepadPlugin.cpp | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/lumina-desktop/desktop-plugins/notepad/NotepadPlugin.cpp b/lumina-desktop/desktop-plugins/notepad/NotepadPlugin.cpp index 01e7179e..a88b4e8f 100644 --- a/lumina-desktop/desktop-plugins/notepad/NotepadPlugin.cpp +++ b/lumina-desktop/desktop-plugins/notepad/NotepadPlugin.cpp @@ -10,16 +10,21 @@ NotePadPlugin::NotePadPlugin(QWidget* parent, QString ID) : LDPlugin(parent, ID) this->layout()->setContentsMargins(0,0,0,0); vlay->setContentsMargins(3,3,3,3); frame = new QFrame(this); - frame->setStyleSheet("QFrame{border-size: 1px; background: rgba(255,255,255,100); color: black;}"); + frame->setObjectName("notepadbase"); + frame->setStyleSheet("QFrame#notepadbase{border-size: 1px; background: rgba(255,255,255,100); color: black;}"); this->layout()->addWidget(frame); frame->setLayout(vlay); //Setup the title bar header buttons QHBoxLayout *hlay = new QHBoxLayout(); next = new QToolButton(this); + next->setAutoRaise(true); prev = new QToolButton(this); + prev->setAutoRaise(true); add = new QToolButton(this); + add->setAutoRaise(true); rem = new QToolButton(this); + rem->setAutoRaise(true); label = new QLabel(this); label->setAlignment(Qt::AlignCenter); hlay->addWidget(prev); |