source: ogBrowser-Git/src/ogurlhandler.h

jenkins
Last change on this file was 476581b, checked in by Vadim Troshchinskiy Shmelev <vtroshchinskiy@…>, 16 months ago

Add desktop file parser

  • Property mode set to 100644
File size: 1.5 KB
Line 
1#pragma once
2
3#include <QWebEngineUrlSchemeHandler>
4#include <QObject>
5
6#define COMMAND "command"
7#define COMMAND_CONFIRM "command+confirm"
8#define COMMAND_WITH_CONFIRMATION "commandwithconfirmation"  // Backwards compatibility
9#define COMMAND_OUTPUT "command+output"
10#define COMMAND_CONFIRM_OUTPUT "command+confirm+output"
11#define COMMAND_OUTPUT_CONFIRM "command+output+confirm"
12#define ENVIRONMENT "OGLOGFILE,ogactiveadmin,DEFAULTSPEED"
13
14class OGBrowserUrlHandlerCommand : public QWebEngineUrlSchemeHandler {
15    Q_OBJECT
16public:
17
18    OGBrowserUrlHandlerCommand(QObject *parent = nullptr) : QWebEngineUrlSchemeHandler(parent) {
19
20    };
21
22    virtual ~OGBrowserUrlHandlerCommand() {
23
24    };
25
26    virtual void requestStarted(QWebEngineUrlRequestJob *job);
27
28    bool askConfirmation() const { return m_ask_confirmation; }
29    void setAskConfirmation(const bool ask) { m_ask_confirmation = ask; }
30
31    bool returnOuput() const { return m_return_output; }
32    void setReturnOutput(const bool retOutput) { m_return_output = retOutput; }
33
34    QString baseCommand() const { return m_base_command; }
35    void setBaseCommand(const QString &cmd) { m_base_command = cmd; }
36
37    void setScheme(const QString &scheme) { m_scheme = scheme; }
38    const QString getScheme() const { return m_scheme; }
39
40signals:
41    void command(const QString &command, bool confirm, bool returnOutput);
42
43
44private:
45
46    bool m_ask_confirmation = false;
47    bool m_return_output = false;
48    QString m_scheme = "";
49    QString m_base_command = "";
50
51};
52
53
Note: See TracBrowser for help on using the repository browser.