AlbumShaper
1.0a3
|
Themes Settings. More...
#include <themesWidget.h>
Public Member Functions | |
ThemesWidget (QWidget *parent=0, const char *name=0) | |
Private Attributes | |
QGridLayout * | grid |
QLabel * | categoryLabel |
QFrame * | horizontalLine |
Themes Settings.
Definition at line 26 of file themesWidget.h.
ThemesWidget::ThemesWidget | ( | QWidget * | parent = 0 , |
const char * | name = 0 |
||
) |
Definition at line 20 of file themesWidget.cpp.
References categoryLabel, grid, and horizontalLine.
: QWidget( parent, name) { categoryLabel = new QLabel( tr("Theme Settings"), this); QFont labelFont = categoryLabel->font(); labelFont.setWeight(QFont::Bold); categoryLabel->setFont( labelFont ); horizontalLine = new QFrame(this); horizontalLine->setLineWidth(2); horizontalLine->setMidLineWidth(1); horizontalLine->setFrameStyle( QFrame::HLine | QFrame::Raised ); grid = new QGridLayout( this, 7, 1, 0); grid->addWidget( categoryLabel, 0, 0, Qt::AlignLeft ); grid->setRowSpacing(1, 8); grid->addWidget( horizontalLine, 2, 0 ); grid->setRowSpacing(3, 8); grid->setRowStretch( 6, 1 ); }
QLabel* ThemesWidget::categoryLabel [private] |
Definition at line 34 of file themesWidget.h.
Referenced by ThemesWidget().
QGridLayout* ThemesWidget::grid [private] |
Definition at line 33 of file themesWidget.h.
Referenced by ThemesWidget().
QFrame* ThemesWidget::horizontalLine [private] |
Definition at line 35 of file themesWidget.h.
Referenced by ThemesWidget().