blob: 9d9536637804cbd6e5f41d065a23bbef34a14d80 (
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
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
|
#include "%{APPNAMELC}.h"
#include <tqpe/applnk.h>
#include <tqpe/resource.h>
/* QT */
#include <tqiconset.h>
#include <tqpopupmenu.h>
#include <tqmessagebox.h>
%{APPNAME}::%{APPNAME}()
:TQObject( 0, "%{APPNAME}" )
{
}
%{APPNAME}::~%{APPNAME} ( )
{}
int %{APPNAME}::position() const
{
return 3;
}
TQString %{APPNAME}::name() const
{
return tr( "MenuApplet Example Name" );
}
TQString %{APPNAME}::text() const
{
return tr( "Click the white rabbit" );
}
TQIconSet %{APPNAME}::icon() const
{
TQPixmap pix;
TQImage img = Resource::loadImage( "Tux" );
if ( !img.isNull() )
pix.convertFromImage( img.smoothScale( AppLnk::smallIconSize(), AppLnk::smallIconSize() ) );
return pix;
}
TQPopupMenu* %{APPNAME}::popup(TQWidget*) const
{
/* no subdir */
return 0;
}
void %{APPNAME}::activated()
{
TQMessageBox::information(0,tr("No white rabbit found"),
tr("<qt>No white rabbit was seen near Opie."
"Only the beautiful OpieZilla is available"
"for your pleassure</qt>"));
}
TQRESULT %{APPNAME}::queryInterface( const TQUuid &uuid, TQUnknownInterface **iface )
{
*iface = 0;
if ( uuid == IID_TQUnknown )
*iface = this;
else if ( uuid == IID_MenuApplet )
*iface = this;
else
return TQS_FALSE;
if ( *iface )
(*iface)->addRef();
return TQS_OK;
}
TQ_EXPORT_INTERFACE()
{
TQ_CREATE_INSTANCE( %{APPNAME} )
}
|