summaryrefslogtreecommitdiffstats
path: root/knetload/knetload.h
blob: 9014efa3c1a3acce13b7f05022920ea2fc15608f (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

/***************************************************************************
 *                                                                         *
 *   KNetLoad is copyright (c) 1999-2000, Markus Gustavsson                *
 *                         (c) 2002, Ben Burton                            *
 *                                                                         *
 *   This program is free software; you can redistribute it and/or modify  *
 *   it under the terms of the GNU General Public License as published by  *
 *   the Free Software Foundation; either version 2 of the License, or     *
 *   (at your option) any later version.                                   *
 *                                                                         *
 ***************************************************************************/

#ifndef __KNETLOAD_H
#define __KNETLOAD_H

#include "statpopup.h"

#include <tqptrlist.h>

class TDEAction;
class KNetProc;
class TDEPopupMenu;

/**
 * The specific pop-up window used by KNetLoad.
 */
class KNetLoad : public StatPopup {
    Q_OBJECT
  

public:
    /**
     * Constructor and destructor.
     */
    KNetLoad(TQWidget *parent = 0, const char *name = 0);
    ~KNetLoad();

public slots:
    /**
     * Slots for menu items.
     */
    void setDevice(const TQString& newDevice);
    void setDevice(int deviceIndex);
    void setScaleIn(int scale);
    void setScaleOut(int scale);

protected:
    /**
     * Overrides from StatPopup.
     */
    virtual TQString dockName(int which) const;
    virtual TQColor defaultDockColor(int which) const;
    virtual void setupCustomActions();
    virtual void insertCustomItems(TDEPopupMenu* menu);
    virtual void takeReadingInternal();

private:
    /**
     * Updating menus to reflect the current configuration.
     */
    void updateDeviceMenu(TDEPopupMenu* menu);
    void updateDeviceMenus();
    void updateScaleInMenu(TDEPopupMenu* menu);
    void updateScaleInMenus();
    void updateScaleOutMenu(TDEPopupMenu* menu);
    void updateScaleOutMenus();

private:
    /**
     * Reading raw network throughput information.
     */
    KNetProc* proc;
        /**< Used to obtain the raw information. */
    float bitRateIn, bitRateOut;
        /**< Temporary variables used in calculations. */

    /**
     * Monitor settings.
     */
    int scaleIn, scaleOut;
        /**< The scale for each diagram in bits per second.
             If scaleOut == 0, scaleIn should be used for both directions. */

    /**
     * Lists of menus that must be kept up-to-date.
     */
    TQPtrList<TDEPopupMenu> deviceMenus;
    TQPtrList<TDEPopupMenu> scaleInMenus;
    TQPtrList<TDEPopupMenu> scaleOutMenus;
    
    TQStringList stockDevice;
    TQStringList stockDeviceIconOn;
    TQStringList stockDeviceIconOff;
};

#endif