~ubuntu-branches/ubuntu/karmic/kmyfirewall/karmic

« back to all changes in this revision

Viewing changes to KMFSysTray/details.h

  • Committer: Bazaar Package Importer
  • Author(s): Matvey Kozhev
  • Date: 2008-01-26 00:25:25 UTC
  • mfrom: (1.1.2 upstream)
  • Revision ID: james.westby@ubuntu.com-20080126002525-xmqcjdddbrbgcxpp
Tags: 1.1.0-0ubuntu1
* New upstream release. (LP: #177760)
* debian/patches:
  - Dropped 02_fix_desktop_file.dpatch: failed to apply; included
    the desktop file in debian/ instead.
  - Added 01_kdesudo.dpatch to use kdesudo instead of kdesu -t. (LP: #145751)
* debian/control:
  - Bumped Standards-Version to 3.7.3.
  - Updated debhelper build-dependency to >= 5.0.51 (for dh_icons).
  - Updated kdelibs4 build-dependency per official system requirements.
  - Moved Homepage into its own field.
  - Removed dpatch build-dependency, all patches dropped.
  - Build-depend on chrpath.
  - Depend on iptables and kdesudo.
* debian/compat:
  - Bumped to 5.
* debian/copyright:
  - Link to common-licenses/GPL-2 since the software is GPLv2 only.
  - Updated FSF address.
  - Updated upstream homepage and author email.
* debian/menu:
  - Updated per new menu policy.
* debian/rules:
  - Removed dh_make comments.
  - Removed dh_installdirs call, not needed.
  - Delete /usr/lib/*.so, leave only *.so.0.
  - Strip /usr/lib rpath with chrpath.
  - Do not ignore make distclean output.
  - Perform additional cleanup to delete all build artifacts.
  - Moved config.guess/config.sub copy commands from clean to configure.
  - Replaced dh_iconcache with dh_icons.
  - Added dh_desktop.
  - Added get-orig-source.
* Added debian/kmfinstallerplugin.desktop, tweaked for Lintian cleanliness.
* Added debian/kmyfirewall.desktop, tweaked for Lintian cleanliness.
* Added debian/kmyfirewall.xpm.
* Added debian/install to install the desktop and xpm files.
* Added debian/watch.

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
/***************************************************************************
 
2
*   Copyright (C) 2005 by Christian Hubinger   *
 
3
*   e9806056@student.tuwien.ac.at   *
 
4
*                                                                         *
 
5
*   This program is free software; you can redistribute it and/or modify  *
 
6
*   it under the terms of the GNU General Public License as published by  *
 
7
*   the Free Software Foundation; either version 2 of the License, or     *
 
8
*   (at your option) any later version.                                   *
 
9
*                                                                         *
 
10
*   This program is distributed in the hope that it will be useful,       *
 
11
*   but WITHOUT ANY WARRANTY; without even the implied warranty of        *
 
12
*   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the         *
 
13
*   GNU General Public License for more details.                          *
 
14
*                                                                         *
 
15
*   You should have received a copy of the GNU General Public License     *
 
16
*   along with this program; if not, write to the                         *
 
17
*   Free Software Foundation, Inc.,                                       *
 
18
*   59 Temple Place - Suite 330, Boston, MA  02111-1307, USA.             *
 
19
***************************************************************************/
 
20
 
 
21
#ifndef DETAILS_H
 
22
#define DETAILS_H
 
23
 
 
24
#include "details_designer.h"
 
25
 
 
26
class Details : public DetailsDesigner {
 
27
        Q_OBJECT
 
28
 
 
29
public:
 
30
        Details( QWidget* parent = 0, const char* name = 0, WFlags fl = 0 );
 
31
        ~Details();
 
32
        /*$PUBLIC_FUNCTIONS$*/
 
33
 
 
34
public slots:
 
35
        /*$PUBLIC_SLOTS$*/
 
36
        void close();
 
37
        void show();
 
38
        void hide();
 
39
        void slotUpdateRuleCount( const QString&, const QString&, int );
 
40
protected:
 
41
        /*$PROTECTED_FUNCTIONS$*/
 
42
 
 
43
protected slots:
 
44
        /*$PROTECTED_SLOTS$*/
 
45
 
 
46
 
 
47
signals:
 
48
        void closing();
 
49
        void showing();
 
50
 
 
51
};
 
52
 
 
53
#endif
 
54