1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
|
/*
* editdlg.h - dialogue to create or modify an alarm or alarm template
* Program: kalarm
* Copyright © 2001-2006,2008 by David Jarvie <djarvie@kde.org>
*
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation; either version 2 of the License, or
* (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License along
* with this program; if not, write to the Free Software Foundation, Inc.,
* 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
*/
#ifndef EDITDLG_H
#define EDITDLG_H
#include <tqdatetime.h>
#include <tqlineedit.h>
#include <kdialogbase.h>
#include "alarmevent.h"
#include "alarmtext.h"
#include "datetime.h"
#include "soundpicker.h"
class TQButton;
class TQGroupBox;
class TQComboBox;
class TQTabWidget;
class TQVBox;
class TQHBox;
class EmailIdCombo;
class FontColourButton;
class ColourCombo;
class ButtonGroup;
class TimeEdit;
class RadioButton;
class CheckBox;
class LateCancelSelector;
class AlarmTimeWidget;
class RecurrenceEdit;
class Reminder;
class SpecialActionsButton;
class TimeSpinBox;
class LineEdit;
class TextEdit;
class PickAlarmFileRadio;
class EditAlarmDlg : public KDialogBase
{
TQ_OBJECT
public:
enum MessageType { MESSAGE, FILE };
enum CmdLogType { DISCARD_OUTPUT, LOG_TO_FILE, EXEC_IN_TERMINAL };
EditAlarmDlg(bool Template, const TQString& caption, TQWidget* parent = 0, const char* name = 0,
const KAEvent* = 0, bool readOnly = false);
virtual ~EditAlarmDlg();
bool getEvent(KAEvent&);
void setAction(KAEvent::Action, const AlarmText& = AlarmText());
static CheckBox* createConfirmAckCheckbox(TQWidget* parent, const char* name = 0);
static TQString i18n_ConfirmAck(); // plain text of 'Confirm acknowledgement' checkbox
static TQString i18n_k_ConfirmAck(); // text of 'Confirm acknowledgement' checkbox, with 'k' shortcut
static TQString i18n_SpecialActions(); // plain text of 'Special Actions...' button
static TQString i18n_ShowInKOrganizer(); // plain text of 'Show in KOrganizer' checkbox
static TQString i18n_g_ShowInKOrganizer(); // text of 'Show in KOrganizer' checkbox, with 'G' shortcut
static TQString i18n_EnterScript(); // plain text of 'Enter a script' checkbox
static TQString i18n_p_EnterScript(); // text of 'Enter a script' checkbox, with 'P' shortcut
static TQString i18n_ExecInTermWindow(); // plain text of 'Execute in terminal window' checkbox
static TQString i18n_w_ExecInTermWindow(); // text of 'Execute in terminal window' radio button, with 'W' shortcut
static TQString i18n_u_ExecInTermWindow(); // text of 'Execute in terminal window' radio button, with 'U' shortcut
static TQString i18n_g_LogToFile(); // text of 'Log to file' radio button, with 'G' shortcut
static TQString i18n_CopyEmailToSelf(); // plain text of 'Copy email to self' checkbox
static TQString i18n_e_CopyEmailToSelf(); // text of 'Copy email to self' checkbox, with 'E' shortcut
static TQString i18n_s_CopyEmailToSelf(); // text of 'Copy email to self' checkbox, with 'S' shortcut
static TQString i18n_EmailFrom(); // plain text of 'From:' (email address)
static TQString i18n_f_EmailFrom(); // text of 'From:' (email address), with 'F' shortcut
static TQString i18n_EmailTo(); // plain text of 'To:' (email addressee)
static TQString i18n_EmailSubject(); // plain text of 'Subject:' (email)
static TQString i18n_j_EmailSubject(); // text of 'Subject:' (email), with 'J' shortcut
protected:
virtual void resizeEvent(TQResizeEvent*);
virtual void showEvent(TQShowEvent*);
protected slots:
virtual void slotOk();
virtual void slotCancel();
virtual void slotTry();
virtual void slotDefault(); // Load Template
private slots:
void slotRecurTypeChange(int repeatType);
void slotRecurFrequencyChange();
void slotAlarmTypeChanged(int id);
void slotEditDeferral();
void openAddressBook();
void slotAddAttachment();
void slotRemoveAttachment();
void slotShowMainPage();
void slotShowRecurrenceEdit();
void slotAnyTimeToggled(bool anyTime);
void slotTemplateTimeType(int id);
void slotSetSubRepetition();
void slotCmdScriptToggled(bool);
private:
void initialise(const KAEvent*);
void setReadOnly();
void setEvent(KAEvent&, const TQString& text, bool trial);
KAEvent::Action getAlarmType() const;
int getAlarmFlags() const;
bool checkText(TQString& result, bool showErrorMessage = true) const;
void setSoundPicker();
void setRecurTabTitle(const KAEvent* = 0);
bool checkCommandData();
bool checkEmailData();
void initDisplayAlarms(TQWidget* parent);
void initCommand(TQWidget* parent);
void initEmail(TQWidget* parent);
void saveState(const KAEvent*);
bool stateChanged() const;
TQTabWidget* mTabs; // the tabs in the dialog
int mMainPageIndex;
int mRecurPageIndex;
bool mMainPageShown; // true once the main tab has been displayed
bool mRecurPageShown; // true once the recurrence tab has been displayed
bool mRecurSetDefaultEndDate; // adjust default end date/time when recurrence tab is displayed
ButtonGroup* mActionGroup;
RadioButton* mMessageRadio;
RadioButton* mCommandRadio;
PickAlarmFileRadio* mFileRadio;
RadioButton* mEmailRadio;
TQWidgetStack* mAlarmTypeStack;
// Templates
TQLineEdit* mTemplateName;
ButtonGroup* mTemplateTimeGroup;
RadioButton* mTemplateDefaultTime; // no alarm time is specified
RadioButton* mTemplateUseTimeAfter;// alarm time is specified as an offset from current
RadioButton* mTemplateAnyTime; // alarms have date only, no time
RadioButton* mTemplateUseTime; // an alarm time is specified
TimeSpinBox* mTemplateTimeAfter; // the specified offset from the current time
TimeEdit* mTemplateTime; // the alarm time which is specified
// Display alarm options widgets
TQFrame* mDisplayAlarmsFrame;
TQHBox* mFileBox;
TQHBox* mFilePadding;
SoundPicker* mSoundPicker;
CheckBox* mConfirmAck;
FontColourButton* mFontColourButton; // for text display option
ColourCombo* mBgColourButton; // for file display option
TQHBox* mBgColourBox;
SpecialActionsButton* mSpecialActionsButton;
Reminder* mReminder;
bool mReminderDeferral;
bool mReminderArchived;
// Text message alarm widgets
TextEdit* mTextMessageEdit; // text message edit box
// Text file alarm widgets
LineEdit* mFileMessageEdit; // text file URL edit box
TQPushButton* mFileBrowseButton; // text file browse button
TQString mFileDefaultDir; // default directory for browse button
// Command alarm widgets
TQFrame* mCommandFrame;
CheckBox* mCmdTypeScript; // entering a script
LineEdit* mCmdCommandEdit; // command line edit box
TextEdit* mCmdScriptEdit; // script edit box
ButtonGroup* mCmdOutputGroup; // what to do with command output
LineEdit* mCmdLogFileEdit; // log file URL edit box
TQWidget* mCmdPadding;
// Email alarm widgets
TQFrame* mEmailFrame;
EmailIdCombo* mEmailFromList;
LineEdit* mEmailToEdit;
TQPushButton* mEmailAddressButton; // email open address book button
TQLineEdit* mEmailSubjectEdit;
TextEdit* mEmailMessageEdit; // email body edit box
TQComboBox* mEmailAttachList;
TQPushButton* mEmailAddAttachButton;
TQPushButton* mEmailRemoveButton;
CheckBox* mEmailBcc;
TQString mAttachDefaultDir;
TQGroupBox* mDeferGroup;
TQLabel* mDeferTimeLabel;
TQPushButton* mDeferChangeButton;
AlarmTimeWidget* mTimeWidget;
LateCancelSelector* mLateCancel;
CheckBox* mShowInKorganizer;
RecurrenceEdit* mRecurrenceEdit;
TQString mAlarmMessage; // message text/file name/command/email message
DateTime mAlarmDateTime;
DateTime mDeferDateTime;
EmailAddressList mEmailAddresses; // list of addresses to send email to
TQStringList mEmailAttachments; // list of email attachment file names
unsigned long mKMailSerialNumber; // if email text, message's KMail serial number, else 0
int mDeferGroupHeight; // height added by deferred time widget
int mDesktop; // desktop to display the dialog in
bool mTemplate; // editing an alarm template
bool mExpiredRecurrence; // initially a recurrence which has expired
mutable bool mChanged; // controls other than deferral have changed since dialog was displayed
mutable bool mOnlyDeferred; // the only change made in the dialog was to the existing deferral
bool mDesiredReadOnly; // the specified read-only status of the dialogue
bool mReadOnly; // the actual read-only status of the dialogue
// Initial state of all controls
KAEvent* mSavedEvent;
TQString mSavedTemplateName; // mTemplateName value
TQButton* mSavedTemplateTimeType; // selected button in mTemplateTimeGroup
TQTime mSavedTemplateTime; // mTemplateTime value
int mSavedTemplateAfterTime; // mTemplateAfterTime value
TQButton* mSavedTypeRadio; // mMessageRadio, etc
SoundPicker::Type mSavedSoundType; // mSoundPicker sound type
bool mSavedRepeatSound; // mSoundPicker repeat status
TQString mSavedSoundFile; // mSoundPicker sound file
float mSavedSoundVolume; // mSoundPicker volume
float mSavedSoundFadeVolume;// mSoundPicker fade volume
int mSavedSoundFadeSeconds;// mSoundPicker fade time
bool mSavedConfirmAck; // mConfirmAck status
TQFont mSavedFont; // mFontColourButton font
TQColor mSavedBgColour; // mFontColourButton background colour
TQColor mSavedFgColour; // mFontColourButton foreground colour
TQString mSavedPreAction; // mSpecialActionsButton pre-alarm action
TQString mSavedPostAction; // mSpecialActionsButton post-alarm action
int mSavedReminder; // mReminder value
bool mSavedOnceOnly; // mReminder once-only status
TQString mSavedTextFileCommandMessage; // mTextMessageEdit/mFileMessageEdit/mCmdCommandEdit/mEmailMessageEdit value
TQString mSavedEmailFrom; // mEmailFromList current value
TQString mSavedEmailTo; // mEmailToEdit value
TQString mSavedEmailSubject; // mEmailSubjectEdit value
TQStringList mSavedEmailAttach; // mEmailAttachList values
bool mSavedEmailBcc; // mEmailBcc status
bool mSavedCmdScript; // mCmdTypeScript status
TQButton* mSavedCmdOutputRadio; // selected button in mCmdOutputGroup
TQString mSavedCmdLogFile; // mCmdLogFileEdit value
DateTime mSavedDateTime; // mTimeWidget value
int mSavedRecurrenceType; // RecurrenceEdit::RepeatType value
int mSavedLateCancel; // mLateCancel value
bool mSavedAutoClose; // mLateCancel->isAutoClose() value
bool mSavedShowInKorganizer; // mShowInKorganizer status
};
#endif // EDITDLG_H
|