blob: 3606927f6c000f2e5dffbc6c7c0d48501b231918 (
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
|
#include "%{APPNAMELC}.h"
%{APPNAME}::%{APPNAME}() {
m_widget = 0l;
}
%{APPNAME}::~%{APPNAME}() {
delete (%{APPNAME}Widget*)m_widget;
}
TQString %{APPNAME}::pluginName() const {
return TQObject::tr( "%{APPNAME}" );
}
double %{APPNAME}::versionNumber() const {
return 0.1;
}
// this sets the image that will be shown on the left side of the plugin
TQString %{APPNAME}::pixmapNameWidget() const {
return TQString::fromLatin1("%{APPNAMELC}/%{APPNAMELC}");
}
TQWidget* %{APPNAME}::widget( TQWidget * wid ) {
if(!m_widget) {
m_widget = new %{APPNAME}Widget( wid, "%{APPNAME}" );
}
return m_widget;
}
// that would be the icon of the config widget in todays config view
TQString %{APPNAME}::pixmapNameConfig() const {
return 0l;
}
// No config widget yet, look at the datebook plugin for an example of that
TodayConfigWidget* %{APPNAME}::configWidget( TQWidget* /*parent*/ ) {
return 0l;
}
// add the binary name of the app to launch here
TQString %{APPNAME}::appName() const {
return TQString();
}
// if the plugin should be excluded form the refresh cycles that can be set in the today app
bool %{APPNAME}::excludeFromRefresh() const {
return false;
}
void %{APPNAME}::refresh() {
if ( m_widget ) {
m_widget->refresh();
}
}
void %{APPNAME}::reinitialize() {
}
|