summaryrefslogtreecommitdiff
path: root/noncore/applets/pyquicklaunch/pyquicklaunch.cpp
blob: 45eda4e2867e26f66f3c8837ea7ec38f1fa0a19a (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
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
/**********************************************************************
** Copyright (C) 2004 Michael 'Mickey' Lauer <mickey@vanille.de>
** All rights reserved.
**
** This file may be distributed and/or modified under the terms of the
** GNU General Public License version 2 as published by the Free Software
** Foundation and appearing in the file LICENSE.GPL included in the
** packaging of this file.
**
** This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING THE
** WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE.
**
**********************************************************************/

#include "pyquicklaunch.h"

/* OPIE */
#include <opie2/odebug.h>
#include <opie2/oresource.h>
#include <opie2/otaskbarapplet.h>
#include <qpe/config.h>
#include <qpe/qpeapplication.h>
using namespace Opie::Core;

/* QT */
#include <qcopchannel_qws.h>
#include <qpainter.h>
#include <qframe.h>
#include <qfile.h>
#include <qtimer.h>

/* STD */
#include <pwd.h>
#include <sys/types.h>
#include <unistd.h>

PyQuicklaunchControl::PyQuicklaunchControl( PyQuicklaunchApplet *applet, QWidget *parent, const char *name )
        : QFrame( parent, name, WStyle_StaysOnTop | WType_Popup ), applet( applet )
{

    setFrameStyle( QFrame::PopupPanel | QFrame::Raised );
    setFixedSize( sizeHint() );
    setFocusPolicy( QWidget::NoFocus );
}


void PyQuicklaunchControl::show( bool )
{
    QPoint curPos = applet->mapToGlobal( QPoint ( 0, 0 ) );

    int w = sizeHint().width();
    int x = curPos.x() - ( w / 2 );

    if ( ( x + w ) > QPEApplication::desktop() ->width() )
        x = QPEApplication::desktop ( ) -> width ( ) - w;

    move( x, curPos.y () - sizeHint().height () );
    QFrame::show();
}

void PyQuicklaunchControl::readConfig()
{
    Config cfg( "qpe" );
    cfg.setGroup( "PyQuicklaunch" );

    // ...
}

void PyQuicklaunchControl::writeConfigEntry( const char *entry, int val )
{
    Config cfg( "qpe" );
    cfg.setGroup( "PyQuicklaunch" );
    cfg.writeEntry( entry, val );
}

//===========================================================================

PyQuicklaunchApplet::PyQuicklaunchApplet( QWidget *parent, const char *name )
        : QWidget( parent, name ), online( false )
{
    setFixedHeight( 18 );
    setFixedWidth( 14 );
    status = new PyQuicklaunchControl( this, this, "Python Quicklaunch Status" );

    _online = Opie::Core::OResource::loadPixmap( "pyquicklaunch/online", Opie::Core::OResource::SmallIcon );
    _offline = Opie::Core::OResource::loadPixmap( "pyquicklaunch/offline", Opie::Core::OResource::SmallIcon );

    _fifoName = QString().sprintf( "/tmp/mickeys-quicklauncher-%s", ::getpwuid( ::getuid() )->pw_name );
    odebug << "PyQuicklaunchApplet fifo name = '" << _fifoName << "'" << oendl;
    _fifo.setName( _fifoName );

    _control = new QCopChannel( "QPE/PyLauncher", parent, "PyLauncher QCop Control Channel" );
    connect( _control, SIGNAL(received(const QCString&,const QByteArray&)),
             this, SLOT(receivedMessage(const QCString&,const QByteArray&) ) );

}


PyQuicklaunchApplet::~PyQuicklaunchApplet()
{
}


void PyQuicklaunchApplet::receivedMessage( const QCString& msg, const QByteArray& data )
{
    odebug << "receivedMessage = '" << msg << "' " << oendl;

    if ( msg == "setOnline()" )
    {
        online = true;
        repaint( true );
    }
    else if ( msg == "setOffline()" )
    {
        online = false;
        repaint( true );
    }
    else
    {
        odebug << "unknown command." << oendl;
    }
}


void PyQuicklaunchApplet::timerEvent( QTimerEvent* )
{
    bool nowOnline = _fifo.exists();
    if ( nowOnline != online )
    {
        online = nowOnline;
        repaint( true );
    }
}


void PyQuicklaunchApplet::mousePressEvent( QMouseEvent * )
{
     status->isVisible() ? status->hide() : status->show( true );
}


void PyQuicklaunchApplet::paintEvent( QPaintEvent* )
{
    QPainter p( this );
    p.drawPixmap( 0, 2, online ? _online : _offline );
}


int PyQuicklaunchApplet::position()
{
    return 6;
}

EXPORT_OPIE_APPLET_v1( PyQuicklaunchApplet )