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