~ubuntu-branches/ubuntu/vivid/kvpnc/vivid-proposed

« back to all changes in this revision

Viewing changes to src/configlogoptions.h

  • Committer: Bazaar Package Importer
  • Author(s): Mark Purcell
  • Date: 2009-04-23 09:18:50 UTC
  • mfrom: (1.1.10 upstream) (8.1.2 sid)
  • Revision ID: james.westby@ubuntu.com-20090423091850-hweeg0jo64t0jx52
Tags: 0.9.1-1
* New upstream release (KDE4 is here)
* Add Build-Depends cmake and pkg-kde-tools
* Remove obsolete debian/patches
* Refresh debian/patches:
  - 10_su-to-root_usage.diff
  - 13_add_kuser_issuperuser.diff
* Cleanup debian/rules - simple under KDE4
* Update debian/watch for KDE4 version
* Update debian/copyright - use versionned licenses
* Update Section field - move to utils
* Remove obsolete dependencies: kdebase-bin, gksu, sux and modutils
* Update debian/kvpnc.{manpages,1}

Show diffs side-by-side

added added

removed removed

Lines of Context:
20
20
#ifndef CONFIGLOGOPTIONS_H
21
21
#define CONFIGLOGOPTIONS_H
22
22
 
23
 
#include "configlogoptionsbase.h"
24
 
#include <qwidget.h>
25
 
#include <qcolor.h>
 
23
#include "ui_configlogoptionsbase4.h"
 
24
#include <QtGui/QWidget>
 
25
#include <QtGui/QColor>
26
26
 
27
27
/**
28
28
@author Christoph Thielecke
29
29
*/
30
 
class ConfigLogOptions : public ConfigLogOptionsBase
 
30
class ConfigLogOptions : public QWidget, public Ui_ConfigLogOptionsBase
31
31
{
32
32
        Q_OBJECT
33
33
public:
34
34
        ConfigLogOptions(QWidget *parent);
35
 
 
36
35
        ~ConfigLogOptions();
 
36
        bool dialogModified;
37
37
 
38
38
public slots:
39
 
        void debugLogColorClicked();
40
 
        void infoLogColorClicked();
41
 
        void remoteLogColorClicked();
42
 
        void successLogColorClicked();
43
 
        void errorLogColorClicked();
44
 
        void useColorizedLogOutputToggled(bool);
45
 
        void backgroundLogColorClicked();
 
39
        void debugLogColorClicked(bool);
 
40
        void infoLogColorClicked(bool);
 
41
        void remoteLogColorClicked(bool);
 
42
        void successLogColorClicked(bool);
 
43
        void errorLogColorClicked(bool);
 
44
        void useColorizedLogOutputToggled(int);
 
45
        void backgroundLogColorClicked(bool);
46
46
 
47
47
protected:
48
48
        QColor InfoLogColor;
52
52
        QColor DebugLogColor;
53
53
        QColor BackgroundLogColor;
54
54
 
 
55
private slots:
 
56
        void dialogChanged();
 
57
 
 
58
signals:
 
59
        void changed();
 
60
 
55
61
};
56
62
 
57
63
#endif