summaryrefslogtreecommitdiffstats
path: root/kcron/kttask.h
blob: 3d52f5cb3762210a7835a7fa40a79ea09a801ca8 (plain)
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
/***************************************************************************
 *   KT task editor window header                                          *
 *   --------------------------------------------------------------------  *
 *   Copyright (C) 1999, Gary Meyer <gary@meyer.net>                       *
 *   --------------------------------------------------------------------  *
 *   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.                                   * 
 ***************************************************************************/

#ifndef KTTASK_H
#define KTTASK_H

#include <config.h>

#include <kdialog.h>

class TQLabel;
class TQLineEdit;
class TQCheckBox;
class TQButtonGroup;
class TQPushButton;
class KAccel;

class CTTask;

/**
  * Task editor window.
  */
class KTTask : public KDialog
{
  Q_OBJECT
  TQ_OBJECT

public:

/**
  * Initialize from CTTask.
  */
  KTTask(CTTask* _cttask = 0, const TQString &_caption="");

/**
  * Destroy.
  */
  ~KTTask();

private slots:

/**
  * Browse for command file.
  */
  void slotBrowse();

/**
  * Command has been changed.  Refresh icon.
  */
  void slotCommandChanged();

/**
  * Daily checkbox has been changed.
  */
  void slotDailyChanged();

/**
  * Apply changes and close.
  */
  void slotOK();

/**
  * Cancel and close.
  */
  void slotCancel();

/**
  * Set or clear all month checkboxes
  */
  void slotAllMonths();
  
/**
  * A month checkbox has changed
  */
  void slotMonthChanged();
  
/**
  * Set or clear all day of month checkboxes
  */
  void slotAllDaysOfMonth();
  
/**
  * A day of month checkbox has changed
  */
  void slotDayOfMonthChanged();
  
/**
  * Set or clear all day of week checkboxes
  */
  void slotAllDaysOfWeek();
  
/**
  * A day of week checkbox has changed
  */
  void slotDayOfWeekChanged();
  
/**
  * Set or clear all hour checkboxes
  */
  void slotAllHours();
  
/**
  * An hour checkbox has changed
  */
  void slotHourChanged();
  
/**
  * Set or clear all minute checkboxes
  */
  void slotAllMinutes();
  
/**
  * A minute checkbox has changed
  */
  void slotMinuteChanged();
  
private:

/**
  * Task.
  */
  CTTask*         cttask;

/**
  * Key accelerator.
  */

  KAccel*         key_accel;

  // Widgets.

  TQLabel*         labUser;
  TQLineEdit*      leUser;

  TQLabel*         labIcon;

  TQLabel*         labComment;
  TQLineEdit*      leComment;

  TQLabel*         labCommand;
  TQLineEdit*      leCommand;
  TQPushButton*    pbBrowse;

  TQCheckBox*      chkEnabled;

  TQButtonGroup*   bgMonth;
  TQCheckBox*      cbMonth[13];
  TQPushButton*    pbAllMonths;

  TQButtonGroup*   bgDayOfMonth;
  TQPushButton*    pbDayOfMonth[32];
  TQPushButton*    pbAllDaysOfMonth;

  TQButtonGroup*   bgDayOfWeek;
  TQCheckBox*      cbDayOfWeek[8];
  TQPushButton*    pbAllDaysOfWeek;

  TQButtonGroup*   bgEveryDay;
  TQCheckBox*      cbEveryDay;

  TQButtonGroup*   bgHour;
  TQLabel*         labAM;
  TQLabel*         labPM;
  TQPushButton*    pbHour[25];
  TQPushButton*    pbAllHours;

  TQButtonGroup*   bgMinute;
  TQPushButton*    pbMinute[61];
  TQPushButton*    pbAllMinutes;

  TQPushButton*    pbOk;
  TQPushButton*    pbCancel;

};

#endif // KTTASK_H