blob: 17af467972860d7bb97e562e84fd9e4b1d504707 (
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
|
#ifndef _HOLIDAY_PLUGIN_CFG_WIDGET
#define _HOLIDAY_PLUGIN_CFG_WIDGET
#include <qwidget.h>
namespace Opie {
namespace Datebook {
class HolidayPluginConfigWidget:public QWidget
{
Q_OBJECT
public:
/**
* This will construct the widget. The widget gets deleted once the parent
* gets deleted as in any Qt application
*
* A Parent is required!
*
* @param parent The parent of the widget
* @param name The name of the object
*/
HolidayPluginConfigWidget(QWidget *parent, const char *name = 0, WFlags fl = 0 );
virtual ~HolidayPluginConfigWidget();
virtual void saveConfig()=0;
};
}
}
#endif
|