You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
24 lines
575 B
24 lines
575 B
#ifndef TIMEFORMATWIDGET_H
|
|
#define TIMEFORMATWIDGET_H
|
|
#include "timedateformatwidget.h"
|
|
|
|
class TimeFormatWidget : public TimeDateFormatWidgetPrototype
|
|
{
|
|
Q_OBJECT
|
|
TQ_OBJECT
|
|
|
|
public:
|
|
TimeFormatWidget( TQWidget* tqparent = 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
|