|
| QNetworkAccessManager & | network () |
| | Returns a global, threadlocal QNetworkAccessManager.
|
| |
| QNetworkReply * | await (QNetworkReply *reply) |
| | Blocks until reply is finished.
|
| |
| QString | percentEncoded (const QString &string) |
| | Returns string percent encoded.
|
| |
| QString | percentDecoded (const QString &string) |
| | Returns string percent decoded.
|
| |
|
| bool | question (const QString &text, QWidget *parent=nullptr) |
| | Shows a question message box with Yes and No buttons.
|
| |
| void | information (const QString &text, QWidget *parent=nullptr) |
| | Shows an information message box with a single Ok button.
|
| |
| void | warning (const QString &text, QWidget *parent=nullptr) |
| | Shows a warning message box with a single Ok button.
|
| |
| void | critical (const QString &text, QWidget *parent=nullptr) |
| | Shows a critical message box with a single Ok button.
|
| |
|
| void | openUrl (const QString &url) |
| | Opens url with the default handler for the scheme.
|
| |
| void | open (const QUrl &url) |
| | Opens url with the default handler for the scheme.
|
| |
| void | open (const QString &path) |
| | Opens a file at path with the associated default application.
|
| |
| void | open (const std::filesystem::path &path) |
| | Opens a file at path with the associated default application.
|
| |
| void | setClipboardText (const QString &text) |
| | Sets the system clipboard to text.
|
| |
| bool | havePasteSupport () |
| | Returns the true if the platform supports pasting, else false.
|
| |
| void | setClipboardTextAndPaste (const QString &text) |
| | Sets the system clipboard to text and pastes text to the front-most window.
|
| |
| long long | runDetachedProcess (const QStringList &commandline) |
| | Starts the commandline in a new process, and detaches from it.
|
| |
| long long | runDetachedProcess (const QStringList &commandline, const QString &working_dir) |
| | Starts the commandline in a new process, and detaches from it.
|
| |
| QString | toQString (const std::filesystem::path &path) |
| | Returns a QString representation of path.
|
| |
|
| template<typename T , typename GET , typename SET > |
| void | bindWidget (QCheckBox *checkbox, T *object, GET get, SET set) |
| | Binds a property of type bool of object to checkbox.
|
| |
| template<typename T , typename GET , typename SET , typename SIG > |
| void | bindWidget (QCheckBox *checkbox, T *object, GET get, SET set, SIG sig) |
| | Binds a property of type bool of object to checkbox.
|
| |
| template<typename T , typename GET , typename SET > |
| void | bindWidget (QLineEdit *lineedit, T *object, GET get, SET set) |
| | Binds a property of type QString of object to lineedit.
|
| |
| template<typename T , typename GET , typename SET , typename SIG > |
| void | bindWidget (QLineEdit *lineedit, T *object, GET get, SET set, SIG sig) |
| | Binds a property of type QString of object to lineedit.
|
| |
| template<typename T , typename GET , typename SET > |
| void | bindWidget (QSpinBox *spinbox, T *object, GET get, SET set) |
| | Binds a property of type int of object to spinbox.
|
| |
| template<typename T , typename GET , typename SET , typename SIG > |
| void | bindWidget (QSpinBox *spinbox, T *object, GET get, SET set, SIG sig) |
| | Binds a property of type int of object to spinbox.
|
| |
| template<typename T , typename GET , typename SET > |
| void | bindWidget (QDoubleSpinBox *spinbox, T *object, GET get, SET set) |
| | Binds a property of type double of object to spinbox.
|
| |
| template<typename T , typename GET , typename SET , typename SIG > |
| void | bindWidget (QDoubleSpinBox *spinbox, T *object, GET get, SET set, SIG sig) |
| | Binds a property of type double of object to spinbox.
|
| |