dnssd Library API Documentation

domainbrowser.h

00001 /* This file is part of the KDE project
00002  *
00003  * Copyright (C) 2004 Jakub Stachowski <qbast@go2.pl>
00004  *
00005  * This library is free software; you can redistribute it and/or
00006  * modify it under the terms of the GNU Library General Public
00007  * License as published by the Free Software Foundation; either
00008  * version 2 of the License, or (at your option) any later version.
00009  *
00010  * This library is distributed in the hope that it will be useful,
00011  * but WITHOUT ANY WARRANTY; without even the implied warranty of
00012  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
00013  * Library General Public License for more details.
00014  *
00015  * You should have received a copy of the GNU Library General Public License
00016  * along with this library; see the file COPYING.LIB.  If not, write to
00017  * the Free Software Foundation, Inc., 59 Temple Place - Suite 330,
00018  * Boston, MA 02111-1307, USA.
00019  */
00020 
00021 #ifndef DNSSDDOMAINBROWSER_H
00022 #define DNSSDDOMAINBROWSER_H
00023 
00024 #include <qobject.h>
00025 #include <qdict.h>
00026 #include <dnssd/remoteservice.h>
00027 
00028 // KIPC message ID used by kcm module to signal change in browsing domains list
00029 
00030 #define KIPCDomainsChanged 2014
00031 
00032 class QStringList;
00033 namespace DNSSD
00034 {
00035 class DomainBrowserPrivate;
00036 
00041 class KDNSSD_EXPORT DomainBrowser : public QObject
00042 {
00043     Q_OBJECT
00044 public:
00050     DomainBrowser(QObject *parent=0);
00051     
00062     DomainBrowser(const QStringList& domains, bool recursive=false, QObject *parent=0);
00063 
00064     ~DomainBrowser();
00065     
00069     const QStringList& domains() const;
00070     
00074     void startBrowse() ;
00075     
00079     bool isRunning() const;
00080 
00081 signals:
00085     void domainRemoved(const QString&);
00090     void domainAdded(const QString&);
00091 
00092 protected:
00093     virtual void virtual_hook(int,void*);
00094 private:
00095     DomainBrowserPrivate *d;
00096 private slots:
00097     void gotNewDomain(DNSSD::RemoteService::Ptr);
00098     void gotRemoveDomain(DNSSD::RemoteService::Ptr);
00099     void domainListChanged(int,int);
00100 };
00101 
00102 }
00103 
00104 #endif
KDE Logo
This file is part of the documentation for dnssd Library Version 3.4.2.
Documentation copyright © 1996-2004 the KDE developers.
Generated on Thu Sep 15 10:51:38 2005 by doxygen 1.4.4 written by Dimitri van Heesch, © 1997-2003