summaryrefslogtreecommitdiffstats
path: root/wifi/kwireless/kwirelesswidget.h
blob: ed47fb3293a5650af55ea7c2ade28fb34514a846 (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
/*
  $ Author: Mirko Boehm $
  $ License: This code is licensed under the LGPL $
  $ Copyright: (C) 1996-2003, Mirko Boehm $
  $ Contact: Mirko Boehm <mirko@kde.org>
         http://www.kde.org
         http://www.hackerbuero.org $
*/

#ifndef KWIRELESS_WIDGET_H
#define KWIRELESS_WIDGET_H

#include <tqwidget.h>
#include <tqptrlist.h>
#include <tqmutex.h>
#include <tqstringlist.h>

class DeviceInfo
{
public:
    DeviceInfo(TQString _device=TQString(), TQString _essid=TQString(),
	       TQString _encr=TQString(),
               float _quality=0, float _signal=0, float _noise=0,
               int _bitrate=0);
    TQString bitrateString();
    float quality();
    TQString qualityString();
    float signal();
    TQString signalString();
    float noise();
    TQString noiseString();
    const TQString& device();
    const TQString& essid();
    bool usesEncryption();
    TQString encrString();
protected:
    TQString m_device; // the device name (e.g., eth1)
    TQString m_essid; // the network name

    // all this values are coefficients (values between 0 and 1):
    float m_quality; // link quality level
    float m_noise; // the noise level
    float m_signal; // the signal level
    // all these values are absolut, e.g., 11000000 = 11MBit/sec:
    int m_bitrate; // bit rate
    TQString m_encr;
};

/** This wigdet displays the information about one wireless device.
    It is supposed to "look good" at about any resolution (to enable
    it to be used in the panel). */

class KWireLessWidget : public TQWidget
{
    TQ_OBJECT
  
public:
    enum Mode {
	Horizontal,
	Vertical
    };
    static KWireLessWidget* makeWireLessWidget(TQWidget *parent = 0,
                                               const char *name = 0);
protected:
    KWireLessWidget(TQWidget *parent=0, const char* name=0);
public:
    ~KWireLessWidget();
    void setMode(Mode);
    // These methods return values according to the mode:
    int preferredHeight();
    int preferredWidth();
    int instances();
protected:
    void paintEvent(TQPaintEvent*);
    void mousePressEvent(TQMouseEvent *e);
protected:
    Mode mode;
    int frameWidth;
    int qualityBarWidth;
    int signalBarWidth;
    int noiseBarWidth;
    // some static device information
    // a list of DeviceInfo objects, this needs to be filled by the
    // poll method:
    static TQPtrList<DeviceInfo> deviceInfo;
    static TQTimer *timer; // the poll timer
    static TQMutex mutex;
    static int m_instances;
signals:
    void updateDeviceInfo(TQPtrList<DeviceInfo> *);
protected slots:
    /** poll() is system dependent and needs to be implemented by
	deriving classes.
        poll() has to put a DeviceInfo object into deviceInfo for each
        wireless network device on the system. It uses mutex to
        serialize access to this objects.
        poll() will be called by a timer. If you cannot implement a
        KWireLessWidget for your OS this way, please contact me
        (mirko@kde.org).
    */
    virtual void poll() = 0;
};

#endif // KWIRELESS_WIDGET_H