diff options
author | Michele Calgaro <michele.calgaro@yahoo.it> | 2021-12-09 17:02:13 +0900 |
---|---|---|
committer | Michele Calgaro <michele.calgaro@yahoo.it> | 2021-12-09 17:02:13 +0900 |
commit | 855818127b02c367fb187e67b9bb9b229b916304 (patch) | |
tree | c353d9b96b0135baf7f7a553c59926f2e5866a31 /examples/agent/klistener.h | |
parent | 7d1585c071206dd8460ed624eff764de5464dde7 (diff) | |
download | polkit-tqt-855818127b02c367fb187e67b9bb9b229b916304.tar.gz polkit-tqt-855818127b02c367fb187e67b9bb9b229b916304.zip |
Converted agent example code.
Signed-off-by: Michele Calgaro <michele.calgaro@yahoo.it>
Diffstat (limited to 'examples/agent/klistener.h')
-rw-r--r-- | examples/agent/klistener.h | 56 |
1 files changed, 0 insertions, 56 deletions
diff --git a/examples/agent/klistener.h b/examples/agent/klistener.h deleted file mode 100644 index a4367f981..000000000 --- a/examples/agent/klistener.h +++ /dev/null @@ -1,56 +0,0 @@ -/* - * This file is part of the Polkit-qt project - * Copyright (C) 2009 Jaroslav Reznik <jreznik@redhat.com> - * - * 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 POLKIT_TQT_AGENT_KDE_LISTENER_H -#define POLKIT_TQT_AGENT_KDE_LISTENER_H - -#include <TQtCore/TQObject> -#include <TQtCore/TQString> - -#include "agent/polkittqt1-agent-listener.h" -#include "core/polkittqt1-identity.h" -#include "core/polkittqt1-details.h" -#include "agent/polkittqt1-agent-session.h" - -class KListener : public PolkitTQt::Agent::Listener -{ - Q_OBJECT - TQ_DISABLE_COPY(KListener) -public: - KListener(TQObject *parent = 0); - ~KListener() {}; -public Q_SLOTS: - void initiateAuthentication(const TQString &actionId, - const TQString &message, - const TQString &iconName, - const PolkitTQt::Details &details, - const TQString &cookie, - const PolkitTQt::Identity::List &identities, - PolkitTQt::Agent::AsyncResult *result); - bool initiateAuthenticationFinish(); - void cancelAuthentication(); - - void request(const TQString &request, bool echo); - void completed(bool gainedAuthorization); - void showError(const TQString &text); - void showInfo(const TQString &text); -}; - -#endif |