~ubuntu-branches/ubuntu/lucid/knetworkmanager/lucid

« back to all changes in this revision

Viewing changes to knetworkmanager-0.7/src/knetworkmanager-tray.h

  • Committer: Bazaar Package Importer
  • Author(s): Michael Biebl
  • Date: 2009-09-02 00:32:01 UTC
  • mfrom: (1.2.8 upstream) (1.1.7 sid)
  • Revision ID: james.westby@ubuntu.com-20090902003201-q1v8drzx8eq3q9h2
Tags: 1:0.7~~svn941706-2
* Bump Standards-Version to 3.8.3. No further changes.
* debian/patches/06-buildsystem_fixes.patch
  - Add support for automake 1.11.
  - Fix build failures with autoconf 2.64 where the compiler is not
    correctly detected as GNU compiler leading to libtool not linking
    libraries correctly. Closes: #543026

Show diffs side-by-side

added added

removed removed

Lines of Context:
4
4
 *
5
5
 * Copyright (C) 2005, 2006 Novell, Inc.
6
6
 *
7
 
 * Author: Timo Hoenig     <thoenig@suse.de>, <thoenig@nouse.net>
8
 
 *         Will Stephenson <wstephenson@suse.de>, <wstephenson@kde.org>
9
 
 *         Helmut Schaa    <hschaa@suse.de>, <helmut.schaa@gmx.de>
 
7
 * Author: Timo Hoenig       <thoenig@suse.de>, <thoenig@nouse.net>
 
8
 *         Will Stephenson   <wstephenson@suse.de>, <wstephenson@kde.org>
 
9
 *         Helmut Schaa      <hschaa@suse.de>, <helmut.schaa@gmx.de>
 
10
 *         Alexander Naumov  <anaumov@suse.de>, <posix.ru@gmail.com> 
10
11
 *
11
12
 * This program is free software; you can redistribute it and/or modify
12
13
 * it under the terms of the GNU General Public License as published by
38
39
#include <kstdaction.h>
39
40
#include <kstdguiitem.h>
40
41
 
 
42
#include <qdialog.h>
 
43
#include <qwidget.h>
 
44
 
41
45
#include <qlayout.h>
42
46
#include <qlabel.h>
43
47
#include <qcheckbox.h>
55
59
class QMouseEvent;
56
60
class TrayComponent;
57
61
class TrayPrivate;
 
62
class QDialog;
 
63
class QPushButton;
 
64
class QLabel;
58
65
 
59
66
class Tray : public KSystemTray
60
67
{
102
109
                void enterEvent (QEvent*);
103
110
 
104
111
                TrayPrivate* d;
 
112
 
 
113
};
 
114
 
 
115
class NewSecretsDialog : public QDialog
 
116
{
 
117
        Q_OBJECT
 
118
 
 
119
        public:
 
120
                NewSecretsDialog(ConnectionSettings::Connection* connection, QWidget * parent, const char * name, bool modal = false, Qt::WFlags f = 0);
 
121
                ~NewSecretsDialog();
 
122
                void init();
 
123
 
 
124
        public slots:
 
125
                void slotDialogEdit();
 
126
                void reject();
 
127
 
 
128
        private:
 
129
                ConnectionSettings::Connection* _connection;
105
130
};
106
131
 
107
132
#endif /* KNETWORKMANAGER_TRAY_H */