summaryrefslogtreecommitdiffstats
path: root/knetload/devicedialog.h
blob: 6152671d09e6adc94cc25d7a5eb3bfb6c8f55474 (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

/***************************************************************************
 *                                                                         *
 *   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 __DEVICEDIALOG_H
#define __DEVICEDIALOG_H

#include <kdialogbase.h>

/**
 * A dialog used to select a custom network device to monitor.
 * The device is specified by its interface name.
 */
class DeviceDialog : public KDialogBase {
    Q_OBJECT

    public:
        /**
         * Constructor.
         */
        DeviceDialog(const QString& defaultDevice, QWidget* parent);

        /**
         * Returns the device currently selected in the dialog.
         * This is valid after the dialog has closed, though the string
         * itself will be destroyed when this object is deleted.
         */
        const QString& getDevice() const;

    private slots:
        /**
         * Updates the device variable to reflect the latest changes in
         * the device combo box.
         */
        virtual void updateDevice(const QString&);

    private:
        QString device;
            /**< The device currently selected in the device combo box. */
};

#endif