summaryrefslogtreecommitdiffstats
path: root/qt/message.h
diff options
context:
space:
mode:
authorZack Rusin <zack@kde.org>2003-02-11 21:14:16 +0000
committerZack Rusin <zack@kde.org>2003-02-11 21:14:16 +0000
commit29097806a95145e58626359afd7e0aa4f71051a3 (patch)
tree3985d5e1843b890114cf37a24550876aab947152 /qt/message.h
parent9ac27f95fecd56e6e1566681c87812a825130adc (diff)
Sample KDE wrapper for DBusMessage.
Diffstat (limited to 'qt/message.h')
-rw-r--r--qt/message.h87
1 files changed, 87 insertions, 0 deletions
diff --git a/qt/message.h b/qt/message.h
new file mode 100644
index 00000000..98356a38
--- /dev/null
+++ b/qt/message.h
@@ -0,0 +1,87 @@
+/* -*- mode: C++; c-file-style: "gnu" -*- */
+/* message.h: Qt wrapper for DBusMessage
+ *
+ * Copyright (C) 2003 Zack Rusin <zack@kde.org>
+ *
+ * Licensed under the Academic Free License version 1.2
+ *
+ * This program is free software; you can redistribute it and/or modify
+ * it under the terms of the GNU General Public License as published by
+ * the Free Software Foundation; either version 2 of the License, or
+ * (at your option) any later version.
+ *
+ * This program 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 General Public License for more details.
+ *
+ * You should have received a copy of the GNU General Public License
+ * along with this program; if not, write to the Free Software
+ * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
+ *
+ */
+
+#include <qvariant.h>
+#include <qstring.h>
+#include <dbus.h>
+
+namespace DBus {
+
+ class Message
+ {
+ public:
+ class iterator {
+ public:
+ iterator();
+ iterator( const iterator & );
+ iterator( DBusMessage* msg );
+ ~iterator();
+
+ iterator& operator=( const iterator& );
+ const QVariant& operator*() const;
+ QVariant& operator*();
+ iterator& operator++();
+ iterator operator++(int);
+ bool operator==( const iterator& it );
+ bool operator!=( const iterator& it );
+
+ QVariant var() const;
+ private:
+ void fillVar();
+ struct IteratorData;
+ IteratorData *d;
+ };
+
+ Message( const QString& service, const QString& name );
+ Message( const QString& name,
+ const Message& replayingTo );
+ Message( const Message& other );
+
+ virtual ~Message();
+
+ bool setSender( const QString& sender );
+ void setError( bool error );
+
+ QString name() const;
+ QString service() const;
+ QString sender() const;
+ bool isError() const;
+
+ virtual void append( const QVariant& var );
+
+ operator DBusMessage*() const;
+
+ iterator begin() const;
+ iterator end() const;
+
+ QVariant at( int i );
+
+ protected:
+ DBusMessage* message() const;
+
+ private:
+ struct MessagePrivate;
+ MessagePrivate *d;
+ };
+
+}