fix tricky regression noticed by Vyacheslav Tokarev on Google Reader.
[kdelibs.git] / dnssd / mdnsd-servicebrowser_p.h
blob79674c55065c97ecd0dc644120c159c14fa27487
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 MDNSD_SERVICEBROWSER_P_H
22 #define MDNSD_SERVICEBROWSER_P_H
24 #include <QtCore/QObject>
25 #include <QtCore/QTimer>
27 #include "mdnsd-responder.h"
28 #include "servicebrowser.h"
30 namespace DNSSD
33 class ServiceBrowserPrivate : public Responder
35 Q_OBJECT
36 public:
37 ServiceBrowserPrivate(ServiceBrowser* parent) : Responder(), m_parent(parent)
39 QList<RemoteService::Ptr> m_services;
40 QList<RemoteService::Ptr> m_duringResolve;
41 QString m_type;
42 QString m_domain;
43 QString m_subtype;
44 bool m_autoResolve;
45 bool m_finished;
46 ServiceBrowser* m_parent;
47 QTimer timeout;
49 // get already found service identical to s or just return s if not found
50 RemoteService::Ptr find(RemoteService::Ptr s) const;
51 virtual void customEvent(QEvent* event);
52 public Q_SLOTS:
53 void queryFinished();
54 void serviceResolved(bool success);
55 void onTimeout();
60 #endif