summaryrefslogtreecommitdiff
path: root/core/applets/suspendapplet/suspend.cpp
blob: f67576665305849089ba98f25a3eb3ba912e5589 (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
79
80
81
82
#include "suspend.h"

#include <opie2/oresource.h>

#include <qpe/applnk.h>
#include <qpe/qcopenvelope_qws.h>

#include <qapplication.h>

SuspendApplet::SuspendApplet ( )
	: QObject ( 0, "SuspendApplet" )
{
}

SuspendApplet::~SuspendApplet ( )
{
}

int SuspendApplet::position ( ) const
{
    return 2;
}

QString SuspendApplet::name ( ) const
{
	return tr( "Suspend shortcut" );
}

QString SuspendApplet::text ( ) const
{
	return tr( "Suspend" );
}

QString SuspendApplet::tr( const char* s ) const
{
    return qApp->translate( "SuspendApplet", s, 0 );
}

QString SuspendApplet::tr( const char* s, const char* p ) const
{
    return qApp->translate( "SuspendApplet", s, p );
}

QIconSet SuspendApplet::icon ( ) const
{
    QPixmap pix = Opie::Core::OResource::loadPixmap( "suspend", Opie::Core::OResource::SmallIcon );
	return pix;
}

QPopupMenu *SuspendApplet::popup ( QWidget * ) const
{
	return 0;
}

void SuspendApplet::activated ( )
{
	// suspend
	QCopEnvelope ( "QPE/System", "suspend()" );
}


QRESULT SuspendApplet::queryInterface ( const QUuid &uuid, QUnknownInterface **iface )
{
	*iface = 0;
	if ( uuid == IID_QUnknown )
		*iface = this;
	else if ( uuid == IID_MenuApplet )
		*iface = this;
	else
	    return QS_FALSE;

	if ( *iface )
		(*iface)-> addRef ( );
	return QS_OK;
}

Q_EXPORT_INTERFACE( )
{
	Q_CREATE_INSTANCE( SuspendApplet )
}