summaryrefslogtreecommitdiff
path: root/noncore/applets/pyquicklaunch/pyquicklaunch.cpp
blob: 2ee8e17b65a9f890e12d43f12534619c3275ce11 (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
/**********************************************************************
** 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/otaskbarapplet.h>
#include <qpe/qpeapplication.h>
#include <qpe/config.h>
using namespace Opie::Core;

/* QT */
#include <qpainter.h>
#include <qframe.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 )
{
    setFixedHeight( 18 );
    setFixedWidth( 14 );
    status = new PyQuicklaunchControl( this, this, "Python Quicklaunch Status" );
}


PyQuicklaunchApplet::~PyQuicklaunchApplet()
{}


void PyQuicklaunchApplet::timerEvent( QTimerEvent* )
{
    // FIXME
}

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

void PyQuicklaunchApplet::paintEvent( QPaintEvent* )
{
    QPainter p( this );
    int h = height();
    int w = width();

    // FIXME

}


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

EXPORT_OPIE_APPLET_v1( PyQuicklaunchApplet )