~ubuntu-branches/ubuntu/natty/knemo/natty

« back to all changes in this revision

Viewing changes to src/knemod/knemodaemon.h

  • Committer: Bazaar Package Importer
  • Author(s): Felix Geyer
  • Date: 2011-02-22 16:36:22 UTC
  • mfrom: (1.1.13 upstream)
  • Revision ID: james.westby@ubuntu.com-20110222163622-d8i62gy1stn7tydv
Tags: 0.7.0-0ubuntu1
* New upstream release.
* Switch to source format 3.0 (quilt).
* Make knemo depend on libqt4-sql-sqlite.

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
1
/* This file is part of KNemo
2
2
   Copyright (C) 2004, 2006 Percy Leonhardt <percy@eris23.de>
3
 
   Copyright (C) 2009 John Stamp <jstamp@users.sourceforge.net>
 
3
   Copyright (C) 2009, 2010 John Stamp <jstamp@users.sourceforge.net>
4
4
 
5
5
   KNemo is free software; you can redistribute it and/or modify
6
6
   it under the terms of the GNU Library General Public License as
22
22
#define KNEMODAEMON_H
23
23
 
24
24
#include <QHash>
25
 
#include <QColor>
26
 
 
27
25
#include <KApplication>
28
26
 
29
27
class QTimer;
95
93
    KSharedConfigPtr mConfig;
96
94
    bool mHaveInterfaces;
97
95
 
98
 
    QColor mColorVLines;
99
 
    QColor mColorHLines;
100
 
    QColor mColorIncoming;
101
 
    QColor mColorOutgoing;
102
 
    QColor mColorBackground;
103
 
 
104
96
    // every time this timer expires we will
105
97
    // gather new informations from the backend
106
98
    QTimer* mPollTimer;
109
101
    // a list of all interfaces the user wants to monitor
110
102
    QHash<QString, Interface *> mInterfaceHash;
111
103
 
112
 
    static KAboutData* mAboutData;    
 
104
    static KAboutData* mAboutData;
113
105
};
114
106
 
115
107
#endif // KNEMODAEMON_H