summaryrefslogtreecommitdiffstats
path: root/examples/help
diff options
context:
space:
mode:
authorLeena Miettinen <riitta-leena.miettinen@digia.com>2012-12-11 17:31:48 +0100
committerThe Qt Project <gerrit-noreply@qt-project.org>2012-12-12 07:51:36 +0100
commitabbafb2b08f89114763a16b51bc02bacc73cdd97 (patch)
treeba51e468bf9ad205c99dcd882c8ce9f50d876783 /examples/help
parentce7fb448f27af7882a9fac3b73cfc6f8b4760c37 (diff)
Doc: Fix example pages for Qt Tools
Use the \group and \ingroup commands to produce Qt 5 style example pages. Unify the file structure for example docs. Add example page for Qt Help and move Context Sensitive Help example to it (from the Qt Assistant Examples page). Change-Id: I687b18a134037588a5a536fe2353c18dfd44b1d7 Reviewed-by: Jerome Pasion <jerome.pasion@digia.com> Reviewed-by: David Schulz <david.schulz@digia.com>
Diffstat (limited to 'examples/help')
-rw-r--r--examples/help/doc/src/contextsensitivehelp.qdoc35
-rw-r--r--examples/help/help.pro3
-rw-r--r--examples/help/remotecontrol/enter.pngbin315 -> 0 bytes
-rw-r--r--examples/help/remotecontrol/main.cpp53
-rw-r--r--examples/help/remotecontrol/remotecontrol.cpp174
-rw-r--r--examples/help/remotecontrol/remotecontrol.h78
-rw-r--r--examples/help/remotecontrol/remotecontrol.pro12
-rw-r--r--examples/help/remotecontrol/remotecontrol.qrc5
-rw-r--r--examples/help/remotecontrol/remotecontrol.ui228
9 files changed, 36 insertions, 552 deletions
diff --git a/examples/help/doc/src/contextsensitivehelp.qdoc b/examples/help/doc/src/contextsensitivehelp.qdoc
new file mode 100644
index 000000000..2e98cafb6
--- /dev/null
+++ b/examples/help/doc/src/contextsensitivehelp.qdoc
@@ -0,0 +1,35 @@
+/****************************************************************************
+**
+** Copyright (C) 2012 Digia Plc and/or its subsidiary(-ies).
+** Contact: http://www.qt-project.org/legal
+**
+** This file is part of the documentation of the Qt Toolkit.
+**
+** $QT_BEGIN_LICENSE:FDL$
+** Commercial License Usage
+** Licensees holding valid commercial Qt licenses may use this file in
+** accordance with the commercial license agreement provided with the
+** Software or, alternatively, in accordance with the terms contained in
+** a written agreement between you and Digia. For licensing terms and
+** conditions see http://qt.digia.com/licensing. For further information
+** use the contact form at http://qt.digia.com/contact-us.
+**
+** GNU Free Documentation License Usage
+** Alternatively, this file may be used under the terms of the GNU Free
+** Documentation License version 1.3 as published by the Free Software
+** Foundation and appearing in the file included in the packaging of
+** this file. Please review the following information to ensure
+** the GNU Free Documentation License version 1.3 requirements
+** will be met: http://www.gnu.org/copyleft/fdl.html.
+** $QT_END_LICENSE$
+**
+****************************************************************************/
+
+/*!
+ \example contextsensitivehelp
+ \ingroup examples-qthelp
+ \title Context-Sensitive Help Example
+
+ \brief Using the QHelpEngineCore class to implement context-sensitive help
+ for applications.
+*/
diff --git a/examples/help/help.pro b/examples/help/help.pro
index c98aad8a9..49aae931d 100644
--- a/examples/help/help.pro
+++ b/examples/help/help.pro
@@ -1,5 +1,4 @@
TEMPLATE = subdirs
CONFIG += ordered
-SUBDIRS += contextsensitivehelp \
- remotecontrol
+SUBDIRS += contextsensitivehelp
diff --git a/examples/help/remotecontrol/enter.png b/examples/help/remotecontrol/enter.png
deleted file mode 100644
index f397f4b9c..000000000
--- a/examples/help/remotecontrol/enter.png
+++ /dev/null
Binary files differ
diff --git a/examples/help/remotecontrol/main.cpp b/examples/help/remotecontrol/main.cpp
deleted file mode 100644
index a862cb2ad..000000000
--- a/examples/help/remotecontrol/main.cpp
+++ /dev/null
@@ -1,53 +0,0 @@
-/****************************************************************************
-**
-** Copyright (C) 2012 Digia Plc and/or its subsidiary(-ies).
-** Contact: http://www.qt-project.org/legal
-**
-** This file is part of the examples of the Qt Toolkit.
-**
-** $QT_BEGIN_LICENSE:BSD$
-** You may use this file under the terms of the BSD license as follows:
-**
-** "Redistribution and use in source and binary forms, with or without
-** modification, are permitted provided that the following conditions are
-** met:
-** * Redistributions of source code must retain the above copyright
-** notice, this list of conditions and the following disclaimer.
-** * Redistributions in binary form must reproduce the above copyright
-** notice, this list of conditions and the following disclaimer in
-** the documentation and/or other materials provided with the
-** distribution.
-** * Neither the name of Digia Plc and its Subsidiary(-ies) nor the names
-** of its contributors may be used to endorse or promote products derived
-** from this software without specific prior written permission.
-**
-**
-** THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
-** "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
-** LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
-** A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
-** OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
-** SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
-** LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
-** DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
-** THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
-** (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
-** OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE."
-**
-** $QT_END_LICENSE$
-**
-****************************************************************************/
-
-#include <QtWidgets/QApplication>
-#include "remotecontrol.h"
-
-int main(int argc, char *argv[])
-{
- Q_INIT_RESOURCE(remotecontrol);
-
- QApplication a(argc, argv);
- RemoteControl w;
- w.show();
- a.connect(&a, SIGNAL(lastWindowClosed()), &a, SLOT(quit()));
- return a.exec();
-}
diff --git a/examples/help/remotecontrol/remotecontrol.cpp b/examples/help/remotecontrol/remotecontrol.cpp
deleted file mode 100644
index 2569829a5..000000000
--- a/examples/help/remotecontrol/remotecontrol.cpp
+++ /dev/null
@@ -1,174 +0,0 @@
-/****************************************************************************
-**
-** Copyright (C) 2012 Digia Plc and/or its subsidiary(-ies).
-** Contact: http://www.qt-project.org/legal
-**
-** This file is part of the examples of the Qt Toolkit.
-**
-** $QT_BEGIN_LICENSE:BSD$
-** You may use this file under the terms of the BSD license as follows:
-**
-** "Redistribution and use in source and binary forms, with or without
-** modification, are permitted provided that the following conditions are
-** met:
-** * Redistributions of source code must retain the above copyright
-** notice, this list of conditions and the following disclaimer.
-** * Redistributions in binary form must reproduce the above copyright
-** notice, this list of conditions and the following disclaimer in
-** the documentation and/or other materials provided with the
-** distribution.
-** * Neither the name of Digia Plc and its Subsidiary(-ies) nor the names
-** of its contributors may be used to endorse or promote products derived
-** from this software without specific prior written permission.
-**
-**
-** THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
-** "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
-** LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
-** A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
-** OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
-** SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
-** LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
-** DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
-** THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
-** (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
-** OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE."
-**
-** $QT_END_LICENSE$
-**
-****************************************************************************/
-
-#include <QtCore/QDir>
-#include <QtCore/QProcess>
-#include <QtCore/QTextStream>
-#include <QtCore/QLibraryInfo>
-
-#include <QtWidgets/QMessageBox>
-
-#include "remotecontrol.h"
-
-RemoteControl::RemoteControl(QWidget *parent, Qt::WindowFlags flags)
- : QMainWindow(parent, flags)
-{
- ui.setupUi(this);
- connect(ui.indexLineEdit, SIGNAL(returnPressed()),
- this, SLOT(on_indexButton_clicked()));
- connect(ui.identifierLineEdit, SIGNAL(returnPressed()),
- this, SLOT(on_identifierButton_clicked()));
- connect(ui.urlLineEdit, SIGNAL(returnPressed()),
- this, SLOT(on_urlButton_clicked()));
-
- QString rc;
- QTextStream(&rc) << QLatin1String("qthelp://com.trolltech.qt.")
- << (QT_VERSION >> 16) << ((QT_VERSION >> 8) & 0xFF)
- << (QT_VERSION & 0xFF)
- << QLatin1String("/qdoc/index.html");
-
- ui.startUrlLineEdit->setText(rc);
-
- process = new QProcess(this);
- connect(process, SIGNAL(finished(int,QProcess::ExitStatus)),
- this, SLOT(helpViewerClosed()));
-}
-
-RemoteControl::~RemoteControl()
-{
- if (process->state() == QProcess::Running) {
- process->terminate();
- process->waitForFinished(3000);
- }
-}
-
-void RemoteControl::on_actionQuit_triggered()
-{
- close();
-}
-
-void RemoteControl::on_launchButton_clicked()
-{
- if (process->state() == QProcess::Running)
- return;
-
- QString app = QLibraryInfo::location(QLibraryInfo::BinariesPath) + QDir::separator();
-#if !defined(Q_OS_MAC)
- app += QLatin1String("assistant");
-#else
- app += QLatin1String("Assistant.app/Contents/MacOS/Assistant");
-#endif
-
- ui.contentsCheckBox->setChecked(true);
- ui.indexCheckBox->setChecked(true);
- ui.bookmarksCheckBox->setChecked(true);
-
- QStringList args;
- args << QLatin1String("-enableRemoteControl");
- process->start(app, args);
- if (!process->waitForStarted()) {
- QMessageBox::critical(this, tr("Remote Control"),
- tr("Could not start Qt Assistant from %1.").arg(app));
- return;
- }
-
- if (!ui.startUrlLineEdit->text().isEmpty())
- sendCommand(QLatin1String("SetSource ")
- + ui.startUrlLineEdit->text());
-
- ui.launchButton->setEnabled(false);
- ui.startUrlLineEdit->setEnabled(false);
- ui.actionGroupBox->setEnabled(true);
-}
-
-void RemoteControl::sendCommand(const QString &cmd)
-{
- if (process->state() != QProcess::Running)
- return;
- process->write(cmd.toLocal8Bit() + '\n');
-}
-
-void RemoteControl::on_indexButton_clicked()
-{
- sendCommand(QLatin1String("ActivateKeyword ")
- + ui.indexLineEdit->text());
-}
-
-void RemoteControl::on_identifierButton_clicked()
-{
- sendCommand(QLatin1String("ActivateIdentifier ")
- + ui.identifierLineEdit->text());
-}
-
-void RemoteControl::on_urlButton_clicked()
-{
- sendCommand(QLatin1String("SetSource ")
- + ui.urlLineEdit->text());
-}
-
-void RemoteControl::on_syncContentsButton_clicked()
-{
- sendCommand(QLatin1String("SyncContents"));
-}
-
-void RemoteControl::on_contentsCheckBox_toggled(bool checked)
-{
- sendCommand(checked ?
- QLatin1String("Show Contents") : QLatin1String("Hide Contents"));
-}
-
-void RemoteControl::on_indexCheckBox_toggled(bool checked)
-{
- sendCommand(checked ?
- QLatin1String("Show Index") : QLatin1String("Hide Index"));
-}
-
-void RemoteControl::on_bookmarksCheckBox_toggled(bool checked)
-{
- sendCommand(checked ?
- QLatin1String("Show Bookmarks") : QLatin1String("Hide Bookmarks"));
-}
-
-void RemoteControl::helpViewerClosed()
-{
- ui.launchButton->setEnabled(true);
- ui.startUrlLineEdit->setEnabled(true);
- ui.actionGroupBox->setEnabled(false);
-}
diff --git a/examples/help/remotecontrol/remotecontrol.h b/examples/help/remotecontrol/remotecontrol.h
deleted file mode 100644
index ecf50edcb..000000000
--- a/examples/help/remotecontrol/remotecontrol.h
+++ /dev/null
@@ -1,78 +0,0 @@
-/****************************************************************************
-**
-** Copyright (C) 2012 Digia Plc and/or its subsidiary(-ies).
-** Contact: http://www.qt-project.org/legal
-**
-** This file is part of the examples of the Qt Toolkit.
-**
-** $QT_BEGIN_LICENSE:BSD$
-** You may use this file under the terms of the BSD license as follows:
-**
-** "Redistribution and use in source and binary forms, with or without
-** modification, are permitted provided that the following conditions are
-** met:
-** * Redistributions of source code must retain the above copyright
-** notice, this list of conditions and the following disclaimer.
-** * Redistributions in binary form must reproduce the above copyright
-** notice, this list of conditions and the following disclaimer in
-** the documentation and/or other materials provided with the
-** distribution.
-** * Neither the name of Digia Plc and its Subsidiary(-ies) nor the names
-** of its contributors may be used to endorse or promote products derived
-** from this software without specific prior written permission.
-**
-**
-** THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
-** "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
-** LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
-** A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
-** OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
-** SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
-** LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
-** DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
-** THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
-** (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
-** OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE."
-**
-** $QT_END_LICENSE$
-**
-****************************************************************************/
-
-#ifndef REMOTECONTROL_H
-#define REMOTECONTROL_H
-
-#include <QtWidgets/QMainWindow>
-#include "ui_remotecontrol.h"
-
-QT_BEGIN_NAMESPACE
-class QProcess;
-QT_END_NAMESPACE;
-
-class RemoteControl : public QMainWindow
-{
- Q_OBJECT
-
-public:
- RemoteControl(QWidget *parent = 0, Qt::WindowFlags flags = 0);
- ~RemoteControl();
-
-private:
- Ui::RemoteControlClass ui;
- QProcess *process;
-
-private slots:
- void on_launchButton_clicked();
- void on_actionQuit_triggered();
- void on_indexButton_clicked();
- void on_identifierButton_clicked();
- void on_urlButton_clicked();
- void on_syncContentsButton_clicked();
- void on_contentsCheckBox_toggled(bool checked);
- void on_indexCheckBox_toggled(bool checked);
- void on_bookmarksCheckBox_toggled(bool checked);
- void helpViewerClosed();
-
- void sendCommand(const QString &cmd);
-};
-
-#endif // REMOTECONTROL_H
diff --git a/examples/help/remotecontrol/remotecontrol.pro b/examples/help/remotecontrol/remotecontrol.pro
deleted file mode 100644
index 78ce822d8..000000000
--- a/examples/help/remotecontrol/remotecontrol.pro
+++ /dev/null
@@ -1,12 +0,0 @@
-TEMPLATE = app
-QT += widgets
-
-HEADERS += remotecontrol.h
-SOURCES += main.cpp \
- remotecontrol.cpp
-FORMS += remotecontrol.ui
-RESOURCES += remotecontrol.qrc
-
-target.path = $$[QT_INSTALL_EXAMPLES]/help/remotecontrol
-INSTALLS += target
-
diff --git a/examples/help/remotecontrol/remotecontrol.qrc b/examples/help/remotecontrol/remotecontrol.qrc
deleted file mode 100644
index 9b4299d21..000000000
--- a/examples/help/remotecontrol/remotecontrol.qrc
+++ /dev/null
@@ -1,5 +0,0 @@
-<RCC>
- <qresource prefix="/remotecontrol" >
- <file>enter.png</file>
- </qresource>
-</RCC>
diff --git a/examples/help/remotecontrol/remotecontrol.ui b/examples/help/remotecontrol/remotecontrol.ui
deleted file mode 100644
index 1cfc7f540..000000000
--- a/examples/help/remotecontrol/remotecontrol.ui
+++ /dev/null
@@ -1,228 +0,0 @@
-<ui version="4.0" >
- <class>RemoteControlClass</class>
- <widget class="QMainWindow" name="RemoteControlClass" >
- <property name="geometry" >
- <rect>
- <x>0</x>
- <y>0</y>
- <width>344</width>
- <height>364</height>
- </rect>
- </property>
- <property name="windowTitle" >
- <string>RemoteControl</string>
- </property>
- <widget class="QWidget" name="centralWidget" >
- <layout class="QGridLayout" >
- <item row="0" column="0" >
- <widget class="QLabel" name="label" >
- <property name="text" >
- <string>Start URL:</string>
- </property>
- </widget>
- </item>
- <item row="0" column="1" colspan="2" >
- <widget class="QLineEdit" name="startUrlLineEdit" />
- </item>
- <item row="1" column="1" >
- <widget class="QPushButton" name="launchButton" >
- <property name="text" >
- <string>Launch Qt HelpViewer</string>
- </property>
- </widget>
- </item>
- <item row="1" column="2" >
- <spacer>
- <property name="orientation" >
- <enum>Qt::Horizontal</enum>
- </property>
- <property name="sizeHint" >
- <size>
- <width>101</width>
- <height>20</height>
- </size>
- </property>
- </spacer>
- </item>
- <item row="2" column="1" >
- <spacer>
- <property name="orientation" >
- <enum>Qt::Vertical</enum>
- </property>
- <property name="sizeType" >
- <enum>QSizePolicy::Fixed</enum>
- </property>
- <property name="sizeHint" >
- <size>
- <width>113</width>
- <height>16</height>
- </size>
- </property>
- </spacer>
- </item>
- <item row="3" column="0" colspan="3" >
- <widget class="QGroupBox" name="actionGroupBox" >
- <property name="enabled" >
- <bool>false</bool>
- </property>
- <property name="title" >
- <string>Actions</string>
- </property>
- <layout class="QGridLayout" >
- <item row="0" column="0" >
- <widget class="QLabel" name="label_2" >
- <property name="text" >
- <string>Search in Index:</string>
- </property>
- </widget>
- </item>
- <item row="0" column="1" colspan="2" >
- <layout class="QHBoxLayout" >
- <property name="spacing" >
- <number>0</number>
- </property>
- <item>
- <widget class="QLineEdit" name="indexLineEdit" />
- </item>
- <item>
- <widget class="QToolButton" name="indexButton" >
- <property name="text" >
- <string/>
- </property>
- <property name="icon" >
- <iconset resource="remotecontrol.qrc" >:/remotecontrol/enter.png</iconset>
- </property>
- </widget>
- </item>
- </layout>
- </item>
- <item row="1" column="0" >
- <widget class="QLabel" name="label_4" >
- <property name="text" >
- <string>Identifier:</string>
- </property>
- </widget>
- </item>
- <item row="1" column="1" colspan="2" >
- <layout class="QHBoxLayout" >
- <property name="spacing" >
- <number>0</number>
- </property>
- <item>
- <widget class="QLineEdit" name="identifierLineEdit" />
- </item>
- <item>
- <widget class="QToolButton" name="identifierButton" >
- <property name="text" >
- <string/>
- </property>
- <property name="icon" >
- <iconset resource="remotecontrol.qrc" >:/remotecontrol/enter.png</iconset>
- </property>
- </widget>
- </item>
- </layout>
- </item>
- <item row="2" column="0" >
- <widget class="QLabel" name="label_3" >
- <property name="text" >
- <string>Show URL:</string>
- </property>
- </widget>
- </item>
- <item row="2" column="1" colspan="2" >
- <layout class="QHBoxLayout" >
- <property name="spacing" >
- <number>0</number>
- </property>
- <item>
- <widget class="QLineEdit" name="urlLineEdit" />
- </item>
- <item>
- <widget class="QToolButton" name="urlButton" >
- <property name="text" >
- <string/>
- </property>
- <property name="icon" >
- <iconset resource="remotecontrol.qrc" >:/remotecontrol/enter.png</iconset>
- </property>
- </widget>
- </item>
- </layout>
- </item>
- <item row="3" column="1" >
- <widget class="QPushButton" name="syncContentsButton" >
- <property name="text" >
- <string>Sync Contents</string>
- </property>
- </widget>
- </item>
- <item row="3" column="2" >
- <spacer>
- <property name="orientation" >
- <enum>Qt::Horizontal</enum>
- </property>
- <property name="sizeHint" >
- <size>
- <width>81</width>
- <height>20</height>
- </size>
- </property>
- </spacer>
- </item>
- <item row="4" column="0" colspan="3" >
- <widget class="QCheckBox" name="contentsCheckBox" >
- <property name="text" >
- <string>Show Contents</string>
- </property>
- </widget>
- </item>
- <item row="5" column="0" >
- <widget class="QCheckBox" name="indexCheckBox" >
- <property name="text" >
- <string>Show Index</string>
- </property>
- </widget>
- </item>
- <item row="6" column="0" colspan="3" >
- <widget class="QCheckBox" name="bookmarksCheckBox" >
- <property name="text" >
- <string>Show Bookmarks</string>
- </property>
- </widget>
- </item>
- </layout>
- </widget>
- </item>
- </layout>
- </widget>
- <widget class="QMenuBar" name="menuBar" >
- <property name="geometry" >
- <rect>
- <x>0</x>
- <y>0</y>
- <width>344</width>
- <height>21</height>
- </rect>
- </property>
- <widget class="QMenu" name="menuFile" >
- <property name="title" >
- <string>File</string>
- </property>
- <addaction name="actionQuit" />
- </widget>
- <addaction name="menuFile" />
- </widget>
- <widget class="QStatusBar" name="statusBar" />
- <action name="actionQuit" >
- <property name="text" >
- <string>Quit</string>
- </property>
- </action>
- </widget>
- <layoutdefault spacing="6" margin="11" />
- <resources>
- <include location="remotecontrol.qrc" />
- </resources>
- <connections/>
-</ui>