author | zautrix <zautrix> | 2005-03-27 00:21:16 (UTC) |
---|---|---|
committer | zautrix <zautrix> | 2005-03-27 00:21:16 (UTC) |
commit | ee6f7d5329658c567882e8e496c65eef8874496e (patch) (unidiff) | |
tree | 889427dab3f5f935a9c7474c43b1f87a2f3adb3a | |
parent | 1ec37e1988d32ed65fa1afa001eff8fc105fbbbc (diff) | |
download | kdepimpi-ee6f7d5329658c567882e8e496c65eef8874496e.zip kdepimpi-ee6f7d5329658c567882e8e496c65eef8874496e.tar.gz kdepimpi-ee6f7d5329658c567882e8e496c65eef8874496e.tar.bz2 |
compile fix
-rw-r--r-- | kalarmd/alarmdialog.cpp | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/kalarmd/alarmdialog.cpp b/kalarmd/alarmdialog.cpp index d6feedc..c939ae0 100644 --- a/kalarmd/alarmdialog.cpp +++ b/kalarmd/alarmdialog.cpp | |||
@@ -74,66 +74,68 @@ AlarmDialog::AlarmDialog(QWidget *parent,const char *name) | |||
74 | layout->setMargin( 3 ); | 74 | layout->setMargin( 3 ); |
75 | QFont fo = QApplication::font(); | 75 | QFont fo = QApplication::font(); |
76 | fo.setBold( true ); | 76 | fo.setBold( true ); |
77 | fo.setPointSize( fs2 ); | 77 | fo.setPointSize( fs2 ); |
78 | l->setFont( fo ); | 78 | l->setFont( fo ); |
79 | fo.setPointSize( fs ); | 79 | fo.setPointSize( fs ); |
80 | mMessage->setFont(fo ); | 80 | mMessage->setFont(fo ); |
81 | mMessage->setAlignment( AlignCenter); | 81 | mMessage->setAlignment( AlignCenter); |
82 | layout->addWidget ( mMessage ); | 82 | layout->addWidget ( mMessage ); |
83 | mMissedAlarms= new QLabel ( "(No missed Alarms)", this ); | 83 | mMissedAlarms= new QLabel ( "(No missed Alarms)", this ); |
84 | mMissedAlarms->setAlignment( AlignCenter); | 84 | mMissedAlarms->setAlignment( AlignCenter); |
85 | 85 | ||
86 | playSoundTimer = new QTimer( this ); | 86 | playSoundTimer = new QTimer( this ); |
87 | connect ( playSoundTimer, SIGNAL( timeout() ), this, SLOT (playSound() ) ); | 87 | connect ( playSoundTimer, SIGNAL( timeout() ), this, SLOT (playSound() ) ); |
88 | 88 | ||
89 | playSoundTimer->stop(); | 89 | playSoundTimer->stop(); |
90 | 90 | ||
91 | layout->addWidget ( mMissedAlarms ); | 91 | layout->addWidget ( mMissedAlarms ); |
92 | mMissedAlarmsCombo = new QComboBox ( this ); | 92 | mMissedAlarmsCombo = new QComboBox ( this ); |
93 | layout->addWidget ( mMissedAlarmsCombo ); | 93 | layout->addWidget ( mMissedAlarmsCombo ); |
94 | QVBox *suspendBox = new QVBox( this ); | 94 | QVBox *suspendBox = new QVBox( this ); |
95 | suspendBox->setSpacing(3); | 95 | suspendBox->setSpacing(3); |
96 | layout->addWidget ( suspendBox ); | 96 | layout->addWidget ( suspendBox ); |
97 | QLabel* labb = new QLabel("Suspend duration (minutes):",suspendBox); | 97 | QLabel* labb = new QLabel("Suspend duration (minutes):",suspendBox); |
98 | labb->setAlignment(AlignCenter); | 98 | labb->setAlignment(AlignCenter); |
99 | fo = font(); | 99 | fo = font(); |
100 | fo.setPointSize( 36 ); | 100 | fo.setPointSize( 36 ); |
101 | mSuspendSpin = new QSpinBox(1,1440,1,suspendBox); | 101 | mSuspendSpin = new QSpinBox(1,1440,1,suspendBox); |
102 | mSuspendSpin->setFont( fo ); | 102 | mSuspendSpin->setFont( fo ); |
103 | mSuspendSpin->setValue(7); // default suspend duration | 103 | mSuspendSpin->setValue(7); // default suspend duration |
104 | mSuspendSpin->setButtonSymbols( QSpinBox::PlusMinus ); | 104 | mSuspendSpin->setButtonSymbols( QSpinBox::PlusMinus ); |
105 | mSuspendSpin->setButtonSymbols( QSpinBox::PlusMinus ); | 105 | mSuspendSpin->setButtonSymbols( QSpinBox::PlusMinus ); |
106 | #if QT_VERSION < 0x030000 | ||
106 | mSuspendSpin->upButton ()->setFixedSize( QSize( 48, 30 )); | 107 | mSuspendSpin->upButton ()->setFixedSize( QSize( 48, 30 )); |
107 | mSuspendSpin->downButton ()->setFixedSize( QSize( 48, 30 )); | 108 | mSuspendSpin->downButton ()->setFixedSize( QSize( 48, 30 )); |
109 | #endif | ||
108 | mSuspendSpin->setFixedSize( 100,62 ); | 110 | mSuspendSpin->setFixedSize( 100,62 ); |
109 | mSuspendSpin->setButtonSymbols( QSpinBox::PlusMinus ); | 111 | mSuspendSpin->setButtonSymbols( QSpinBox::PlusMinus ); |
110 | 112 | ||
111 | QVBox * bbox = new QVBox ( this ); | 113 | QVBox * bbox = new QVBox ( this ); |
112 | layout->addWidget ( bbox ); | 114 | layout->addWidget ( bbox ); |
113 | bbox->layout()->setSpacing( 2 ); | 115 | bbox->layout()->setSpacing( 2 ); |
114 | mSuspendButton = new QPushButton( "Suspend", bbox); | 116 | mSuspendButton = new QPushButton( "Suspend", bbox); |
115 | QPushButton* silen = new QPushButton( " Stop sound ", bbox); | 117 | QPushButton* silen = new QPushButton( " Stop sound ", bbox); |
116 | QPushButton* okbut = new QPushButton( "Ok", bbox); | 118 | QPushButton* okbut = new QPushButton( "Ok", bbox); |
117 | mSuspendButton->setFont( fo ); | 119 | mSuspendButton->setFont( fo ); |
118 | silen->setFont( fo ); | 120 | silen->setFont( fo ); |
119 | okbut->setFont( fo ); | 121 | okbut->setFont( fo ); |
120 | okbut->setDefault( true ); | 122 | okbut->setDefault( true ); |
121 | connect (silen , SIGNAL( clicked() ), this, SLOT (silent() ) ); | 123 | connect (silen , SIGNAL( clicked() ), this, SLOT (silent() ) ); |
122 | connect (mSuspendButton, SIGNAL( clicked() ), this, SLOT (slotSuspend() ) ); | 124 | connect (mSuspendButton, SIGNAL( clicked() ), this, SLOT (slotSuspend() ) ); |
123 | connect (okbut , SIGNAL( clicked() ), this, SLOT (slotOk() ) ); | 125 | connect (okbut , SIGNAL( clicked() ), this, SLOT (slotOk() ) ); |
124 | #ifndef _WIN32_ | 126 | #ifndef _WIN32_ |
125 | if ( QFile::exists ( "/dev/sharp_led" ) ) | 127 | if ( QFile::exists ( "/dev/sharp_led" ) ) |
126 | fd_led = open ( "/dev/sharp_led", O_RDWR|O_NONBLOCK ); | 128 | fd_led = open ( "/dev/sharp_led", O_RDWR|O_NONBLOCK ); |
127 | else | 129 | else |
128 | #endif | 130 | #endif |
129 | fd_led = 0; | 131 | fd_led = 0; |
130 | statusLED.which = SHARP_LED_SALARM; | 132 | statusLED.which = SHARP_LED_SALARM; |
131 | mSilent = false; | 133 | mSilent = false; |
132 | mSuspendCounter = 0; | 134 | mSuspendCounter = 0; |
133 | setServerNotification( true ); | 135 | setServerNotification( true ); |
134 | } | 136 | } |
135 | void AlarmDialog::reject () | 137 | void AlarmDialog::reject () |
136 | { | 138 | { |
137 | QTimer::singleShot ( 3000, this, SLOT (suspend()) ); | 139 | QTimer::singleShot ( 3000, this, SLOT (suspend()) ); |
138 | slotSuspend(); | 140 | slotSuspend(); |
139 | } | 141 | } |