Completely change the behavior of entering special keys (like Ctrl+Alt+Del). Do not...
[kdenetwork.git] / kdnssd / kdedmodule / watcher.h
blob23c6a846c9d07b99f257900465a6c6827dad0f2d
1 /* This file is part of the KDE Project
2 Copyright (c) 2004 Jakub Stachowski <qbast@go2.pl>
4 This library is free software; you can redistribute it and/or
5 modify it under the terms of the GNU Library General Public
6 License version 2 as published by the Free Software Foundation.
8 This library is distributed in the hope that it will be useful,
9 but WITHOUT ANY WARRANTY; without even the implied warranty of
10 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
11 Library General Public License for more details.
13 You should have received a copy of the GNU Library General Public License
14 along with this library; see the file COPYING.LIB. If not, write to
15 the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
16 Boston, MA 02110-1301, USA.
19 #ifndef _WATCHER_H_
20 #define _WATCHER_H_
22 #include <qstring.h>
23 //Added by qt3to4:
24 #include <dnssd/servicebrowser.h>
25 #include <dnssd/servicetypebrowser.h>
26 #include <dnssd/remoteservice.h>
28 using namespace DNSSD;
30 class Watcher : public QObject
32 Q_OBJECT
33 public:
34 Watcher(const QString& type, const QString& domain);
35 ~Watcher();
37 unsigned int refcount;
38 private:
39 ServiceBrowser* browser;
40 ServiceTypeBrowser* typebrowser;
41 bool updateNeeded;
42 QString m_type;
43 QString m_domain;
44 QList<DNSSD::RemoteService::Ptr> removed;
46 private slots:
47 void serviceRemoved(DNSSD::RemoteService::Ptr srv);
48 void serviceAdded(DNSSD::RemoteService::Ptr);
49 void finished();
53 #endif