feat: 添加ElaWidgetTool库
This commit is contained in:
30
ElaWidgetTools/ElaNavigationRouter.h
Normal file
30
ElaWidgetTools/ElaNavigationRouter.h
Normal file
@@ -0,0 +1,30 @@
|
||||
#ifndef ELANAVIGATIONROUTER_H
|
||||
#define ELANAVIGATIONROUTER_H
|
||||
|
||||
#include <QObject>
|
||||
#include <QVariantMap>
|
||||
|
||||
#include "ElaDef.h"
|
||||
#include "ElaProperty.h"
|
||||
#include "ElaSingleton.h"
|
||||
|
||||
class ElaNavigationRouterPrivate;
|
||||
class ELA_EXPORT ElaNavigationRouter : public QObject
|
||||
{
|
||||
Q_OBJECT
|
||||
Q_Q_CREATE(ElaNavigationRouter)
|
||||
Q_SINGLETON_CREATE_H(ElaNavigationRouter)
|
||||
Q_PROPERTY_CREATE_Q_H(int, MaxRouteCount)
|
||||
private:
|
||||
explicit ElaNavigationRouter(QObject* parent = nullptr);
|
||||
~ElaNavigationRouter() override;
|
||||
|
||||
Q_SIGNALS:
|
||||
Q_SIGNAL void navigationRouterStateChanged(bool state);
|
||||
|
||||
public:
|
||||
ElaNavigationRouterType::NavigationRouteType navigationRoute(QObject* routeObject, QString routeFunctionName, const QVariantMap& routeData = {}, Qt::ConnectionType connectionType = Qt::AutoConnection);
|
||||
void navigationRouteBack();
|
||||
};
|
||||
|
||||
#endif // ELANAVIGATIONROUTER_H
|
||||
Reference in New Issue
Block a user