summaryrefslogtreecommitdiffstats
path: root/src/3rdparty/phonon/mmf/objectdump_symbian.h
diff options
context:
space:
mode:
authoraxis <qt-info@nokia.com>2009-11-16 15:42:19 (GMT)
committeraxis <qt-info@nokia.com>2009-11-16 15:42:19 (GMT)
commit9da9339e4ced8d8c54a4585d3e94cbe6a2d9c574 (patch)
treed8975be83884fb9957e01f1d19210b23f0588e4f /src/3rdparty/phonon/mmf/objectdump_symbian.h
parent8d174d68216bf7290b36fa02332e04f1eda829db (diff)
parent6df2f295c7efddac12de87f8bfa347ab28761a6b (diff)
downloadQt-9da9339e4ced8d8c54a4585d3e94cbe6a2d9c574.zip
Qt-9da9339e4ced8d8c54a4585d3e94cbe6a2d9c574.tar.gz
Qt-9da9339e4ced8d8c54a4585d3e94cbe6a2d9c574.tar.bz2
Merge branch '4.6' of git@scm.dev.nokia.troll.no:qt/qt-s60-public into 4.6-staging2
Diffstat (limited to 'src/3rdparty/phonon/mmf/objectdump_symbian.h')
-rw-r--r--src/3rdparty/phonon/mmf/objectdump_symbian.h66
1 files changed, 66 insertions, 0 deletions
diff --git a/src/3rdparty/phonon/mmf/objectdump_symbian.h b/src/3rdparty/phonon/mmf/objectdump_symbian.h
new file mode 100644
index 0000000..563c862
--- /dev/null
+++ b/src/3rdparty/phonon/mmf/objectdump_symbian.h
@@ -0,0 +1,66 @@
+/* This file is part of the KDE project.
+
+Copyright (C) 2009 Nokia Corporation and/or its subsidiary(-ies).
+
+This library is free software: you can redistribute it and/or modify
+it under the terms of the GNU Lesser General Public License as published by
+the Free Software Foundation, either version 2.1 or 3 of the License.
+
+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 Lesser General Public License for more details.
+
+You should have received a copy of the GNU Lesser General Public License
+along with this library. If not, see <http://www.gnu.org/licenses/>.
+
+*/
+
+#ifndef OBJECTDUMP_SYMBIAN_H
+#define OBJECTDUMP_SYMBIAN_H
+
+#include "objectdump.h"
+
+QT_BEGIN_NAMESPACE
+
+namespace ObjectDump
+{
+namespace Symbian
+{
+
+/**
+ * Annotator which returns Symbian-specific widget information
+ */
+class QAnnotatorWidget : public QAnnotator
+{
+ Q_OBJECT
+public:
+ QList<QByteArray> annotation(const QObject& object);
+};
+
+/**
+ * Annotator which returns control information
+ */
+class QAnnotatorControl : public QAnnotator
+{
+ Q_OBJECT
+public:
+ QList<QByteArray> annotation(const QObject& object);
+};
+
+/**
+ * Annotator which returns window information
+ */
+class QAnnotatorWindow : public QAnnotator
+{
+ Q_OBJECT
+public:
+ QList<QByteArray> annotation(const QObject& object);
+};
+
+} // namespace Symbian
+} // namespace ObjectDump
+
+QT_END_NAMESPACE
+
+#endif