blob: 3fd2c8bf7b2eeb95485e2f3073b8492e135f87ac (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
|
#ifndef TIMEFORMATWIDGET_H
#define TIMEFORMATWIDGET_H
#include "timedateformatwidget.h"
class TimeFormatWidget : public TimeDateFormatWidgetPrototype
{
Q_OBJECT
TQ_OBJECT
public:
TimeFormatWidget( TQWidget* parent = 0, const char* name = 0, WFlags fl = 0 );
~TimeFormatWidget();
TQString resultString();
int correctValue();
public slots:
void updateLabel();
void comboActivated();
void slotPersonalizeChanged(bool b);
void slotDefaultValueChanged(const TQString & );
void slotOffsetChanged(int);
};
#endif // TIMEFORMATWIDGET_H
|