/usr/include/KF5/KDNSSD/dnssd/domainbrowser.h is in libkf5dnssd-dev 5.18.0-0ubuntu1.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 | /* This file is part of the KDE project
*
* Copyright (C) 2004 Jakub Stachowski <qbast@go2.pl>
*
* This library is free software; you can redistribute it and/or
* modify it under the terms of the GNU Library General Public
* License as published by the Free Software Foundation; either
* version 2 of the License, or (at your option) any later version.
*
* This library is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
* Library General Public License for more details.
*
* You should have received a copy of the GNU Library General Public License
* along with this library; see the file COPYING.LIB. If not, write to
* the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
* Boston, MA 02110-1301, USA.
*/
#ifndef KDNSSDDOMAINBROWSER_H
#define KDNSSDDOMAINBROWSER_H
#include <QtCore/QObject>
#include <dnssd/remoteservice.h>
class QStringList;
namespace KDNSSD
{
class DomainBrowserPrivate;
/**
* @class DomainBrowser domainbrowser.h KDNSSD/DomainBrowser
* @short Browses recommended domains for browsing or publishing to.
*
* Usage of this class is very simple. If you are interested in
* browsing for services, simple do
* @code
* KDNSSD::DomainBrowser *browser =
* new KDNSSD::DomainBrowser(KDNSSD::DomainBrowser::Browsing, this);
* connect(browser, SIGNAL(domainAdded(QString)),
* this, SLOT(browsingDomainAdded(QString));
* connect(browser, SIGNAL(domainRemoved(QString)),
* this, SLOT(browsingDomainRemove(QString));
* browser->startBrowse();
* @endcode
*
* If you are interested in domains where you can register services,
* usage is identical except that you should pass
* <tt>KDNSSD::DomainBrowser::Registering</tt> to the constructor.
*
* @author Jakub Stachowski
*/
class KDNSSD_EXPORT DomainBrowser : public QObject
{
Q_OBJECT
public:
/**
* A type of domain recommendation
*/
enum DomainType {
/** Domains recommended for browsing for services on (using ServiceBrowser) */
Browsing,
/** Domains recommended for publishing to (using PublicService) */
Publishing
};
/**
* Standard constructor
*
* The global DNS-SD configuration (for example, the global Avahi
* configuration for the Avahi backend) will be used.
*
* @param type the type of domain to search for
* @param parent parent object (see QObject documentation)
*
* @see startBrowse() and ServiceBrowser::isAvailable()
*/
explicit DomainBrowser(DomainType type, QObject *parent = 0);
~DomainBrowser();
/**
* The current known list of domains of the requested DomainType
*
* @return a list of currently known domain names
*/
QStringList domains() const;
/**
* Starts browsing
*
* Only the first call to this function will have any effect.
*
* Browsing stops when the DomainBrowser object is destroyed.
*
* @warning The domainAdded() signal may be emitted before this
* function returns.
*
* @see domainAdded() and domainRemoved()
*/
void startBrowse();
/**
* Whether the browsing has been started
*
* @return @c true if startBrowse() has been called, @c false otherwise
*/
bool isRunning() const;
Q_SIGNALS:
/**
* A domain has disappeared from the browsed list
*
* Emitted when domain has been removed from browsing list
* or the publishing list (depending on which list was
* requested in the constructor).
*
* @param domain the name of the domain
*
* @see domainAdded()
*/
void domainRemoved(const QString &domain);
/**
* A new domain has been discovered
*
* If the requested DomainType is Browsing, this will
* also be emitted for the domains specified in the
* global configuration.
*
* @param domain the name of the domain
*
* @see domainRemoved()
*/
void domainAdded(const QString &domain);
private:
friend class DomainBrowserPrivate;
DomainBrowserPrivate *const d;
};
}
#endif
|