From a24f954912ee2dbb76dcbde1abc9f20b06abbf93 Mon Sep 17 00:00:00 2001 From: zautrix Date: Sat, 26 Mar 2005 20:45:19 +0000 Subject: timer fixes --- (limited to 'kalarmd') diff --git a/kalarmd/alarmdialog.cpp b/kalarmd/alarmdialog.cpp index 751ba57..794c8ae 100644 --- a/kalarmd/alarmdialog.cpp +++ b/kalarmd/alarmdialog.cpp @@ -32,7 +32,9 @@ #include #include #include +#define protected public #include +#undef protected #include #ifndef _WIN32_ #include @@ -90,18 +92,32 @@ AlarmDialog::AlarmDialog(QWidget *parent,const char *name) playSoundTimer->stop(); layout->addWidget ( mMissedAlarms ); - QHBox *suspendBox = new QHBox( this ); + QVBox *suspendBox = new QVBox( this ); suspendBox->setSpacing(3); layout->addWidget ( suspendBox ); - (void)new QLabel("Suspend duration (minutes):",suspendBox); + QLabel* labb = new QLabel("Suspend duration (minutes):",suspendBox); + labb->setAlignment(AlignCenter); + fo = font(); + fo.setPointSize( 36 ); mSuspendSpin = new QSpinBox(1,1440,1,suspendBox); + mSuspendSpin->setFont( fo ); mSuspendSpin->setValue(7); // default suspend duration - QHBox * bbox = new QHBox ( this ); + mSuspendSpin->setButtonSymbols( QSpinBox::PlusMinus ); + mSuspendSpin->setButtonSymbols( QSpinBox::PlusMinus ); + mSuspendSpin->upButton ()->setFixedSize( QSize( 48, 30 )); + mSuspendSpin->downButton ()->setFixedSize( QSize( 48, 30 )); + mSuspendSpin->setFixedSize( 100,62 ); + mSuspendSpin->setButtonSymbols( QSpinBox::PlusMinus ); + + QVBox * bbox = new QVBox ( this ); layout->addWidget ( bbox ); - bbox->layout()->setSpacing( 5 ); + bbox->layout()->setSpacing( 2 ); QPushButton* suspend = new QPushButton( "Suspend", bbox); QPushButton* silen = new QPushButton( " Stop sound ", bbox); QPushButton* okbut = new QPushButton( "Ok", bbox); + suspend->setFont( fo ); + silen->setFont( fo ); + okbut->setFont( fo ); connect (silen , SIGNAL( clicked() ), this, SLOT (silent() ) ); connect (suspend , SIGNAL( clicked() ), this, SLOT (slotSuspend() ) ); connect (okbut , SIGNAL( clicked() ), this, SLOT (slotOk() ) ); -- cgit v0.9.0.2