fix tricky regression noticed by Vyacheslav Tokarev on Google Reader.
[kdelibs.git] / dnssd / avahi-servicebrowser_p.h
blob83e18fabc13580de80353431d276d89f84c06440
1 /* This file is part of the KDE project
3 * Copyright (C) 2004 Jakub Stachowski <qbast@go2.pl>
5 * This library is free software; you can redistribute it and/or
6 * modify it under the terms of the GNU Library General Public
7 * License as published by the Free Software Foundation; either
8 * version 2 of the License, or (at your option) any later version.
10 * This library 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 GNU
13 * Library General Public License for more details.
15 * You should have received a copy of the GNU Library General Public License
16 * along with this library; see the file COPYING.LIB. If not, write to
17 * the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
18 * Boston, MA 02110-1301, USA.
21 #ifndef AVAHI_SERVICEBROWSER_P_H
22 #define AVAHI_SERVICEBROWSER_P_H
24 #include <QtCore/QString>
25 #include <QtCore/QList>
26 #include <QtCore/QTimer>
27 #include "servicebrowser.h"
28 #include "avahi_servicebrowser_interface.h"
30 namespace DNSSD
33 class ServiceBrowserPrivate : public QObject
35 Q_OBJECT
36 public:
37 ServiceBrowserPrivate(ServiceBrowser* parent) : QObject(), m_running(false), m_browser(0), m_parent(parent)
39 ~ServiceBrowserPrivate() { if (m_browser) m_browser->Free(); delete m_browser;}
40 QList<RemoteService::Ptr> m_services;
41 QList<RemoteService::Ptr> m_duringResolve;
42 QString m_type;
43 QString m_domain;
44 QString m_subtype;
45 bool m_autoResolve;
46 bool m_running;
47 bool m_finished;
48 bool m_browserFinished;
49 QTimer m_timer;
50 org::freedesktop::Avahi::ServiceBrowser* m_browser;
51 ServiceBrowser* m_parent;
53 // get already found service identical to s or just return s if not found
54 RemoteService::Ptr find(RemoteService::Ptr s) const;
56 private Q_SLOTS:
57 void browserFinished();
58 void queryFinished();
59 void serviceResolved(bool success);
60 void gotNewService(int,int,const QString&,const QString&,const QString&, uint);
61 void gotRemoveService(int,int,const QString&,const QString&,const QString&, uint);
66 #endif