summaryrefslogtreecommitdiff
path: root/core/applets/restartapplet2/restart.cpp
blob: eda0005bd1002dd5c7341d0a7a9823f41c610229 (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
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
// coptright Mon 10-21-2002 01:14:03 by L. Potter <ljp@llornkcor.com>

#include "restart.h"

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

/* XPM */
static char *restart_xpm[] = {
"16 16 11 1",
"   c None",
".  c #000000",
"+  c #DCDCDC",
"@  c #A0A0A0",
"#  c #C3C3C3",
"$  c #808080",
"%  c #FFA858",
"&  c #FFDCA8",
"*  c #FFFFC0",
"=  c #FFFFFF",
"-  c #585858",
"       ..       ",
"   .. .++. ..   ",
"  .+@.@##@.@+.  ",
"  .@+$@%%@$+@.  ",
"   .$%%&%&%$.   ",
" ..+@%&$$%&@+.. ",
".+#@%&%@@&*%@#+.",
".$@+$&*&&=*$+@$.",
" .--+$&*=&$+--. ",
"  .$#++$$++#$.  ",
" .@=$-$++$-$=@. ",
" .+@-..@@..-@+. ",
"  ... .+=. ...  ",
"      .-$.      ",
"       ..       ",
"                "};

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

RestartApplet::~RestartApplet ( )
{
}

int RestartApplet::position ( ) const
{
    return 4;
}

QString RestartApplet::name ( ) const
{
  return tr( "Restart" );
}

QString RestartApplet::text ( ) const
{
  return tr( "Restart Opie" );
}

QIconSet RestartApplet::icon ( ) const
{
  QPixmap pix;
  QImage img =  ( const char** ) restart_xpm ;//Resource::loadImage ( "Run" );
  
  if ( !img. isNull ( ))
        pix.convertFromImage( img.smoothScale( AppLnk::smallIconSize(), AppLnk::smallIconSize() ) );
  return pix;
}

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

void RestartApplet::activated ( )
{
    QCopEnvelope e("QPE/System", "restart()");
}


QRESULT RestartApplet::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( RestartApplet )
}