mirror of
https://github.com/ModOrganizer2/modorganizer-uibase.git
synced 2026-07-27 14:03:49 -07:00
* Add proper CMake packaging for UIBase. * Add alias mo2::uibase target for uibase. * Add a few string methods to remove boost dependencies.
84 lines
2.4 KiB
C++
84 lines
2.4 KiB
C++
/*
|
|
Mod Organizer shared UI functionality
|
|
|
|
Copyright (C) 2012 Sebastian Herbord. All rights reserved.
|
|
|
|
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 3 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
|
|
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, write to the Free Software
|
|
Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
|
|
*/
|
|
|
|
#ifndef TUTORIALCONTROL_H
|
|
#define TUTORIALCONTROL_H
|
|
|
|
#include "dllimport.h"
|
|
#include <QQuickWidget>
|
|
#include <QRect>
|
|
#include <QWidget>
|
|
#include <utility>
|
|
|
|
namespace MOBase
|
|
{
|
|
|
|
class TutorialManager;
|
|
|
|
class QDLLEXPORT TutorialControl : public QObject
|
|
{
|
|
Q_OBJECT
|
|
public:
|
|
TutorialControl(const TutorialControl& reference);
|
|
TutorialControl(QWidget* targetControl, const QString& name);
|
|
|
|
~TutorialControl();
|
|
|
|
void registerControl();
|
|
void resize(const QSize& size);
|
|
|
|
void expose(const QString& widgetName, QObject* widget);
|
|
|
|
void startTutorial(const QString& tutorial);
|
|
|
|
Q_INVOKABLE void finish();
|
|
Q_INVOKABLE QRect getRect(const QString& widgetName);
|
|
Q_INVOKABLE QRect getActionRect(const QString& widgetName);
|
|
Q_INVOKABLE QRect getMenuRect(const QString& widgetName);
|
|
Q_INVOKABLE QWidget* getChild(const QString& name);
|
|
Q_INVOKABLE bool waitForButton(const QString& buttonName);
|
|
Q_INVOKABLE bool waitForAction(const QString& actionName);
|
|
Q_INVOKABLE bool waitForTabOpen(const QString& tabControlName, const QString& tab);
|
|
Q_INVOKABLE const QString getTabName(const QString& tabControlName);
|
|
Q_INVOKABLE void lockUI(bool locked);
|
|
Q_INVOKABLE void simulateClick(int x, int y);
|
|
|
|
private slots:
|
|
|
|
void tabChangedProxy(int selected);
|
|
void nextTutorialStepProxy();
|
|
|
|
private:
|
|
QWidget* m_TargetControl;
|
|
QString m_Name;
|
|
QQuickWidget* m_TutorialView;
|
|
|
|
TutorialManager& m_Manager;
|
|
|
|
std::vector<std::pair<QString, QObject*>> m_ExposedObjects;
|
|
QList<QMetaObject::Connection> m_Connections;
|
|
int m_ExpectedTab;
|
|
QWidget* m_CurrentClickControl;
|
|
};
|
|
|
|
} // namespace MOBase
|
|
|
|
#endif // TUTORIALCONTROL_H
|