Compare commits
3 Commits
c0be5c4b23
...
b235513f70
Author | SHA1 | Date |
---|---|---|
|
b235513f70 | |
|
542055796d | |
|
4a6febadf2 |
|
@ -31,6 +31,7 @@ Thumbs.db
|
|||
*.rc
|
||||
*.deb
|
||||
*.rpm
|
||||
RC*
|
||||
!app.rc
|
||||
!favicon.rc
|
||||
|
||||
|
|
|
@ -7,9 +7,6 @@
|
|||
[submodule "3rdparty/AngelScript"]
|
||||
path = 3rdparty/AngelScript
|
||||
url = git@github.com:Wing-summer/AngelScript.git
|
||||
[submodule "3rdparty/SingleApplication"]
|
||||
path = 3rdparty/SingleApplication
|
||||
url = git@github.com:itay-grudev/SingleApplication.git
|
||||
[submodule "3rdparty/json"]
|
||||
path = 3rdparty/json
|
||||
url = git@github.com:nlohmann/json.git
|
||||
|
|
|
@ -1 +1 @@
|
|||
Subproject commit 57ef77e4793ca14f448f485f52392ab0eefe968b
|
||||
Subproject commit 387b48653eb0840765bcbf24773de50ed632ad59
|
|
@ -4,7 +4,6 @@
|
|||
#include "control/qcodecompletionwidget.h"
|
||||
#include "qdocumentline.h"
|
||||
#include "qformatscheme.h"
|
||||
#include "utilities.h"
|
||||
|
||||
#include "QConsoleIODevice.h"
|
||||
|
||||
|
@ -291,11 +290,6 @@ void QConsoleWidget::replaceCommandLine(const QString &str) {
|
|||
setCursor(bcursor);
|
||||
}
|
||||
|
||||
QString QConsoleWidget::getHistoryPath() {
|
||||
QDir dir(Utilities::getAppDataPath());
|
||||
return dir.absoluteFilePath(QStringLiteral(".command_history.lst"));
|
||||
}
|
||||
|
||||
void QConsoleWidget::write(const QString &message, const QString &sfmtID) {
|
||||
auto tc = cursor();
|
||||
auto ascom = dynamic_cast<AsCompletion *>(completionEngine());
|
||||
|
@ -350,23 +344,9 @@ void QConsoleWidget::writeStdErr(const QString &s) {
|
|||
QConsoleWidget::History QConsoleWidget::history_;
|
||||
|
||||
QConsoleWidget::History::History(void)
|
||||
: pos_(0), active_(false), maxsize_(10000) {
|
||||
QFile f(QConsoleWidget::getHistoryPath());
|
||||
if (f.open(QFile::ReadOnly)) {
|
||||
QTextStream is(&f);
|
||||
while (!is.atEnd())
|
||||
add(is.readLine());
|
||||
}
|
||||
}
|
||||
QConsoleWidget::History::~History(void) {
|
||||
QFile f(QConsoleWidget::getHistoryPath());
|
||||
if (f.open(QFile::WriteOnly | QFile::Truncate)) {
|
||||
QTextStream os(&f);
|
||||
int n = strings_.size();
|
||||
while (n > 0)
|
||||
os << strings_.at(--n) << Qt::endl;
|
||||
}
|
||||
}
|
||||
: pos_(0), active_(false), maxsize_(10000) {}
|
||||
|
||||
QConsoleWidget::History::~History(void) {}
|
||||
|
||||
void QConsoleWidget::History::add(const QString &str) {
|
||||
active_ = false;
|
||||
|
|
|
@ -12,6 +12,26 @@ class QConsoleIODevice;
|
|||
class QConsoleWidget : public QEditor {
|
||||
Q_OBJECT
|
||||
|
||||
public:
|
||||
struct History {
|
||||
QStringList strings_;
|
||||
int pos_;
|
||||
QString token_;
|
||||
bool active_;
|
||||
int maxsize_;
|
||||
History(void);
|
||||
~History(void);
|
||||
void add(const QString &str);
|
||||
const QString ¤tValue() const {
|
||||
return pos_ == -1 ? token_ : strings_.at(pos_);
|
||||
}
|
||||
void activate(const QString &tk = QString());
|
||||
void deactivate() { active_ = false; }
|
||||
bool isActive() const { return active_; }
|
||||
bool move(bool dir);
|
||||
int indexOf(bool dir, int from) const;
|
||||
};
|
||||
|
||||
public:
|
||||
enum ConsoleMode { Input, Output };
|
||||
Q_ENUM(ConsoleMode)
|
||||
|
@ -28,7 +48,7 @@ public:
|
|||
// write a formatted message to the console
|
||||
void write(const QString &message, const QString &sfmtID = {}) override;
|
||||
|
||||
static const QStringList &history() { return history_.strings_; }
|
||||
static History &history() { return history_; }
|
||||
|
||||
// get the current command line
|
||||
QString getCommandLine();
|
||||
|
@ -62,32 +82,11 @@ protected:
|
|||
// replace the command line
|
||||
void replaceCommandLine(const QString &str);
|
||||
|
||||
static QString getHistoryPath();
|
||||
|
||||
// QEditor interface
|
||||
public slots:
|
||||
virtual void cut() override;
|
||||
|
||||
private:
|
||||
struct History {
|
||||
QStringList strings_;
|
||||
int pos_;
|
||||
QString token_;
|
||||
bool active_;
|
||||
int maxsize_;
|
||||
History(void);
|
||||
~History(void);
|
||||
void add(const QString &str);
|
||||
const QString ¤tValue() const {
|
||||
return pos_ == -1 ? token_ : strings_.at(pos_);
|
||||
}
|
||||
void activate(const QString &tk = QString());
|
||||
void deactivate() { active_ = false; }
|
||||
bool isActive() const { return active_; }
|
||||
bool move(bool dir);
|
||||
int indexOf(bool dir, int from) const;
|
||||
};
|
||||
|
||||
static History history_;
|
||||
ConsoleMode mode_;
|
||||
QDocumentCursor inpos_;
|
||||
|
|
|
@ -0,0 +1,32 @@
|
|||
#include "commandhistorymanager.h"
|
||||
|
||||
#include "utilities.h"
|
||||
|
||||
#include <QTextStream>
|
||||
|
||||
QStringList CommandHistoryManager::load() {
|
||||
QStringList ret;
|
||||
QFile f(getHistoryPath());
|
||||
if (f.open(QFile::ReadOnly)) {
|
||||
QTextStream is(&f);
|
||||
while (!is.atEnd()) {
|
||||
ret.append(is.readLine());
|
||||
}
|
||||
}
|
||||
return ret;
|
||||
}
|
||||
|
||||
void CommandHistoryManager::save(const QStringList &strings) {
|
||||
QFile f(getHistoryPath());
|
||||
if (f.open(QFile::WriteOnly | QFile::Truncate)) {
|
||||
QTextStream os(&f);
|
||||
int n = strings.size();
|
||||
while (n > 0)
|
||||
os << strings.at(--n) << Qt::endl;
|
||||
}
|
||||
}
|
||||
|
||||
QString CommandHistoryManager::getHistoryPath() {
|
||||
QDir dir(Utilities::getAppDataPath());
|
||||
return dir.absoluteFilePath(QStringLiteral(".command_history.lst"));
|
||||
}
|
|
@ -0,0 +1,16 @@
|
|||
#ifndef COMMANDHISTORYMANAGER_H
|
||||
#define COMMANDHISTORYMANAGER_H
|
||||
|
||||
#include <QStringList>
|
||||
|
||||
class CommandHistoryManager {
|
||||
public:
|
||||
static QStringList load();
|
||||
|
||||
static void save(const QStringList &strings);
|
||||
|
||||
private:
|
||||
static QString getHistoryPath();
|
||||
};
|
||||
|
||||
#endif // COMMANDHISTORYMANAGER_H
|
|
@ -125,6 +125,7 @@ void QHexCursor::select(qsizetype line, int column, int nibbleindex,
|
|||
if (modes.testFlag(SelectionPreview)) {
|
||||
m_selection.line = line;
|
||||
m_selection.column = qMax(0, column); // fix the bug by wingsummer
|
||||
m_selection.lineWidth = m_position.lineWidth;
|
||||
m_selection.nibbleindex = nibbleindex;
|
||||
|
||||
modes.setFlag(SelectionPreview, false);
|
||||
|
@ -136,6 +137,7 @@ void QHexCursor::select(qsizetype line, int column, int nibbleindex,
|
|||
|
||||
sel.end.line = line;
|
||||
sel.end.column = column;
|
||||
sel.end.lineWidth = m_position.lineWidth;
|
||||
sel.end.nibbleindex = nibbleindex;
|
||||
|
||||
sel.normalize();
|
||||
|
|
|
@ -41,9 +41,9 @@ void QHexRenderer::setAddressVisible(bool b) {
|
|||
|
||||
QString QHexRenderer::encoding() {
|
||||
#if QT_VERSION >= QT_VERSION_CHECK(6, 0, 0)
|
||||
if (m_encoding.compare(QStringLiteral("ASCII"), Qt::CaseInsensitive))
|
||||
if (m_encoding.compare(QStringLiteral("ISO-8859-1"), Qt::CaseInsensitive))
|
||||
return m_encoding;
|
||||
return QStringLiteral("ISO-8859-1");
|
||||
return QStringLiteral("ASCII");
|
||||
#else
|
||||
return m_encoding;
|
||||
#endif
|
||||
|
|
|
@ -134,7 +134,7 @@ private:
|
|||
void drawAddress(QPainter *painter, const QRect &linerect, qsizetype line);
|
||||
void drawHex(QPainter *painter, const QRect &linerect, qsizetype line);
|
||||
void drawString(QPainter *painter, const QRect &linerect, qsizetype line,
|
||||
QString encoding = "ASCII");
|
||||
QString encoding);
|
||||
void drawHeader(QPainter *painter);
|
||||
|
||||
private:
|
||||
|
|
|
@ -759,9 +759,9 @@ void QHexView::moveNext(bool select) {
|
|||
if (select)
|
||||
cur->select(line, std::min(m_renderer->hexLineWidth() - 1, int(column)),
|
||||
nibbleindex, QHexCursor::SelectionAdd);
|
||||
else
|
||||
cur->moveTo(line, std::min(m_renderer->hexLineWidth() - 1, int(column)),
|
||||
nibbleindex);
|
||||
|
||||
cur->moveTo(line, std::min(m_renderer->hexLineWidth() - 1, int(column)),
|
||||
nibbleindex);
|
||||
}
|
||||
|
||||
void QHexView::movePrevious(bool select) {
|
||||
|
@ -796,9 +796,10 @@ void QHexView::movePrevious(bool select) {
|
|||
}
|
||||
|
||||
if (select)
|
||||
cur->select(line, std::max(0, column), nibbleindex);
|
||||
else
|
||||
cur->moveTo(line, std::max(0, column), nibbleindex);
|
||||
cur->select(line, std::max(0, column), nibbleindex,
|
||||
QHexCursor::SelectionAdd);
|
||||
|
||||
cur->moveTo(line, std::max(0, column), nibbleindex);
|
||||
}
|
||||
|
||||
QHexCursor::SelectionMode QHexView::getSelectionMode() const {
|
||||
|
|
|
@ -182,28 +182,28 @@ QByteArray escapedString(const QString &s) {
|
|||
|
||||
QJsonModel::QJsonModel(QObject *parent)
|
||||
: QAbstractItemModel(parent), mRootItem{new QJsonTreeItem} {
|
||||
mHeaders.append("key");
|
||||
mHeaders.append("value");
|
||||
mHeaders.append(tr("key"));
|
||||
mHeaders.append(tr("value"));
|
||||
}
|
||||
|
||||
QJsonModel::QJsonModel(const QString &fileName, QObject *parent)
|
||||
: QAbstractItemModel(parent), mRootItem{new QJsonTreeItem} {
|
||||
mHeaders.append("key");
|
||||
mHeaders.append("value");
|
||||
mHeaders.append(tr("key"));
|
||||
mHeaders.append(tr("value"));
|
||||
load(fileName);
|
||||
}
|
||||
|
||||
QJsonModel::QJsonModel(QIODevice *device, QObject *parent)
|
||||
: QAbstractItemModel(parent), mRootItem{new QJsonTreeItem} {
|
||||
mHeaders.append("key");
|
||||
mHeaders.append("value");
|
||||
mHeaders.append(tr("key"));
|
||||
mHeaders.append(tr("value"));
|
||||
load(device);
|
||||
}
|
||||
|
||||
QJsonModel::QJsonModel(const QByteArray &json, QObject *parent)
|
||||
: QAbstractItemModel(parent), mRootItem{new QJsonTreeItem} {
|
||||
mHeaders.append("key");
|
||||
mHeaders.append("value");
|
||||
mHeaders.append(tr("key"));
|
||||
mHeaders.append(tr("value"));
|
||||
loadJson(json);
|
||||
}
|
||||
|
||||
|
@ -225,7 +225,12 @@ bool QJsonModel::load(const QString &fileName) {
|
|||
bool QJsonModel::load(QIODevice *device) { return loadJson(device->readAll()); }
|
||||
|
||||
bool QJsonModel::loadJson(const QByteArray &json) {
|
||||
auto const &jdoc = QJsonDocument::fromJson(json);
|
||||
QJsonParseError error;
|
||||
auto const &jdoc = QJsonDocument::fromJson(json, &error);
|
||||
|
||||
if (error.error != QJsonParseError::NoError) {
|
||||
return false;
|
||||
}
|
||||
|
||||
if (!jdoc.isNull()) {
|
||||
beginResetModel();
|
||||
|
|
|
@ -1 +1 @@
|
|||
Subproject commit b3e7421d4a55ce85124db2e2ae712040cc758f0a
|
||||
Subproject commit 147afda646faa0a8b10309dd2716b961bcb54051
|
|
@ -1 +0,0 @@
|
|||
Subproject commit 494772e98cef0aa88124f154feb575cc60b08b38
|
|
@ -1 +1 @@
|
|||
Subproject commit a006a7a48bb30a247f0344b788c62c2806edd90b
|
||||
Subproject commit 663058e7d18241338aec42846d4f77995275ccf6
|
|
@ -0,0 +1,31 @@
|
|||
cmake_minimum_required(VERSION 3.12.0)
|
||||
|
||||
project(QtSingleApplication LANGUAGES CXX)
|
||||
|
||||
set(CMAKE_AUTOUIC ON)
|
||||
set(CMAKE_AUTOMOC ON)
|
||||
set(CMAKE_AUTORCC ON)
|
||||
|
||||
set(CMAKE_CXX_STANDARD 17)
|
||||
set(CMAKE_CXX_STANDARD_REQUIRED ON)
|
||||
|
||||
find_package(QT NAMES Qt6 Qt5 REQUIRED COMPONENTS Core Gui Widgets Network)
|
||||
find_package(Qt${QT_VERSION_MAJOR} REQUIRED COMPONENTS Core Gui Widgets Network)
|
||||
|
||||
add_library(
|
||||
${PROJECT_NAME} STATIC
|
||||
src/qtlocalpeer.h
|
||||
src/qtsingleapplication.h
|
||||
src/qtsinglecoreapplication.h
|
||||
src/qtlocalpeer.cpp
|
||||
src/qtsingleapplication.cpp
|
||||
src/qtsinglecoreapplication.cpp
|
||||
src/qtlockedfile.h
|
||||
src/qtlockedfile.cpp)
|
||||
|
||||
target_link_libraries(
|
||||
${PROJECT_NAME}
|
||||
PRIVATE Qt${QT_VERSION_MAJOR}::Core Qt${QT_VERSION_MAJOR}::Network
|
||||
Qt${QT_VERSION_MAJOR}::Widgets Qt${QT_VERSION_MAJOR}::Gui)
|
||||
|
||||
add_library(${PROJECT_NAME}::${PROJECT_NAME} ALIAS ${PROJECT_NAME})
|
|
@ -0,0 +1,254 @@
|
|||
INSTALLATION INSTRUCTIONS
|
||||
|
||||
These instructions refer to the package you are installing as
|
||||
some-package.tar.gz or some-package.zip. The .zip file is intended for use
|
||||
on Windows.
|
||||
|
||||
The directory you choose for the installation will be referred to as
|
||||
your-install-dir.
|
||||
|
||||
Note to Qt Visual Studio Integration users: In the instructions below,
|
||||
instead of building from command line with nmake, you can use the menu
|
||||
command 'Qt->Open Solution from .pro file' on the .pro files in the
|
||||
example and plugin directories, and then build from within Visual
|
||||
Studio.
|
||||
|
||||
Unpacking and installation
|
||||
--------------------------
|
||||
|
||||
1. Unpacking the archive (if you have not done so already).
|
||||
|
||||
On Unix and Mac OS X (in a terminal window):
|
||||
|
||||
cd your-install-dir
|
||||
gunzip some-package.tar.gz
|
||||
tar xvf some-package.tar
|
||||
|
||||
This creates the subdirectory some-package containing the files.
|
||||
|
||||
On Windows:
|
||||
|
||||
Unpack the .zip archive by right-clicking it in explorer and
|
||||
choosing "Extract All...". If your version of Windows does not
|
||||
have zip support, you can use the infozip tools available
|
||||
from www.info-zip.org.
|
||||
|
||||
If you are using the infozip tools (in a command prompt window):
|
||||
cd your-install-dir
|
||||
unzip some-package.zip
|
||||
|
||||
2. Configuring the package.
|
||||
|
||||
The configure script is called "configure" on unix/mac and
|
||||
"configure.bat" on Windows. It should be run from a command line
|
||||
after cd'ing to the package directory.
|
||||
|
||||
You can choose whether you want to use the component by including
|
||||
its source code directly into your project, or build the component
|
||||
as a dynamic shared library (DLL) that is loaded into the
|
||||
application at run-time. The latter may be preferable for
|
||||
technical or licensing (LGPL) reasons. If you want to build a DLL,
|
||||
run the configure script with the argument "-library". Also see
|
||||
the note about usage below.
|
||||
|
||||
(Components that are Qt plugins, e.g. styles and image formats,
|
||||
are by default built as a plugin DLL.)
|
||||
|
||||
The configure script will prompt you in some cases for further
|
||||
information. Answer these questions and carefully read the license text
|
||||
before accepting the license conditions. The package cannot be used if
|
||||
you do not accept the license conditions.
|
||||
|
||||
3. Building the component and examples (when required).
|
||||
|
||||
If a DLL is to be built, or if you would like to build the
|
||||
examples, next give the commands
|
||||
|
||||
qmake
|
||||
make [or nmake if your are using Microsoft Visual C++]
|
||||
|
||||
The example program(s) can be found in the directory called
|
||||
"examples" or "example".
|
||||
|
||||
Components that are Qt plugins, e.g. styles and image formats, are
|
||||
ready to be used as soon as they are built, so the rest of this
|
||||
installation instruction can be skipped.
|
||||
|
||||
4. Building the Qt Designer plugin (optional).
|
||||
|
||||
Some of the widget components are provided with plugins for Qt
|
||||
Designer. To build and install the plugin, cd into the
|
||||
some-package/plugin directory and give the commands
|
||||
|
||||
qmake
|
||||
make [or nmake if your are using Microsoft Visual C++]
|
||||
|
||||
Restart Qt Designer to make it load the new widget plugin.
|
||||
|
||||
Note: If you are using the built-in Qt Designer from the Qt Visual
|
||||
Studio Integration, you will need to manually copy the plugin DLL
|
||||
file, i.e. copy
|
||||
%QTDIR%\plugins\designer\some-component.dll
|
||||
to the Qt Visual Studio Integration plugin path, typically:
|
||||
C:\Program Files\Trolltech\Qt VS Integration\plugins
|
||||
|
||||
Note: If you for some reason are using a Qt Designer that is built
|
||||
in debug mode, you will need to build the plugin in debug mode
|
||||
also. Edit the file plugin.pro in the plugin directory, changing
|
||||
'release' to 'debug' in the CONFIG line, before running qmake.
|
||||
|
||||
|
||||
|
||||
Solutions components are intended to be used directly from the package
|
||||
directory during development, so there is no 'make install' procedure.
|
||||
|
||||
|
||||
Using a component in your project
|
||||
---------------------------------
|
||||
|
||||
To use this component in your project, add the following line to the
|
||||
project's .pro file (or do the equivalent in your IDE):
|
||||
|
||||
include(your-install-dir/some-package/src/some-package.pri)
|
||||
|
||||
This adds the package's sources and headers to the SOURCES and HEADERS
|
||||
project variables respectively (or, if the component has been
|
||||
configured as a DLL, it adds that library to the LIBS variable), and
|
||||
updates INCLUDEPATH to contain the package's src
|
||||
directory. Additionally, the .pri file may include some dependencies
|
||||
needed by the package.
|
||||
|
||||
To include a header file from the package in your sources, you can now
|
||||
simply use:
|
||||
|
||||
#include <SomeClass>
|
||||
|
||||
or alternatively, in pre-Qt 4 style:
|
||||
|
||||
#include <some-class.h>
|
||||
|
||||
Refer to the documentation to see the classes and headers this
|
||||
components provides.
|
||||
|
||||
|
||||
|
||||
Install documentation (optional)
|
||||
--------------------------------
|
||||
|
||||
The HTML documentation for the package's classes is located in the
|
||||
your-install-dir/some-package/doc/html/index.html. You can open this
|
||||
file and read the documentation with any web browser.
|
||||
|
||||
To install the documentation into Qt Assistant (for Qt version 4.4 and
|
||||
later):
|
||||
|
||||
1. In Assistant, open the Edit->Preferences dialog and choose the
|
||||
Documentation tab. Click the Add... button and select the file
|
||||
your-install-dir/some-package/doc/html/some-package.qch
|
||||
|
||||
For Qt versions prior to 4.4, do instead the following:
|
||||
|
||||
1. The directory your-install-dir/some-package/doc/html contains a
|
||||
file called some-package.dcf. Execute the following commands in a
|
||||
shell, command prompt or terminal window:
|
||||
|
||||
cd your-install-dir/some-package/doc/html/
|
||||
assistant -addContentFile some-package.dcf
|
||||
|
||||
The next time you start Qt Assistant, you can access the package's
|
||||
documentation.
|
||||
|
||||
|
||||
Removing the documentation from assistant
|
||||
-----------------------------------------
|
||||
|
||||
If you have installed the documentation into Qt Assistant, and want to uninstall it, do as follows, for Qt version 4.4 and later:
|
||||
|
||||
1. In Assistant, open the Edit->Preferences dialog and choose the
|
||||
Documentation tab. In the list of Registered Documentation, select
|
||||
the item com.nokia.qtsolutions.some-package_version, and click
|
||||
the Remove button.
|
||||
|
||||
For Qt versions prior to 4.4, do instead the following:
|
||||
|
||||
1. The directory your-install-dir/some-package/doc/html contains a
|
||||
file called some-package.dcf. Execute the following commands in a
|
||||
shell, command prompt or terminal window:
|
||||
|
||||
cd your-install-dir/some-package/doc/html/
|
||||
assistant -removeContentFile some-package.dcf
|
||||
|
||||
|
||||
|
||||
Using the component as a DLL
|
||||
----------------------------
|
||||
|
||||
1. Normal components
|
||||
|
||||
The shared library (DLL) is built and placed in the
|
||||
some-package/lib directory. It is intended to be used directly
|
||||
from there during development. When appropriate, both debug and
|
||||
release versions are built, since the run-time linker will in some
|
||||
cases refuse to load a debug-built DLL into a release-built
|
||||
application or vice versa.
|
||||
|
||||
The following steps are taken by default to help the dynamic
|
||||
linker to locate the DLL at run-time (during development):
|
||||
|
||||
Unix: The some-package.pri file will add linker instructions to
|
||||
add the some-package/lib directory to the rpath of the
|
||||
executable. (When distributing, or if your system does not support
|
||||
rpath, you can copy the shared library to another place that is
|
||||
searched by the dynamic linker, e.g. the "lib" directory of your
|
||||
Qt installation.)
|
||||
|
||||
Mac: The full path to the library is hardcoded into the library
|
||||
itself, from where it is copied into the executable at link time,
|
||||
and ready by the dynamic linker at run-time. (When distributing,
|
||||
you will want to edit these hardcoded paths in the same way as for
|
||||
the Qt DLLs. Refer to the document "Deploying an Application on
|
||||
Mac OS X" in the Qt Reference Documentation.)
|
||||
|
||||
Windows: the .dll file(s) are copied into the "bin" directory of
|
||||
your Qt installation. The Qt installation will already have set up
|
||||
that directory to be searched by the dynamic linker.
|
||||
|
||||
|
||||
2. Plugins
|
||||
|
||||
For Qt Solutions plugins (e.g. image formats), both debug and
|
||||
release versions of the plugin are built by default when
|
||||
appropriate, since in some cases the release Qt library will not
|
||||
load a debug plugin, and vice versa. The plugins are automatically
|
||||
copied into the plugins directory of your Qt installation when
|
||||
built, so no further setup is required.
|
||||
|
||||
Plugins may also be built statically, i.e. as a library that will be
|
||||
linked into your application executable, and so will not need to
|
||||
be redistributed as a separate plugin DLL to end users. Static
|
||||
building is required if Qt itself is built statically. To do it,
|
||||
just add "static" to the CONFIG variable in the plugin/plugin.pro
|
||||
file before building. Refer to the "Static Plugins" section in the
|
||||
chapter "How to Create Qt Plugins" for explanation of how to use a
|
||||
static plugin in your application. The source code of the example
|
||||
program(s) will also typically contain the relevant instructions
|
||||
as comments.
|
||||
|
||||
|
||||
|
||||
Uninstalling
|
||||
------------
|
||||
|
||||
The following command will remove any fils that have been
|
||||
automatically placed outside the package directory itself during
|
||||
installation and building
|
||||
|
||||
make distclean [or nmake if your are using Microsoft Visual C++]
|
||||
|
||||
If Qt Assistant documentation or Qt Designer plugins have been
|
||||
installed, they can be uninstalled manually, ref. above.
|
||||
|
||||
|
||||
Enjoy! :)
|
||||
|
||||
- The Qt Solutions Team.
|
|
@ -0,0 +1,33 @@
|
|||
Qt Solutions Component: Single Application
|
||||
|
||||
The QtSingleApplication component provides support for
|
||||
applications that can be only started once per user.
|
||||
|
||||
|
||||
|
||||
Version history:
|
||||
|
||||
2.0: - Version 1.3 ported to Qt 4.
|
||||
|
||||
2.1: - Fix compilation problem on Mac.
|
||||
|
||||
2.2: - Really fix the Mac compilation problem.
|
||||
- Mac: fix crash due to wrong object releasing.
|
||||
- Mac: Fix memory leak.
|
||||
|
||||
2.3: - Windows: Force creation of internal widget to make it work
|
||||
with Qt 4.2.
|
||||
|
||||
2.4: - Fix the system for automatic window raising on message
|
||||
reception. NOTE: minor API change.
|
||||
|
||||
2.5: - Mac: Fix isRunning() to work and report correctly.
|
||||
|
||||
2.6: - - initialize() is now obsolete, no longer necessary to call
|
||||
it
|
||||
- - Fixed race condition where multiple instances migth be started
|
||||
- - QtSingleCoreApplication variant provided for non-GUI (console)
|
||||
usage
|
||||
- Complete reimplementation. Visible changes:
|
||||
- LGPL release.
|
||||
|
|
@ -0,0 +1,14 @@
|
|||
exists(config.pri):infile(config.pri, SOLUTIONS_LIBRARY, yes): CONFIG += qtsingleapplication-uselib
|
||||
|
||||
TEMPLATE += fakelib
|
||||
greaterThan(QT_MAJOR_VERSION, 5)|\
|
||||
if(equals(QT_MAJOR_VERSION, 5):greaterThan(QT_MINOR_VERSION, 4))|\
|
||||
if(equals(QT_MAJOR_VERSION, 5):equals(QT_MINOR_VERSION, 4):greaterThan(QT_PATCH_VERSION, 1)) {
|
||||
QTSINGLEAPPLICATION_LIBNAME = $$qt5LibraryTarget(QtSolutions_SingleApplication-head)
|
||||
} else {
|
||||
QTSINGLEAPPLICATION_LIBNAME = $$qtLibraryTarget(QtSolutions_SingleApplication-head)
|
||||
}
|
||||
TEMPLATE -= fakelib
|
||||
|
||||
QTSINGLEAPPLICATION_LIBDIR = $$PWD/lib
|
||||
unix:qtsingleapplication-uselib:!qtsingleapplication-buildlib:QMAKE_RPATHDIR += $$QTSINGLEAPPLICATION_LIBDIR
|
|
@ -0,0 +1,25 @@
|
|||
#!/bin/sh
|
||||
|
||||
if [ "x$1" != "x" -a "x$1" != "x-library" ]; then
|
||||
echo "Usage: $0 [-library]"
|
||||
echo
|
||||
echo "-library: Build the component as a dynamic library (DLL). Default is to"
|
||||
echo " include the component source code directly in the application."
|
||||
echo
|
||||
exit 0
|
||||
fi
|
||||
|
||||
rm -f config.pri
|
||||
if [ "x$1" = "x-library" ]; then
|
||||
echo "Configuring to build this component as a dynamic library."
|
||||
echo "SOLUTIONS_LIBRARY = yes" > config.pri
|
||||
fi
|
||||
|
||||
echo
|
||||
echo "This component is now configured."
|
||||
echo
|
||||
echo "To build the component library (if requested) and example(s),"
|
||||
echo "run qmake and your make command."
|
||||
echo
|
||||
echo "To remove or reconfigure, run make distclean."
|
||||
echo
|
|
@ -0,0 +1,43 @@
|
|||
:: Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies).
|
||||
:: SPDX-License-Identifier: BSD-3-Clause
|
||||
|
||||
@echo off
|
||||
|
||||
rem
|
||||
rem "Main"
|
||||
rem
|
||||
|
||||
if not "%1"=="" (
|
||||
if not "%1"=="-library" (
|
||||
call :PrintUsage
|
||||
goto EOF
|
||||
)
|
||||
)
|
||||
|
||||
if exist config.pri. del config.pri
|
||||
if "%1"=="-library" (
|
||||
echo Configuring to build this component as a dynamic library.
|
||||
echo SOLUTIONS_LIBRARY = yes > config.pri
|
||||
)
|
||||
|
||||
echo .
|
||||
echo This component is now configured.
|
||||
echo .
|
||||
echo To build the component library (if requested) and example(s),
|
||||
echo run qmake and your make or nmake command.
|
||||
echo .
|
||||
echo To remove or reconfigure, run make (nmake) distclean.
|
||||
echo .
|
||||
goto EOF
|
||||
|
||||
:PrintUsage
|
||||
echo Usage: configure.bat [-library]
|
||||
echo .
|
||||
echo -library: Build the component as a dynamic library (DLL). Default is to
|
||||
echo include the component source directly in the application.
|
||||
echo A DLL may be preferable for technical or licensing (LGPL) reasons.
|
||||
echo .
|
||||
goto EOF
|
||||
|
||||
|
||||
:EOF
|
|
@ -0,0 +1,284 @@
|
|||
BODY,H1,H2,H3,H4,H5,H6,P,CENTER,TD,TH,UL,DL,DIV {
|
||||
font-family: Arial, Geneva, Helvetica, sans-serif;
|
||||
}
|
||||
H1 {
|
||||
text-align: center;
|
||||
font-size: 160%;
|
||||
}
|
||||
H2 {
|
||||
font-size: 120%;
|
||||
}
|
||||
H3 {
|
||||
font-size: 100%;
|
||||
}
|
||||
|
||||
h3.fn,span.fn
|
||||
{
|
||||
background-color: #eee;
|
||||
border-width: 1px;
|
||||
border-style: solid;
|
||||
border-color: #ddd;
|
||||
font-weight: bold;
|
||||
padding: 6px 0px 6px 10px;
|
||||
margin: 42px 0px 0px 0px;
|
||||
}
|
||||
|
||||
hr {
|
||||
border: 0;
|
||||
color: #a0a0a0;
|
||||
background-color: #ccc;
|
||||
height: 1px;
|
||||
width: 100%;
|
||||
text-align: left;
|
||||
margin: 34px 0px 34px 0px;
|
||||
}
|
||||
|
||||
table.valuelist {
|
||||
border-width: 1px 1px 1px 1px;
|
||||
border-style: solid;
|
||||
border-color: #dddddd;
|
||||
border-collapse: collapse;
|
||||
background-color: #f0f0f0;
|
||||
}
|
||||
|
||||
table.indextable {
|
||||
border-width: 1px 1px 1px 1px;
|
||||
border-style: solid;
|
||||
border-collapse: collapse;
|
||||
background-color: #f0f0f0;
|
||||
border-color:#555;
|
||||
font-size: 100%;
|
||||
}
|
||||
|
||||
table td.largeindex {
|
||||
border-width: 1px 1px 1px 1px;
|
||||
border-collapse: collapse;
|
||||
background-color: #f0f0f0;
|
||||
border-color:#555;
|
||||
font-size: 120%;
|
||||
}
|
||||
|
||||
table.valuelist th {
|
||||
border-width: 1px 1px 1px 2px;
|
||||
padding: 4px;
|
||||
border-style: solid;
|
||||
border-color: #666;
|
||||
color:white;
|
||||
background-color:#666;
|
||||
}
|
||||
|
||||
th.titleheader {
|
||||
border-width: 1px 0px 1px 0px;
|
||||
padding: 2px;
|
||||
border-style: solid;
|
||||
border-color: #666;
|
||||
color:white;
|
||||
background-color:#555;
|
||||
background-image:url('images/gradient.png')};
|
||||
background-repeat: repeat-x;
|
||||
font-size: 100%;
|
||||
}
|
||||
|
||||
|
||||
th.largeheader {
|
||||
border-width: 1px 0px 1px 0px;
|
||||
padding: 4px;
|
||||
border-style: solid;
|
||||
border-color: #444;
|
||||
color:white;
|
||||
background-color:#555555;
|
||||
font-size: 120%;
|
||||
}
|
||||
|
||||
p {
|
||||
|
||||
margin-left: 4px;
|
||||
margin-top: 8px;
|
||||
margin-bottom: 8px;
|
||||
}
|
||||
|
||||
a:link
|
||||
{
|
||||
color: #0046ad;
|
||||
text-decoration: none
|
||||
}
|
||||
|
||||
a:visited
|
||||
{
|
||||
color: #672967;
|
||||
text-decoration: none
|
||||
}
|
||||
|
||||
a.obsolete
|
||||
{
|
||||
color: #661100;
|
||||
text-decoration: none
|
||||
}
|
||||
|
||||
a.compat
|
||||
{
|
||||
color: #661100;
|
||||
text-decoration: none
|
||||
}
|
||||
|
||||
a.obsolete:visited
|
||||
{
|
||||
color: #995500;
|
||||
text-decoration: none
|
||||
}
|
||||
|
||||
a.compat:visited
|
||||
{
|
||||
color: #995500;
|
||||
text-decoration: none
|
||||
}
|
||||
|
||||
body
|
||||
{
|
||||
background: #ffffff;
|
||||
color: black
|
||||
}
|
||||
|
||||
table.generic, table.annotated
|
||||
{
|
||||
border-width: 1px;
|
||||
border-color:#bbb;
|
||||
border-style:solid;
|
||||
border-collapse:collapse;
|
||||
}
|
||||
|
||||
table td.memItemLeft {
|
||||
width: 180px;
|
||||
padding: 2px 0px 0px 8px;
|
||||
margin: 4px;
|
||||
border-width: 1px;
|
||||
border-color: #E0E0E0;
|
||||
border-style: none;
|
||||
font-size: 100%;
|
||||
white-space: nowrap
|
||||
}
|
||||
|
||||
table td.memItemRight {
|
||||
padding: 2px 8px 0px 8px;
|
||||
margin: 4px;
|
||||
border-width: 1px;
|
||||
border-color: #E0E0E0;
|
||||
border-style: none;
|
||||
font-size: 100%;
|
||||
}
|
||||
|
||||
table tr.odd {
|
||||
background: #f0f0f0;
|
||||
color: black;
|
||||
}
|
||||
|
||||
table tr.even {
|
||||
background: #e4e4e4;
|
||||
color: black;
|
||||
}
|
||||
|
||||
table.annotated th {
|
||||
padding: 3px;
|
||||
text-align: left
|
||||
}
|
||||
|
||||
table.annotated td {
|
||||
padding: 3px;
|
||||
}
|
||||
|
||||
table tr pre
|
||||
{
|
||||
padding-top: 0px;
|
||||
padding-bottom: 0px;
|
||||
padding-left: 0px;
|
||||
padding-right: 0px;
|
||||
border: none;
|
||||
background: none
|
||||
}
|
||||
|
||||
tr.qt-style
|
||||
{
|
||||
background: #96E066;
|
||||
color: black
|
||||
}
|
||||
|
||||
body pre
|
||||
{
|
||||
padding: 0.2em;
|
||||
border: #e7e7e7 1px solid;
|
||||
background: #f1f1f1;
|
||||
color: black
|
||||
}
|
||||
|
||||
table tr.qt-code pre
|
||||
{
|
||||
padding: 0.2em;
|
||||
border: #e7e7e7 1px solid;
|
||||
background: #f1f1f1;
|
||||
color: black
|
||||
}
|
||||
|
||||
span.preprocessor, span.preprocessor a
|
||||
{
|
||||
color: darkblue;
|
||||
}
|
||||
|
||||
span.comment
|
||||
{
|
||||
color: darkred;
|
||||
font-style: italic
|
||||
}
|
||||
|
||||
span.string,span.char
|
||||
{
|
||||
color: darkgreen;
|
||||
}
|
||||
|
||||
.title
|
||||
{
|
||||
text-align: center
|
||||
}
|
||||
|
||||
.subtitle
|
||||
{
|
||||
font-size: 0.8em
|
||||
}
|
||||
|
||||
.small-subtitle
|
||||
{
|
||||
font-size: 0.65em
|
||||
}
|
||||
|
||||
.qmlitem {
|
||||
padding: 0;
|
||||
}
|
||||
|
||||
.qmlname {
|
||||
white-space: nowrap;
|
||||
}
|
||||
|
||||
.qmltype {
|
||||
text-align: center;
|
||||
font-size: 160%;
|
||||
}
|
||||
|
||||
.qmlproto {
|
||||
background-color: #eee;
|
||||
border-width: 1px;
|
||||
border-style: solid;
|
||||
border-color: #ddd;
|
||||
font-weight: bold;
|
||||
padding: 6px 10px 6px 10px;
|
||||
margin: 42px 0px 0px 0px;
|
||||
}
|
||||
|
||||
.qmlreadonly {
|
||||
float: right;
|
||||
color: red
|
||||
}
|
||||
|
||||
.qmldoc {
|
||||
}
|
||||
|
||||
*.qmlitem p {
|
||||
}
|
Binary file not shown.
After Width: | Height: | Size: 4.0 KiB |
|
@ -0,0 +1,48 @@
|
|||
<?xml version="1.0" encoding="iso-8859-1"?>
|
||||
<!DOCTYPE html
|
||||
PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "DTD/xhtml1-strict.dtd">
|
||||
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
|
||||
<!-- index.qdoc -->
|
||||
<head>
|
||||
<title>Single Application</title>
|
||||
<link href="classic.css" rel="stylesheet" type="text/css" />
|
||||
</head>
|
||||
<body>
|
||||
<table border="0" cellpadding="0" cellspacing="0" width="100%">
|
||||
<tr>
|
||||
<td align="left" valign="top" width="32"><img src="images/qt-logo.png" align="left" width="57" height="67" border="0" /></td>
|
||||
<td width="1"> </td><td class="postheader" valign="center"><a href="index.html"><font color="#004faf">Home</font></a></td>
|
||||
</tr></table><h1 class="title">Single Application<br /><span class="subtitle"></span>
|
||||
</h1>
|
||||
<a name="description"></a>
|
||||
<h2>Description</h2>
|
||||
<p>The <a href="qtsingleapplication.html">QtSingleApplication</a> component provides support for applications that can be only started once per user.</p>
|
||||
<p>For some applications it is useful or even critical that they are started only once by any user. Future attempts to start the application should activate any already running instance, and possibly perform requested actions, e.g. loading a file, in that instance.</p>
|
||||
<p>The <a href="qtsingleapplication.html">QtSingleApplication</a> class provides an interface to detect a running instance, and to send command strings to that instance. For console (non-GUI) applications, the <a href="qtsinglecoreapplication.html">QtSingleCoreApplication</a> variant is provided, which avoids dependency on <a href="http://qt.nokia.com/doc/4.6/qtgui.html">QtGui</a>.</p>
|
||||
<a name="classes"></a>
|
||||
<h2>Classes</h2>
|
||||
<ul>
|
||||
<li><a href="qtsingleapplication.html">QtSingleApplication</a></li>
|
||||
<li><a href="qtsinglecoreapplication.html">QtSingleCoreApplication</a></li>
|
||||
</ul>
|
||||
<a name="examples"></a>
|
||||
<h2>Examples</h2>
|
||||
<ul>
|
||||
<li><a href="qtsingleapplication-example-trivial.html">A Trivial Example</a></li>
|
||||
<li><a href="qtsingleapplication-example-loader.html">Loading Documents</a></li>
|
||||
<li><a href="qtsinglecoreapplication-example-console.html">A Non-GUI Example</a></li>
|
||||
</ul>
|
||||
<a name="tested-platforms"></a>
|
||||
<h2>Tested platforms</h2>
|
||||
<ul>
|
||||
<li>Qt 4.4, 4.5 / Windows XP / MSVC.NET 2005</li>
|
||||
<li>Qt 4.4, 4.5 / Linux / gcc</li>
|
||||
<li>Qt 4.4, 4.5 / MacOS X 10.5 / gcc</li>
|
||||
</ul>
|
||||
<p /><address><hr /><div align="center">
|
||||
<table width="100%" cellspacing="0" border="0"><tr class="address">
|
||||
<td width="30%" align="left">Copyright © 2010 Nokia Corporation and/or its subsidiary(-ies)</td>
|
||||
<td width="40%" align="center"><a href="http://qt.nokia.com/doc/trademarks.html">Trademarks</a></td>
|
||||
<td width="30%" align="right"><div align="right">Qt Solutions</div></td>
|
||||
</tr></table></div></address></body>
|
||||
</html>
|
175
3rdparty/qtsingleapplication/doc/html/qtsingleapplication-example-loader.html
vendored
Normal file
175
3rdparty/qtsingleapplication/doc/html/qtsingleapplication-example-loader.html
vendored
Normal file
|
@ -0,0 +1,175 @@
|
|||
<?xml version="1.0" encoding="iso-8859-1"?>
|
||||
<!DOCTYPE html
|
||||
PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "DTD/xhtml1-strict.dtd">
|
||||
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
|
||||
<!-- loader.qdoc -->
|
||||
<head>
|
||||
<title>Loading Documents</title>
|
||||
<link href="classic.css" rel="stylesheet" type="text/css" />
|
||||
</head>
|
||||
<body>
|
||||
<table border="0" cellpadding="0" cellspacing="0" width="100%">
|
||||
<tr>
|
||||
<td align="left" valign="top" width="32"><img src="images/qt-logo.png" align="left" width="57" height="67" border="0" /></td>
|
||||
<td width="1"> </td><td class="postheader" valign="center"><a href="index.html"><font color="#004faf">Home</font></a></td>
|
||||
</tr></table><h1 class="title">Loading Documents<br /><span class="subtitle"></span>
|
||||
</h1>
|
||||
<p>The application in this example loads or prints the documents passed as commandline parameters to further instances of this application.</p>
|
||||
<pre><span class="comment"> /****************************************************************************
|
||||
**
|
||||
** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies).
|
||||
** Contact: http://www.qt-project.org/legal
|
||||
**
|
||||
** This file is part of the Qt Solutions component.
|
||||
**
|
||||
** 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 Nokia Corporation 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."
|
||||
**
|
||||
****************************************************************************/</span>
|
||||
|
||||
#include <qtsingleapplication.h>
|
||||
#include <QtCore/QFile>
|
||||
#include <QtGui/QMainWindow>
|
||||
#include <QtGui/QPrinter>
|
||||
#include <QtGui/QPainter>
|
||||
#include <QtGui/QTextEdit>
|
||||
#include <QtGui/QMdiArea>
|
||||
#include <QtCore/QTextStream>
|
||||
|
||||
class MainWindow : public QMainWindow
|
||||
{
|
||||
Q_OBJECT
|
||||
public:
|
||||
MainWindow();
|
||||
|
||||
public slots:
|
||||
void handleMessage(const QString& message);
|
||||
|
||||
signals:
|
||||
void needToShow();
|
||||
|
||||
private:
|
||||
QMdiArea *workspace;
|
||||
};</pre>
|
||||
<p>The user interface in this application is a <a href="http://qt.nokia.com/doc/4.6/qmainwindow.html">QMainWindow</a> subclass with a <a href="http://qt.nokia.com/doc/4.6/qmdiarea.html">QMdiArea</a> as the central widget. It implements a slot <tt>handleMessage()</tt> that will be connected to the messageReceived() signal of the <a href="qtsingleapplication.html">QtSingleApplication</a> class.</p>
|
||||
<pre> MainWindow::MainWindow()
|
||||
{
|
||||
workspace = new QMdiArea(this);
|
||||
|
||||
setCentralWidget(workspace);
|
||||
}</pre>
|
||||
<p>The <a href="http://qt.nokia.com/doc/4.6/designer-to-know.html">MainWindow</a> constructor creates a minimal user interface.</p>
|
||||
<pre> void MainWindow::handleMessage(const QString& message)
|
||||
{
|
||||
enum Action {
|
||||
Nothing,
|
||||
Open,
|
||||
Print
|
||||
} action;
|
||||
|
||||
action = Nothing;
|
||||
QString filename = message;
|
||||
if (message.toLower().startsWith("/print ")) {
|
||||
filename = filename.mid(7);
|
||||
action = Print;
|
||||
} else if (!message.isEmpty()) {
|
||||
action = Open;
|
||||
}
|
||||
if (action == Nothing) {
|
||||
emit needToShow();
|
||||
return;
|
||||
}
|
||||
|
||||
QFile file(filename);
|
||||
QString contents;
|
||||
if (file.open(QIODevice::ReadOnly))
|
||||
contents = file.readAll();
|
||||
else
|
||||
contents = "[[Error: Could not load file " + filename + "]]";
|
||||
|
||||
QTextEdit *view = new QTextEdit;
|
||||
view->setPlainText(contents);
|
||||
|
||||
switch(action) {</pre>
|
||||
<p>The handleMessage() slot interprets the message passed in as a filename that can be prepended with <i>/print</i> to indicate that the file should just be printed rather than loaded.</p>
|
||||
<pre> case Print:
|
||||
{
|
||||
QPrinter printer;
|
||||
view->print(&printer);
|
||||
delete view;
|
||||
}
|
||||
break;
|
||||
|
||||
case Open:
|
||||
{
|
||||
workspace->addSubWindow(view);
|
||||
view->setWindowTitle(message);
|
||||
view->show();
|
||||
emit needToShow();
|
||||
}
|
||||
break;
|
||||
default:
|
||||
break;
|
||||
};
|
||||
}</pre>
|
||||
<p>Loading the file will also activate the window.</p>
|
||||
<pre> #include "main.moc"
|
||||
|
||||
int main(int argc, char **argv)
|
||||
{
|
||||
QtSingleApplication instance("File loader QtSingleApplication example", argc, argv);
|
||||
QString message;
|
||||
for (int a = 1; a < argc; ++a) {
|
||||
message += argv[a];
|
||||
if (a < argc-1)
|
||||
message += " ";
|
||||
}
|
||||
|
||||
if (instance.sendMessage(message))
|
||||
return 0;</pre>
|
||||
<p>The <tt>main</tt> entry point function creates a <a href="qtsingleapplication.html">QtSingleApplication</a> object, and creates a message to send to a running instance of the application. If the message was sent successfully the process exits immediately.</p>
|
||||
<pre> MainWindow mw;
|
||||
mw.handleMessage(message);
|
||||
mw.show();
|
||||
|
||||
QObject::connect(&instance, SIGNAL(messageReceived(const QString&)),
|
||||
&mw, SLOT(handleMessage(const QString&)));
|
||||
|
||||
instance.setActivationWindow(&mw, false);
|
||||
QObject::connect(&mw, SIGNAL(needToShow()), &instance, SLOT(activateWindow()));
|
||||
|
||||
return instance.exec();
|
||||
}</pre>
|
||||
<p>If the message could not be sent the application starts up. Note that <tt>false</tt> is passed to the call to setActivationWindow() to prevent automatic activation for every message received, e.g. when the application should just print a file. Instead, the message handling function determines whether activation is requested, and signals that by emitting the needToShow() signal. This is then simply connected directly to <a href="qtsingleapplication.html">QtSingleApplication</a>'s activateWindow() slot.</p>
|
||||
<p /><address><hr /><div align="center">
|
||||
<table width="100%" cellspacing="0" border="0"><tr class="address">
|
||||
<td width="30%" align="left">Copyright © 2010 Nokia Corporation and/or its subsidiary(-ies)</td>
|
||||
<td width="40%" align="center"><a href="http://qt.nokia.com/doc/trademarks.html">Trademarks</a></td>
|
||||
<td width="30%" align="right"><div align="right">Qt Solutions</div></td>
|
||||
</tr></table></div></address></body>
|
||||
</html>
|
101
3rdparty/qtsingleapplication/doc/html/qtsingleapplication-example-trivial.html
vendored
Normal file
101
3rdparty/qtsingleapplication/doc/html/qtsingleapplication-example-trivial.html
vendored
Normal file
|
@ -0,0 +1,101 @@
|
|||
<?xml version="1.0" encoding="iso-8859-1"?>
|
||||
<!DOCTYPE html
|
||||
PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "DTD/xhtml1-strict.dtd">
|
||||
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
|
||||
<!-- trivial.qdoc -->
|
||||
<head>
|
||||
<title>A Trivial Example</title>
|
||||
<link href="classic.css" rel="stylesheet" type="text/css" />
|
||||
</head>
|
||||
<body>
|
||||
<table border="0" cellpadding="0" cellspacing="0" width="100%">
|
||||
<tr>
|
||||
<td align="left" valign="top" width="32"><img src="images/qt-logo.png" align="left" width="57" height="67" border="0" /></td>
|
||||
<td width="1"> </td><td class="postheader" valign="center"><a href="index.html"><font color="#004faf">Home</font></a></td>
|
||||
</tr></table><h1 class="title">A Trivial Example<br /><span class="subtitle"></span>
|
||||
</h1>
|
||||
<p>The application in this example has a log-view that displays messages sent by further instances of the same application.</p>
|
||||
<p>The example demonstrates the use of the <a href="qtsingleapplication.html">QtSingleApplication</a> class to detect and communicate with a running instance of the application using the sendMessage() API. The messageReceived() signal is used to display received messages in a <a href="http://qt.nokia.com/doc/4.6/qtextedit.html">QTextEdit</a> log.</p>
|
||||
<pre><span class="comment"> /****************************************************************************
|
||||
**
|
||||
** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies).
|
||||
** Contact: http://www.qt-project.org/legal
|
||||
**
|
||||
** This file is part of the Qt Solutions component.
|
||||
**
|
||||
** 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 Nokia Corporation 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."
|
||||
**
|
||||
****************************************************************************/</span>
|
||||
|
||||
#include <qtsingleapplication.h>
|
||||
#include <QtGui/QTextEdit>
|
||||
|
||||
class TextEdit : public QTextEdit
|
||||
{
|
||||
Q_OBJECT
|
||||
public:
|
||||
TextEdit(QWidget *parent = 0)
|
||||
: QTextEdit(parent)
|
||||
{}
|
||||
public slots:
|
||||
void append(const QString &str)
|
||||
{
|
||||
QTextEdit::append(str);
|
||||
}
|
||||
};
|
||||
|
||||
#include "main.moc"
|
||||
|
||||
int main(int argc, char **argv)
|
||||
{
|
||||
QtSingleApplication instance(argc, argv);</pre>
|
||||
<p>The example has only the <tt>main</tt> entry point function. A <a href="qtsingleapplication.html">QtSingleApplication</a> object is created immediately.</p>
|
||||
<pre> if (instance.sendMessage("Wake up!"))
|
||||
return 0;</pre>
|
||||
<p>If another instance of this application is already running, sendMessage() will succeed, and this instance just exits immediately.</p>
|
||||
<pre> TextEdit logview;
|
||||
logview.setReadOnly(true);
|
||||
logview.show();</pre>
|
||||
<p>Otherwise the instance continues as normal and creates the user interface.</p>
|
||||
<pre> instance.setActivationWindow(&logview);
|
||||
|
||||
QObject::connect(&instance, SIGNAL(messageReceived(const QString&)),
|
||||
&logview, SLOT(append(const QString&)));
|
||||
|
||||
return instance.exec();</pre>
|
||||
<p>The <tt>logview</tt> object is also set as the application's activation window. Every time a message is received, the window will be raised and activated automatically.</p>
|
||||
<p>The messageReceived() signal is also connected to the <a href="http://qt.nokia.com/doc/4.6/qtextedit.html">QTextEdit</a>'s append() slot. Every message received from further instances of this application will be displayed in the log.</p>
|
||||
<p>Finally the event loop is entered.</p>
|
||||
<p /><address><hr /><div align="center">
|
||||
<table width="100%" cellspacing="0" border="0"><tr class="address">
|
||||
<td width="30%" align="left">Copyright © 2010 Nokia Corporation and/or its subsidiary(-ies)</td>
|
||||
<td width="40%" align="center"><a href="http://qt.nokia.com/doc/trademarks.html">Trademarks</a></td>
|
||||
<td width="30%" align="right"><div align="right">Qt Solutions</div></td>
|
||||
</tr></table></div></address></body>
|
||||
</html>
|
|
@ -0,0 +1,235 @@
|
|||
<?xml version="1.0" encoding="iso-8859-1"?>
|
||||
<!DOCTYPE html
|
||||
PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "DTD/xhtml1-strict.dtd">
|
||||
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
|
||||
<!-- qtsingleapplication.cpp -->
|
||||
<head>
|
||||
<title>List of All Members for QtSingleApplication</title>
|
||||
<link href="classic.css" rel="stylesheet" type="text/css" />
|
||||
</head>
|
||||
<body>
|
||||
<table border="0" cellpadding="0" cellspacing="0" width="100%">
|
||||
<tr>
|
||||
<td align="left" valign="top" width="32"><img src="images/qt-logo.png" align="left" width="57" height="67" border="0" /></td>
|
||||
<td width="1"> </td><td class="postheader" valign="center"><a href="index.html"><font color="#004faf">Home</font></a></td>
|
||||
</tr></table><h1 class="title">List of All Members for QtSingleApplication</h1>
|
||||
<p>This is the complete list of members for <a href="qtsingleapplication.html">QtSingleApplication</a>, including inherited members.</p>
|
||||
<p><table class="propsummary" width="100%" border="0" cellpadding="0" cellspacing="0">
|
||||
<tr><td width="45%" valign="top"><ul>
|
||||
<li><div class="fn">enum <b><a href="http://qt.nokia.com/doc/4.6/qapplication.html#ColorSpec-enum">ColorSpec</a></b></div></li>
|
||||
<li><div class="fn">enum <b><a href="http://qt.nokia.com/doc/4.6/qcoreapplication.html#Encoding-enum">Encoding</a></b></div></li>
|
||||
<li><div class="fn">typedef <b><a href="http://qt.nokia.com/doc/4.6/qcoreapplication.html#EventFilter-typedef">EventFilter</a></b></div></li>
|
||||
<li><div class="fn">typedef <b><a href="http://qt.nokia.com/doc/4.6/qapplication.html#QS60MainApplicationFactory-typedef">QS60MainApplicationFactory</a></b></div></li>
|
||||
<li><div class="fn">enum <b><a href="http://qt.nokia.com/doc/4.6/qapplication.html#Type-enum">Type</a></b></div></li>
|
||||
<li><div class="fn"><b><a href="qtsingleapplication.html#QtSingleApplication">QtSingleApplication</a></b> ( int &, char **, bool )</div></li>
|
||||
<li><div class="fn"><b><a href="qtsingleapplication.html#QtSingleApplication-2">QtSingleApplication</a></b> ( const QString &, int &, char ** )</div></li>
|
||||
<li><div class="fn"><b><a href="qtsingleapplication.html#QtSingleApplication-3">QtSingleApplication</a></b> ( int &, char **, Type )</div></li>
|
||||
<li><div class="fn"><b><a href="qtsingleapplication.html#QtSingleApplication-4">QtSingleApplication</a></b> ( Display *, Qt::HANDLE, Qt::HANDLE )</div></li>
|
||||
<li><div class="fn"><b><a href="qtsingleapplication.html#QtSingleApplication-5">QtSingleApplication</a></b> ( Display *, int &, char **, Qt::HANDLE, Qt::HANDLE )</div></li>
|
||||
<li><div class="fn"><b><a href="qtsingleapplication.html#QtSingleApplication-6">QtSingleApplication</a></b> ( Display *, const QString &, int, char **, Qt::HANDLE, Qt::HANDLE )</div></li>
|
||||
<li><div class="fn"><b><a href="http://qt.nokia.com/doc/4.6/qapplication.html#aboutQt">aboutQt</a></b> ()</div></li>
|
||||
<li><div class="fn"><b><a href="http://qt.nokia.com/doc/4.6/qcoreapplication.html#aboutToQuit">aboutToQuit</a></b> ()</div></li>
|
||||
<li><div class="fn"><b><a href="qtsingleapplication.html#activateWindow">activateWindow</a></b> ()</div></li>
|
||||
<li><div class="fn"><b><a href="qtsingleapplication.html#activationWindow">activationWindow</a></b> () const : QWidget *</div></li>
|
||||
<li><div class="fn"><b><a href="http://qt.nokia.com/doc/4.6/qapplication.html#activeModalWidget">activeModalWidget</a></b> ()</div></li>
|
||||
<li><div class="fn"><b><a href="http://qt.nokia.com/doc/4.6/qapplication.html#activePopupWidget">activePopupWidget</a></b> ()</div></li>
|
||||
<li><div class="fn"><b><a href="http://qt.nokia.com/doc/4.6/qapplication.html#activeWindow">activeWindow</a></b> ()</div></li>
|
||||
<li><div class="fn"><b><a href="http://qt.nokia.com/doc/4.6/qcoreapplication.html#addLibraryPath">addLibraryPath</a></b> ( const QString & )</div></li>
|
||||
<li><div class="fn"><b><a href="http://qt.nokia.com/doc/4.6/qapplication.html#alert">alert</a></b> ( QWidget *, int )</div></li>
|
||||
<li><div class="fn"><b><a href="http://qt.nokia.com/doc/4.6/qapplication.html#allWidgets">allWidgets</a></b> ()</div></li>
|
||||
<li><div class="fn"><b><a href="http://qt.nokia.com/doc/4.6/qcoreapplication.html#applicationDirPath">applicationDirPath</a></b> ()</div></li>
|
||||
<li><div class="fn"><b><a href="http://qt.nokia.com/doc/4.6/qcoreapplication.html#applicationFilePath">applicationFilePath</a></b> ()</div></li>
|
||||
<li><div class="fn"><b><a href="http://qt.nokia.com/doc/4.6/qcoreapplication.html#applicationName-prop">applicationName</a></b> ()</div></li>
|
||||
<li><div class="fn"><b><a href="http://qt.nokia.com/doc/4.6/qcoreapplication.html#applicationPid">applicationPid</a></b> ()</div></li>
|
||||
<li><div class="fn"><b><a href="http://qt.nokia.com/doc/4.6/qcoreapplication.html#applicationVersion-prop">applicationVersion</a></b> ()</div></li>
|
||||
<li><div class="fn"><b><a href="http://qt.nokia.com/doc/4.6/qcoreapplication.html#arguments">arguments</a></b> ()</div></li>
|
||||
<li><div class="fn"><b><a href="http://qt.nokia.com/doc/4.6/qapplication.html#autoMaximizeThreshold-prop">autoMaximizeThreshold</a></b> () const</div></li>
|
||||
<li><div class="fn"><b><a href="http://qt.nokia.com/doc/4.6/qapplication.html#autoSipEnabled-prop">autoSipEnabled</a></b> () const</div></li>
|
||||
<li><div class="fn"><b><a href="http://qt.nokia.com/doc/4.6/qapplication.html#beep">beep</a></b> ()</div></li>
|
||||
<li><div class="fn"><b><a href="http://qt.nokia.com/doc/4.6/qobject.html#blockSignals">blockSignals</a></b> ( bool )</div></li>
|
||||
<li><div class="fn"><b><a href="http://qt.nokia.com/doc/4.6/qapplication.html#changeOverrideCursor">changeOverrideCursor</a></b> ( const QCursor & )</div></li>
|
||||
<li><div class="fn"><b><a href="http://qt.nokia.com/doc/4.6/qobject.html#childEvent">childEvent</a></b> ( QChildEvent * )</div></li>
|
||||
<li><div class="fn"><b><a href="http://qt.nokia.com/doc/4.6/qobject.html#children">children</a></b> () const</div></li>
|
||||
<li><div class="fn"><b><a href="http://qt.nokia.com/doc/4.6/qapplication.html#clipboard">clipboard</a></b> ()</div></li>
|
||||
<li><div class="fn"><b><a href="http://qt.nokia.com/doc/4.6/qapplication.html#closeAllWindows">closeAllWindows</a></b> ()</div></li>
|
||||
<li><div class="fn"><b><a href="http://qt.nokia.com/doc/4.6/qcoreapplication.html#closingDown">closingDown</a></b> ()</div></li>
|
||||
<li><div class="fn"><b><a href="http://qt.nokia.com/doc/4.6/qapplication.html#colorSpec">colorSpec</a></b> ()</div></li>
|
||||
<li><div class="fn"><b><a href="http://qt.nokia.com/doc/4.6/qapplication.html#commitData">commitData</a></b> ( QSessionManager & )</div></li>
|
||||
<li><div class="fn"><b><a href="http://qt.nokia.com/doc/4.6/qapplication.html#commitDataRequest">commitDataRequest</a></b> ( QSessionManager & )</div></li>
|
||||
<li><div class="fn"><b><a href="http://qt.nokia.com/doc/4.6/qobject.html#connect">connect</a></b> ( const QObject *, const char *, const QObject *, const char *, Qt::ConnectionType )</div></li>
|
||||
<li><div class="fn"><b><a href="http://qt.nokia.com/doc/4.6/qobject.html#connect-2">connect</a></b> ( const QObject *, const char *, const char *, Qt::ConnectionType ) const</div></li>
|
||||
<li><div class="fn"><b><a href="http://qt.nokia.com/doc/4.6/qobject.html#connectNotify">connectNotify</a></b> ( const char * )</div></li>
|
||||
<li><div class="fn"><b><a href="http://qt.nokia.com/doc/4.6/qapplication.html#cursorFlashTime-prop">cursorFlashTime</a></b> ()</div></li>
|
||||
<li><div class="fn"><b><a href="http://qt.nokia.com/doc/4.6/qobject.html#customEvent">customEvent</a></b> ( QEvent * )</div></li>
|
||||
<li><div class="fn"><b><a href="http://qt.nokia.com/doc/4.6/qobject.html#d_ptr-var">d_ptr</a></b> : </div></li>
|
||||
<li><div class="fn"><b><a href="http://qt.nokia.com/doc/4.6/qobject.html#deleteLater">deleteLater</a></b> ()</div></li>
|
||||
<li><div class="fn"><b><a href="http://qt.nokia.com/doc/4.6/qapplication.html#desktop">desktop</a></b> ()</div></li>
|
||||
<li><div class="fn"><b><a href="http://qt.nokia.com/doc/4.6/qapplication.html#desktopSettingsAware">desktopSettingsAware</a></b> ()</div></li>
|
||||
<li><div class="fn"><b><a href="http://qt.nokia.com/doc/4.6/qobject.html#destroyed">destroyed</a></b> ( QObject * )</div></li>
|
||||
<li><div class="fn"><b><a href="http://qt.nokia.com/doc/4.6/qobject.html#disconnect">disconnect</a></b> ( const QObject *, const char *, const QObject *, const char * )</div></li>
|
||||
<li><div class="fn"><b><a href="http://qt.nokia.com/doc/4.6/qobject.html#disconnect-2">disconnect</a></b> ( const char *, const QObject *, const char * )</div></li>
|
||||
<li><div class="fn"><b><a href="http://qt.nokia.com/doc/4.6/qobject.html#disconnect-3">disconnect</a></b> ( const QObject *, const char * )</div></li>
|
||||
<li><div class="fn"><b><a href="http://qt.nokia.com/doc/4.6/qobject.html#disconnectNotify">disconnectNotify</a></b> ( const char * )</div></li>
|
||||
<li><div class="fn"><b><a href="http://qt.nokia.com/doc/4.6/qapplication.html#doubleClickInterval-prop">doubleClickInterval</a></b> ()</div></li>
|
||||
<li><div class="fn"><b><a href="http://qt.nokia.com/doc/4.6/qobject.html#dumpObjectInfo">dumpObjectInfo</a></b> ()</div></li>
|
||||
<li><div class="fn"><b><a href="http://qt.nokia.com/doc/4.6/qobject.html#dumpObjectTree">dumpObjectTree</a></b> ()</div></li>
|
||||
<li><div class="fn"><b><a href="http://qt.nokia.com/doc/4.6/qobject.html#dynamicPropertyNames">dynamicPropertyNames</a></b> () const</div></li>
|
||||
<li><div class="fn"><b><a href="http://qt.nokia.com/doc/4.6/qapplication.html#event">event</a></b> ( QEvent * )</div></li>
|
||||
<li><div class="fn"><b><a href="http://qt.nokia.com/doc/4.6/qobject.html#eventFilter">eventFilter</a></b> ( QObject *, QEvent * )</div></li>
|
||||
<li><div class="fn"><b><a href="http://qt.nokia.com/doc/4.6/qapplication.html#exec">exec</a></b> ()</div></li>
|
||||
<li><div class="fn"><b><a href="http://qt.nokia.com/doc/4.6/qcoreapplication.html#exit">exit</a></b> ( int )</div></li>
|
||||
<li><div class="fn"><b><a href="http://qt.nokia.com/doc/4.6/qcoreapplication.html#filterEvent">filterEvent</a></b> ( void *, long * )</div></li>
|
||||
<li><div class="fn"><b><a href="http://qt.nokia.com/doc/4.6/qobject.html#findChild">findChild</a></b> ( const QString & ) const</div></li>
|
||||
<li><div class="fn"><b><a href="http://qt.nokia.com/doc/4.6/qobject.html#findChildren">findChildren</a></b> ( const QString & ) const</div></li>
|
||||
<li><div class="fn"><b><a href="http://qt.nokia.com/doc/4.6/qobject.html#findChildren-2">findChildren</a></b> ( const QRegExp & ) const</div></li>
|
||||
<li><div class="fn"><b><a href="http://qt.nokia.com/doc/4.6/qcoreapplication.html#flush">flush</a></b> ()</div></li>
|
||||
<li><div class="fn"><b><a href="http://qt.nokia.com/doc/4.6/qapplication.html#focusChanged">focusChanged</a></b> ( QWidget *, QWidget * )</div></li>
|
||||
<li><div class="fn"><b><a href="http://qt.nokia.com/doc/4.6/qapplication.html#focusWidget">focusWidget</a></b> ()</div></li>
|
||||
<li><div class="fn"><b><a href="http://qt.nokia.com/doc/4.6/qapplication.html#font">font</a></b> ()</div></li>
|
||||
<li><div class="fn"><b><a href="http://qt.nokia.com/doc/4.6/qapplication.html#font-2">font</a></b> ( const QWidget * )</div></li>
|
||||
<li><div class="fn"><b><a href="http://qt.nokia.com/doc/4.6/qapplication.html#font-3">font</a></b> ( const char * )</div></li>
|
||||
<li><div class="fn"><b><a href="http://qt.nokia.com/doc/4.6/qapplication.html#fontDatabaseChanged">fontDatabaseChanged</a></b> ()</div></li>
|
||||
<li><div class="fn"><b><a href="http://qt.nokia.com/doc/4.6/qapplication.html#fontMetrics">fontMetrics</a></b> ()</div></li>
|
||||
<li><div class="fn"><b><a href="http://qt.nokia.com/doc/4.6/qapplication.html#globalStrut-prop">globalStrut</a></b> ()</div></li>
|
||||
<li><div class="fn"><b><a href="http://qt.nokia.com/doc/4.6/qcoreapplication.html#hasPendingEvents">hasPendingEvents</a></b> ()</div></li>
|
||||
<li><div class="fn"><b><a href="qtsingleapplication.html#id">id</a></b> () const : QString</div></li>
|
||||
<li><div class="fn"><b><a href="http://qt.nokia.com/doc/4.6/qobject.html#inherits">inherits</a></b> ( const char * ) const</div></li>
|
||||
<li><div class="fn"><b><a href="http://qt.nokia.com/doc/4.6/qapplication.html#inputContext">inputContext</a></b> () const</div></li>
|
||||
<li><div class="fn"><b><a href="http://qt.nokia.com/doc/4.6/qobject.html#installEventFilter">installEventFilter</a></b> ( QObject * )</div></li>
|
||||
<li><div class="fn"><b><a href="http://qt.nokia.com/doc/4.6/qcoreapplication.html#installTranslator">installTranslator</a></b> ( QTranslator * )</div></li>
|
||||
<li><div class="fn"><b><a href="http://qt.nokia.com/doc/4.6/qcoreapplication.html#instance">instance</a></b> ()</div></li>
|
||||
<li><div class="fn"><b><a href="http://qt.nokia.com/doc/4.6/qapplication.html#isEffectEnabled">isEffectEnabled</a></b> ( Qt::UIEffect )</div></li>
|
||||
<li><div class="fn"><b><a href="http://qt.nokia.com/doc/4.6/qapplication.html#isLeftToRight">isLeftToRight</a></b> ()</div></li>
|
||||
<li><div class="fn"><b><a href="http://qt.nokia.com/doc/4.6/qapplication.html#isRightToLeft">isRightToLeft</a></b> ()</div></li>
|
||||
<li><div class="fn"><b><a href="qtsingleapplication.html#isRunning">isRunning</a></b> () : bool</div></li>
|
||||
<li><div class="fn"><b><a href="http://qt.nokia.com/doc/4.6/qapplication.html#isSessionRestored">isSessionRestored</a></b> () const</div></li>
|
||||
<li><div class="fn"><b><a href="http://qt.nokia.com/doc/4.6/qobject.html#isWidgetType">isWidgetType</a></b> () const</div></li>
|
||||
<li><div class="fn"><b><a href="http://qt.nokia.com/doc/4.6/qapplication.html#keyboardInputDirection">keyboardInputDirection</a></b> ()</div></li>
|
||||
<li><div class="fn"><b><a href="http://qt.nokia.com/doc/4.6/qapplication.html#keyboardInputInterval-prop">keyboardInputInterval</a></b> ()</div></li>
|
||||
<li><div class="fn"><b><a href="http://qt.nokia.com/doc/4.6/qapplication.html#keyboardInputLocale">keyboardInputLocale</a></b> ()</div></li>
|
||||
<li><div class="fn"><b><a href="http://qt.nokia.com/doc/4.6/qapplication.html#keyboardModifiers">keyboardModifiers</a></b> ()</div></li>
|
||||
<li><div class="fn"><b><a href="http://qt.nokia.com/doc/4.6/qapplication.html#keypadNavigationEnabled">keypadNavigationEnabled</a></b> ()</div></li>
|
||||
<li><div class="fn"><b><a href="http://qt.nokia.com/doc/4.6/qobject.html#killTimer">killTimer</a></b> ( int )</div></li>
|
||||
<li><div class="fn"><b><a href="http://qt.nokia.com/doc/4.6/qapplication.html#lastWindowClosed">lastWindowClosed</a></b> ()</div></li>
|
||||
<li><div class="fn"><b><a href="http://qt.nokia.com/doc/4.6/qapplication.html#layoutDirection-prop">layoutDirection</a></b> ()</div></li>
|
||||
<li><div class="fn"><b><a href="http://qt.nokia.com/doc/4.6/qcoreapplication.html#libraryPaths">libraryPaths</a></b> ()</div></li>
|
||||
<li><div class="fn"><b><a href="http://qt.nokia.com/doc/4.6/qapplication.html#macEventFilter">macEventFilter</a></b> ( EventHandlerCallRef, EventRef )</div></li>
|
||||
<li><div class="fn"><b><a href="qtsingleapplication.html#messageReceived">messageReceived</a></b> ( const QString & )</div></li>
|
||||
<li><div class="fn"><b><a href="http://qt.nokia.com/doc/4.6/qobject.html#metaObject">metaObject</a></b> () const</div></li>
|
||||
<li><div class="fn"><b><a href="http://qt.nokia.com/doc/4.6/qapplication.html#mouseButtons">mouseButtons</a></b> ()</div></li>
|
||||
<li><div class="fn"><b><a href="http://qt.nokia.com/doc/4.6/qobject.html#moveToThread">moveToThread</a></b> ( QThread * )</div></li>
|
||||
<li><div class="fn"><b><a href="http://qt.nokia.com/doc/4.6/qapplication.html#navigationMode">navigationMode</a></b> ()</div></li>
|
||||
</ul></td><td valign="top"><ul>
|
||||
<li><div class="fn"><b><a href="http://qt.nokia.com/doc/4.6/qapplication.html#notify">notify</a></b> ( QObject *, QEvent * )</div></li>
|
||||
<li><div class="fn"><b><a href="http://qt.nokia.com/doc/4.6/qobject.html#objectName-prop">objectName</a></b> () const</div></li>
|
||||
<li><div class="fn"><b><a href="http://qt.nokia.com/doc/4.6/qcoreapplication.html#organizationDomain-prop">organizationDomain</a></b> ()</div></li>
|
||||
<li><div class="fn"><b><a href="http://qt.nokia.com/doc/4.6/qcoreapplication.html#organizationName-prop">organizationName</a></b> ()</div></li>
|
||||
<li><div class="fn"><b><a href="http://qt.nokia.com/doc/4.6/qapplication.html#overrideCursor">overrideCursor</a></b> ()</div></li>
|
||||
<li><div class="fn"><b><a href="http://qt.nokia.com/doc/4.6/qapplication.html#palette">palette</a></b> ()</div></li>
|
||||
<li><div class="fn"><b><a href="http://qt.nokia.com/doc/4.6/qapplication.html#palette-2">palette</a></b> ( const QWidget * )</div></li>
|
||||
<li><div class="fn"><b><a href="http://qt.nokia.com/doc/4.6/qapplication.html#palette-3">palette</a></b> ( const char * )</div></li>
|
||||
<li><div class="fn"><b><a href="http://qt.nokia.com/doc/4.6/qobject.html#parent">parent</a></b> () const</div></li>
|
||||
<li><div class="fn"><b><a href="http://qt.nokia.com/doc/4.6/qcoreapplication.html#postEvent">postEvent</a></b> ( QObject *, QEvent * )</div></li>
|
||||
<li><div class="fn"><b><a href="http://qt.nokia.com/doc/4.6/qcoreapplication.html#postEvent-2">postEvent</a></b> ( QObject *, QEvent *, int )</div></li>
|
||||
<li><div class="fn"><b><a href="http://qt.nokia.com/doc/4.6/qcoreapplication.html#processEvents">processEvents</a></b> ( QFlags<QEventLoop::ProcessEventsFlag> )</div></li>
|
||||
<li><div class="fn"><b><a href="http://qt.nokia.com/doc/4.6/qcoreapplication.html#processEvents-2">processEvents</a></b> ( QFlags<QEventLoop::ProcessEventsFlag>, int )</div></li>
|
||||
<li><div class="fn"><b><a href="http://qt.nokia.com/doc/4.6/qobject.html#property">property</a></b> ( const char * ) const</div></li>
|
||||
<li><div class="fn"><b><a href="http://qt.nokia.com/doc/4.6/qcoreapplication.html#quit">quit</a></b> ()</div></li>
|
||||
<li><div class="fn"><b><a href="http://qt.nokia.com/doc/4.6/qapplication.html#quitOnLastWindowClosed-prop">quitOnLastWindowClosed</a></b> ()</div></li>
|
||||
<li><div class="fn"><b><a href="http://qt.nokia.com/doc/4.6/qapplication.html#qwsDecoration">qwsDecoration</a></b> ()</div></li>
|
||||
<li><div class="fn"><b><a href="http://qt.nokia.com/doc/4.6/qapplication.html#qwsEventFilter">qwsEventFilter</a></b> ( QWSEvent * )</div></li>
|
||||
<li><div class="fn"><b><a href="http://qt.nokia.com/doc/4.6/qapplication.html#qwsSetCustomColors">qwsSetCustomColors</a></b> ( QRgb *, int, int )</div></li>
|
||||
<li><div class="fn"><b><a href="http://qt.nokia.com/doc/4.6/qapplication.html#qwsSetDecoration">qwsSetDecoration</a></b> ( QDecoration * )</div></li>
|
||||
<li><div class="fn"><b><a href="http://qt.nokia.com/doc/4.6/qapplication.html#qwsSetDecoration-2">qwsSetDecoration</a></b> ( const QString & )</div></li>
|
||||
<li><div class="fn"><b><a href="http://qt.nokia.com/doc/4.6/qobject.html#receivers">receivers</a></b> ( const char * ) const</div></li>
|
||||
<li><div class="fn"><b><a href="http://qt.nokia.com/doc/4.6/qobject.html#removeEventFilter">removeEventFilter</a></b> ( QObject * )</div></li>
|
||||
<li><div class="fn"><b><a href="http://qt.nokia.com/doc/4.6/qcoreapplication.html#removeLibraryPath">removeLibraryPath</a></b> ( const QString & )</div></li>
|
||||
<li><div class="fn"><b><a href="http://qt.nokia.com/doc/4.6/qcoreapplication.html#removePostedEvents">removePostedEvents</a></b> ( QObject * )</div></li>
|
||||
<li><div class="fn"><b><a href="http://qt.nokia.com/doc/4.6/qcoreapplication.html#removePostedEvents-2">removePostedEvents</a></b> ( QObject *, int )</div></li>
|
||||
<li><div class="fn"><b><a href="http://qt.nokia.com/doc/4.6/qcoreapplication.html#removeTranslator">removeTranslator</a></b> ( QTranslator * )</div></li>
|
||||
<li><div class="fn"><b><a href="http://qt.nokia.com/doc/4.6/qapplication.html#restoreOverrideCursor">restoreOverrideCursor</a></b> ()</div></li>
|
||||
<li><div class="fn"><b><a href="http://qt.nokia.com/doc/4.6/qapplication.html#saveState">saveState</a></b> ( QSessionManager & )</div></li>
|
||||
<li><div class="fn"><b><a href="http://qt.nokia.com/doc/4.6/qapplication.html#saveStateRequest">saveStateRequest</a></b> ( QSessionManager & )</div></li>
|
||||
<li><div class="fn"><b><a href="http://qt.nokia.com/doc/4.6/qcoreapplication.html#sendEvent">sendEvent</a></b> ( QObject *, QEvent * )</div></li>
|
||||
<li><div class="fn"><b><a href="qtsingleapplication.html#sendMessage">sendMessage</a></b> ( const QString &, int ) : bool</div></li>
|
||||
<li><div class="fn"><b><a href="http://qt.nokia.com/doc/4.6/qcoreapplication.html#sendPostedEvents">sendPostedEvents</a></b> ( QObject *, int )</div></li>
|
||||
<li><div class="fn"><b><a href="http://qt.nokia.com/doc/4.6/qcoreapplication.html#sendPostedEvents-2">sendPostedEvents</a></b> ()</div></li>
|
||||
<li><div class="fn"><b><a href="http://qt.nokia.com/doc/4.6/qobject.html#sender">sender</a></b> () const</div></li>
|
||||
<li><div class="fn"><b><a href="http://qt.nokia.com/doc/4.6/qapplication.html#sessionId">sessionId</a></b> () const</div></li>
|
||||
<li><div class="fn"><b><a href="http://qt.nokia.com/doc/4.6/qapplication.html#sessionKey">sessionKey</a></b> () const</div></li>
|
||||
<li><div class="fn"><b><a href="qtsingleapplication.html#setActivationWindow">setActivationWindow</a></b> ( QWidget *, bool )</div></li>
|
||||
<li><div class="fn"><b><a href="http://qt.nokia.com/doc/4.6/qapplication.html#setActiveWindow">setActiveWindow</a></b> ( QWidget * )</div></li>
|
||||
<li><div class="fn"><b><a href="http://qt.nokia.com/doc/4.6/qcoreapplication.html#applicationName-prop">setApplicationName</a></b> ( const QString & )</div></li>
|
||||
<li><div class="fn"><b><a href="http://qt.nokia.com/doc/4.6/qcoreapplication.html#applicationVersion-prop">setApplicationVersion</a></b> ( const QString & )</div></li>
|
||||
<li><div class="fn"><b><a href="http://qt.nokia.com/doc/4.6/qcoreapplication.html#setAttribute">setAttribute</a></b> ( Qt::ApplicationAttribute, bool )</div></li>
|
||||
<li><div class="fn"><b><a href="http://qt.nokia.com/doc/4.6/qapplication.html#autoMaximizeThreshold-prop">setAutoMaximizeThreshold</a></b> ( const int )</div></li>
|
||||
<li><div class="fn"><b><a href="http://qt.nokia.com/doc/4.6/qapplication.html#autoSipEnabled-prop">setAutoSipEnabled</a></b> ( const bool )</div></li>
|
||||
<li><div class="fn"><b><a href="http://qt.nokia.com/doc/4.6/qapplication.html#setColorSpec">setColorSpec</a></b> ( int )</div></li>
|
||||
<li><div class="fn"><b><a href="http://qt.nokia.com/doc/4.6/qapplication.html#cursorFlashTime-prop">setCursorFlashTime</a></b> ( int )</div></li>
|
||||
<li><div class="fn"><b><a href="http://qt.nokia.com/doc/4.6/qapplication.html#setDesktopSettingsAware">setDesktopSettingsAware</a></b> ( bool )</div></li>
|
||||
<li><div class="fn"><b><a href="http://qt.nokia.com/doc/4.6/qapplication.html#doubleClickInterval-prop">setDoubleClickInterval</a></b> ( int )</div></li>
|
||||
<li><div class="fn"><b><a href="http://qt.nokia.com/doc/4.6/qapplication.html#setEffectEnabled">setEffectEnabled</a></b> ( Qt::UIEffect, bool )</div></li>
|
||||
<li><div class="fn"><b><a href="http://qt.nokia.com/doc/4.6/qcoreapplication.html#setEventFilter">setEventFilter</a></b> ( EventFilter )</div></li>
|
||||
<li><div class="fn"><b><a href="http://qt.nokia.com/doc/4.6/qapplication.html#setFont">setFont</a></b> ( const QFont &, const char * )</div></li>
|
||||
<li><div class="fn"><b><a href="http://qt.nokia.com/doc/4.6/qapplication.html#globalStrut-prop">setGlobalStrut</a></b> ( const QSize & )</div></li>
|
||||
<li><div class="fn"><b><a href="http://qt.nokia.com/doc/4.6/qapplication.html#setGraphicsSystem">setGraphicsSystem</a></b> ( const QString & )</div></li>
|
||||
<li><div class="fn"><b><a href="http://qt.nokia.com/doc/4.6/qapplication.html#setInputContext">setInputContext</a></b> ( QInputContext * )</div></li>
|
||||
<li><div class="fn"><b><a href="http://qt.nokia.com/doc/4.6/qapplication.html#keyboardInputInterval-prop">setKeyboardInputInterval</a></b> ( int )</div></li>
|
||||
<li><div class="fn"><b><a href="http://qt.nokia.com/doc/4.6/qapplication.html#layoutDirection-prop">setLayoutDirection</a></b> ( Qt::LayoutDirection )</div></li>
|
||||
<li><div class="fn"><b><a href="http://qt.nokia.com/doc/4.6/qcoreapplication.html#setLibraryPaths">setLibraryPaths</a></b> ( const QStringList & )</div></li>
|
||||
<li><div class="fn"><b><a href="http://qt.nokia.com/doc/4.6/qapplication.html#setNavigationMode">setNavigationMode</a></b> ( Qt::NavigationMode )</div></li>
|
||||
<li><div class="fn"><b><a href="http://qt.nokia.com/doc/4.6/qobject.html#objectName-prop">setObjectName</a></b> ( const QString & )</div></li>
|
||||
<li><div class="fn"><b><a href="http://qt.nokia.com/doc/4.6/qcoreapplication.html#organizationDomain-prop">setOrganizationDomain</a></b> ( const QString & )</div></li>
|
||||
<li><div class="fn"><b><a href="http://qt.nokia.com/doc/4.6/qcoreapplication.html#organizationName-prop">setOrganizationName</a></b> ( const QString & )</div></li>
|
||||
<li><div class="fn"><b><a href="http://qt.nokia.com/doc/4.6/qapplication.html#setOverrideCursor">setOverrideCursor</a></b> ( const QCursor & )</div></li>
|
||||
<li><div class="fn"><b><a href="http://qt.nokia.com/doc/4.6/qapplication.html#setPalette">setPalette</a></b> ( const QPalette &, const char * )</div></li>
|
||||
<li><div class="fn"><b><a href="http://qt.nokia.com/doc/4.6/qobject.html#setParent">setParent</a></b> ( QObject * )</div></li>
|
||||
<li><div class="fn"><b><a href="http://qt.nokia.com/doc/4.6/qobject.html#setProperty">setProperty</a></b> ( const char *, const QVariant & )</div></li>
|
||||
<li><div class="fn"><b><a href="http://qt.nokia.com/doc/4.6/qapplication.html#quitOnLastWindowClosed-prop">setQuitOnLastWindowClosed</a></b> ( bool )</div></li>
|
||||
<li><div class="fn"><b><a href="http://qt.nokia.com/doc/4.6/qapplication.html#startDragDistance-prop">setStartDragDistance</a></b> ( int )</div></li>
|
||||
<li><div class="fn"><b><a href="http://qt.nokia.com/doc/4.6/qapplication.html#startDragTime-prop">setStartDragTime</a></b> ( int )</div></li>
|
||||
<li><div class="fn"><b><a href="http://qt.nokia.com/doc/4.6/qapplication.html#setStyle">setStyle</a></b> ( QStyle * )</div></li>
|
||||
<li><div class="fn"><b><a href="http://qt.nokia.com/doc/4.6/qapplication.html#setStyle-2">setStyle</a></b> ( const QString & )</div></li>
|
||||
<li><div class="fn"><b><a href="http://qt.nokia.com/doc/4.6/qapplication.html#styleSheet-prop">setStyleSheet</a></b> ( const QString & )</div></li>
|
||||
<li><div class="fn"><b><a href="http://qt.nokia.com/doc/4.6/qapplication.html#wheelScrollLines-prop">setWheelScrollLines</a></b> ( int )</div></li>
|
||||
<li><div class="fn"><b><a href="http://qt.nokia.com/doc/4.6/qapplication.html#windowIcon-prop">setWindowIcon</a></b> ( const QIcon & )</div></li>
|
||||
<li><div class="fn"><b><a href="http://qt.nokia.com/doc/4.6/qobject.html#signalsBlocked">signalsBlocked</a></b> () const</div></li>
|
||||
<li><div class="fn"><b><a href="http://qt.nokia.com/doc/4.6/qapplication.html#startDragDistance-prop">startDragDistance</a></b> ()</div></li>
|
||||
<li><div class="fn"><b><a href="http://qt.nokia.com/doc/4.6/qapplication.html#startDragTime-prop">startDragTime</a></b> ()</div></li>
|
||||
<li><div class="fn"><b><a href="http://qt.nokia.com/doc/4.6/qobject.html#startTimer">startTimer</a></b> ( int )</div></li>
|
||||
<li><div class="fn"><b><a href="http://qt.nokia.com/doc/4.6/qcoreapplication.html#startingUp">startingUp</a></b> ()</div></li>
|
||||
<li><div class="fn"><b><a href="http://qt.nokia.com/doc/4.6/qobject.html#staticMetaObject-var">staticMetaObject</a></b> : </div></li>
|
||||
<li><div class="fn"><b><a href="http://qt.nokia.com/doc/4.6/qobject.html#staticQtMetaObject-var">staticQtMetaObject</a></b> : </div></li>
|
||||
<li><div class="fn"><b><a href="http://qt.nokia.com/doc/4.6/qapplication.html#style">style</a></b> ()</div></li>
|
||||
<li><div class="fn"><b><a href="http://qt.nokia.com/doc/4.6/qapplication.html#styleSheet-prop">styleSheet</a></b> () const</div></li>
|
||||
<li><div class="fn"><b><a href="http://qt.nokia.com/doc/4.6/qapplication.html#symbianEventFilter">symbianEventFilter</a></b> ( const QSymbianEvent * )</div></li>
|
||||
<li><div class="fn"><b><a href="http://qt.nokia.com/doc/4.6/qapplication.html#symbianProcessEvent">symbianProcessEvent</a></b> ( const QSymbianEvent * )</div></li>
|
||||
<li><div class="fn"><b><a href="http://qt.nokia.com/doc/4.6/qapplication.html#syncX">syncX</a></b> ()</div></li>
|
||||
<li><div class="fn"><b><a href="http://qt.nokia.com/doc/4.6/qcoreapplication.html#testAttribute">testAttribute</a></b> ( Qt::ApplicationAttribute )</div></li>
|
||||
<li><div class="fn"><b><a href="http://qt.nokia.com/doc/4.6/qobject.html#thread">thread</a></b> () const</div></li>
|
||||
<li><div class="fn"><b><a href="http://qt.nokia.com/doc/4.6/qobject.html#timerEvent">timerEvent</a></b> ( QTimerEvent * )</div></li>
|
||||
<li><div class="fn"><b><a href="http://qt.nokia.com/doc/4.6/qapplication.html#topLevelAt">topLevelAt</a></b> ( const QPoint & )</div></li>
|
||||
<li><div class="fn"><b><a href="http://qt.nokia.com/doc/4.6/qapplication.html#topLevelAt-2">topLevelAt</a></b> ( int, int )</div></li>
|
||||
<li><div class="fn"><b><a href="http://qt.nokia.com/doc/4.6/qapplication.html#topLevelWidgets">topLevelWidgets</a></b> ()</div></li>
|
||||
<li><div class="fn"><b><a href="http://qt.nokia.com/doc/4.6/qobject.html#tr">tr</a></b> ( const char *, const char *, int )</div></li>
|
||||
<li><div class="fn"><b><a href="http://qt.nokia.com/doc/4.6/qobject.html#trUtf8">trUtf8</a></b> ( const char *, const char *, int )</div></li>
|
||||
<li><div class="fn"><b><a href="http://qt.nokia.com/doc/4.6/qcoreapplication.html#translate">translate</a></b> ( const char *, const char *, const char *, Encoding, int )</div></li>
|
||||
<li><div class="fn"><b><a href="http://qt.nokia.com/doc/4.6/qcoreapplication.html#translate-2">translate</a></b> ( const char *, const char *, const char *, Encoding )</div></li>
|
||||
<li><div class="fn"><b><a href="http://qt.nokia.com/doc/4.6/qapplication.html#type">type</a></b> ()</div></li>
|
||||
<li><div class="fn"><b><a href="http://qt.nokia.com/doc/4.6/qapplication.html#wheelScrollLines-prop">wheelScrollLines</a></b> ()</div></li>
|
||||
<li><div class="fn"><b><a href="http://qt.nokia.com/doc/4.6/qapplication.html#widgetAt">widgetAt</a></b> ( const QPoint & )</div></li>
|
||||
<li><div class="fn"><b><a href="http://qt.nokia.com/doc/4.6/qapplication.html#widgetAt-4">widgetAt</a></b> ( int, int )</div></li>
|
||||
<li><div class="fn"><b><a href="http://qt.nokia.com/doc/4.6/qcoreapplication.html#winEventFilter">winEventFilter</a></b> ( MSG *, long * )</div></li>
|
||||
<li><div class="fn"><b><a href="http://qt.nokia.com/doc/4.6/qapplication.html#windowIcon-prop">windowIcon</a></b> ()</div></li>
|
||||
<li><div class="fn"><b><a href="http://qt.nokia.com/doc/4.6/qapplication.html#x11EventFilter">x11EventFilter</a></b> ( XEvent * )</div></li>
|
||||
<li><div class="fn"><b><a href="http://qt.nokia.com/doc/4.6/qapplication.html#x11ProcessEvent">x11ProcessEvent</a></b> ( XEvent * )</div></li>
|
||||
</ul>
|
||||
</td></tr>
|
||||
</table></p>
|
||||
<p /><address><hr /><div align="center">
|
||||
<table width="100%" cellspacing="0" border="0"><tr class="address">
|
||||
<td width="30%" align="left">Copyright © 2010 Nokia Corporation and/or its subsidiary(-ies)</td>
|
||||
<td width="40%" align="center"><a href="http://qt.nokia.com/doc/trademarks.html">Trademarks</a></td>
|
||||
<td width="30%" align="right"><div align="right">Qt Solutions</div></td>
|
||||
</tr></table></div></address></body>
|
||||
</html>
|
|
@ -0,0 +1,31 @@
|
|||
<?xml version="1.0" encoding="iso-8859-1"?>
|
||||
<!DOCTYPE html
|
||||
PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "DTD/xhtml1-strict.dtd">
|
||||
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
|
||||
<!-- qtsingleapplication.cpp -->
|
||||
<head>
|
||||
<title>Obsolete Members for QtSingleApplication</title>
|
||||
<link href="classic.css" rel="stylesheet" type="text/css" />
|
||||
</head>
|
||||
<body>
|
||||
<table border="0" cellpadding="0" cellspacing="0" width="100%">
|
||||
<tr>
|
||||
<td align="left" valign="top" width="32"><img src="images/qt-logo.png" align="left" width="57" height="67" border="0" /></td>
|
||||
<td width="1"> </td><td class="postheader" valign="center"><a href="index.html"><font color="#004faf">Home</font></a></td>
|
||||
</tr></table><h1 class="title">Obsolete Members for QtSingleApplication</h1>
|
||||
<p><b>The following class members are obsolete.</b> They are provided to keep old source code working. We strongly advise against using them in new code.</p>
|
||||
<p><ul><li><a href="qtsingleapplication.html">QtSingleApplication class reference</a></li></ul></p>
|
||||
<h2>Public Functions</h2>
|
||||
<table class="alignedsummary" border="0" cellpadding="0" cellspacing="0" width="100%">
|
||||
<tr><td class="memItemLeft" align="right" valign="top">void </td><td class="memItemRight" valign="bottom"><b><a href="qtsingleapplication-obsolete.html#initialize">initialize</a></b> ( bool <i>dummy</i> = true ) <tt> (obsolete)</tt></td></tr>
|
||||
</table>
|
||||
<hr />
|
||||
<h2>Member Function Documentation</h2>
|
||||
<h3 class="fn"><a name="initialize"></a>void QtSingleApplication::initialize ( bool <i>dummy</i> = true )</h3>
|
||||
<p /><address><hr /><div align="center">
|
||||
<table width="100%" cellspacing="0" border="0"><tr class="address">
|
||||
<td width="30%" align="left">Copyright © 2010 Nokia Corporation and/or its subsidiary(-ies)</td>
|
||||
<td width="40%" align="center"><a href="http://qt.nokia.com/doc/trademarks.html">Trademarks</a></td>
|
||||
<td width="30%" align="right"><div align="right">Qt Solutions</div></td>
|
||||
</tr></table></div></address></body>
|
||||
</html>
|
|
@ -0,0 +1,40 @@
|
|||
<!DOCTYPE DCF>
|
||||
<DCF ref="index.html" icon="qtsingleapplication.png" imagedir="../../gif" title="Qt Solutions: Single Application Documentation">
|
||||
<section ref="classes.html" title="Classes">
|
||||
<section ref="qtsingleapplication.html" title="QtSingleApplication Class Reference">
|
||||
<keyword ref="qtsingleapplication.html">QtSingleApplication</keyword>
|
||||
<keyword ref="qtsingleapplication.html#activateWindow">activateWindow</keyword>
|
||||
<keyword ref="qtsingleapplication.html#activationWindow">activationWindow</keyword>
|
||||
<keyword ref="qtsingleapplication.html#id">id</keyword>
|
||||
<keyword ref="qtsingleapplication.html#isRunning">isRunning</keyword>
|
||||
<keyword ref="qtsingleapplication.html#messageReceived">messageReceived</keyword>
|
||||
<keyword ref="qtsingleapplication.html#sendMessage">sendMessage</keyword>
|
||||
<keyword ref="qtsingleapplication.html#setActivationWindow">setActivationWindow</keyword>
|
||||
<section ref="qtsingleapplication-members.html" title="List of all members"/>
|
||||
<section ref="qtsingleapplication-obsolete.html" title="Obsolete members"/>
|
||||
</section>
|
||||
<section ref="qtsinglecoreapplication.html" title="QtSingleCoreApplication Class Reference">
|
||||
<keyword ref="qtsinglecoreapplication.html">QtSingleCoreApplication</keyword>
|
||||
<keyword ref="qtsinglecoreapplication.html#id">id</keyword>
|
||||
<keyword ref="qtsinglecoreapplication.html#isRunning">isRunning</keyword>
|
||||
<keyword ref="qtsinglecoreapplication.html#messageReceived">messageReceived</keyword>
|
||||
<keyword ref="qtsinglecoreapplication.html#sendMessage">sendMessage</keyword>
|
||||
<section ref="qtsinglecoreapplication-members.html" title="List of all members"/>
|
||||
</section>
|
||||
</section>
|
||||
<section ref="overviews.html" title="Overviews">
|
||||
<section ref="qtsinglecoreapplication-example-console.html" title="A non-GUI example">
|
||||
<keyword ref="qtsinglecoreapplication-example-console.html">A non-GUI example</keyword>
|
||||
</section>
|
||||
<section ref="qtsingleapplication-example-trivial.html" title="A Trivial Example">
|
||||
<keyword ref="qtsingleapplication-example-trivial.html">A Trivial Example</keyword>
|
||||
</section>
|
||||
<section ref="qtsingleapplication-example-loader.html" title="Loading Documents">
|
||||
<keyword ref="qtsingleapplication-example-loader.html">Loading Documents</keyword>
|
||||
</section>
|
||||
<section ref="index.html" title="Single Application">
|
||||
<keyword ref="index.html">Single Application</keyword>
|
||||
</section>
|
||||
</section>
|
||||
<section ref="examples.html" title="Tutorial & Examples"/>
|
||||
</DCF>
|
|
@ -0,0 +1,162 @@
|
|||
<?xml version="1.0" encoding="iso-8859-1"?>
|
||||
<!DOCTYPE html
|
||||
PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "DTD/xhtml1-strict.dtd">
|
||||
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
|
||||
<!-- qtsingleapplication.cpp -->
|
||||
<head>
|
||||
<title>QtSingleApplication Class Reference</title>
|
||||
<link href="classic.css" rel="stylesheet" type="text/css" />
|
||||
</head>
|
||||
<body>
|
||||
<table border="0" cellpadding="0" cellspacing="0" width="100%">
|
||||
<tr>
|
||||
<td align="left" valign="top" width="32"><img src="images/qt-logo.png" align="left" width="57" height="67" border="0" /></td>
|
||||
<td width="1"> </td><td class="postheader" valign="center"><a href="index.html"><font color="#004faf">Home</font></a></td>
|
||||
</tr></table><h1 class="title">QtSingleApplication Class Reference</h1>
|
||||
<p>The QtSingleApplication class provides an API to detect and communicate with running instances of an application. <a href="#details">More...</a></p>
|
||||
<pre> #include <QtSingleApplication></pre><p>Inherits <a href="http://qt.nokia.com/doc/4.6/qapplication.html">QApplication</a>.</p>
|
||||
<ul>
|
||||
<li><a href="qtsingleapplication-members.html">List of all members, including inherited members</a></li>
|
||||
<li><a href="qtsingleapplication-obsolete.html">Obsolete members</a></li>
|
||||
</ul>
|
||||
<hr />
|
||||
<a name="public-functions"></a>
|
||||
<h2>Public Functions</h2>
|
||||
<table class="alignedsummary" border="0" cellpadding="0" cellspacing="0" width="100%">
|
||||
<tr><td class="memItemLeft" align="right" valign="top"></td><td class="memItemRight" valign="bottom"><b><a href="qtsingleapplication.html#QtSingleApplication">QtSingleApplication</a></b> ( int & <i>argc</i>, char ** <i>argv</i>, bool <i>GUIenabled</i> = true )</td></tr>
|
||||
<tr><td class="memItemLeft" align="right" valign="top"></td><td class="memItemRight" valign="bottom"><b><a href="qtsingleapplication.html#QtSingleApplication-2">QtSingleApplication</a></b> ( const QString & <i>appId</i>, int & <i>argc</i>, char ** <i>argv</i> )</td></tr>
|
||||
<tr><td class="memItemLeft" align="right" valign="top"></td><td class="memItemRight" valign="bottom"><b><a href="qtsingleapplication.html#QtSingleApplication-3">QtSingleApplication</a></b> ( int & <i>argc</i>, char ** <i>argv</i>, Type <i>type</i> )</td></tr>
|
||||
<tr><td class="memItemLeft" align="right" valign="top"></td><td class="memItemRight" valign="bottom"><b><a href="qtsingleapplication.html#QtSingleApplication-4">QtSingleApplication</a></b> ( Display * <i>dpy</i>, Qt::HANDLE <i>visual</i> = 0, Qt::HANDLE <i>cmap</i> = 0 )</td></tr>
|
||||
<tr><td class="memItemLeft" align="right" valign="top"></td><td class="memItemRight" valign="bottom"><b><a href="qtsingleapplication.html#QtSingleApplication-5">QtSingleApplication</a></b> ( Display * <i>dpy</i>, int & <i>argc</i>, char ** <i>argv</i>, Qt::HANDLE <i>visual</i> = 0, Qt::HANDLE <i>cmap</i> = 0 )</td></tr>
|
||||
<tr><td class="memItemLeft" align="right" valign="top"></td><td class="memItemRight" valign="bottom"><b><a href="qtsingleapplication.html#QtSingleApplication-6">QtSingleApplication</a></b> ( Display * <i>dpy</i>, const QString & <i>appId</i>, int <i>argc</i>, char ** <i>argv</i>, Qt::HANDLE <i>visual</i> = 0, Qt::HANDLE <i>cmap</i> = 0 )</td></tr>
|
||||
<tr><td class="memItemLeft" align="right" valign="top">QWidget * </td><td class="memItemRight" valign="bottom"><b><a href="qtsingleapplication.html#activationWindow">activationWindow</a></b> () const</td></tr>
|
||||
<tr><td class="memItemLeft" align="right" valign="top">QString </td><td class="memItemRight" valign="bottom"><b><a href="qtsingleapplication.html#id">id</a></b> () const</td></tr>
|
||||
<tr><td class="memItemLeft" align="right" valign="top">bool </td><td class="memItemRight" valign="bottom"><b><a href="qtsingleapplication.html#isRunning">isRunning</a></b> ()</td></tr>
|
||||
<tr><td class="memItemLeft" align="right" valign="top">void </td><td class="memItemRight" valign="bottom"><b><a href="qtsingleapplication.html#setActivationWindow">setActivationWindow</a></b> ( QWidget * <i>aw</i>, bool <i>activateOnMessage</i> = true )</td></tr>
|
||||
</table>
|
||||
<ul>
|
||||
<li><div bar="2" class="fn"></div>16 public functions inherited from <a href="http://qt.nokia.com/doc/4.6/qapplication.html#public-functions">QApplication</a></li>
|
||||
<li><div bar="2" class="fn"></div>4 public functions inherited from <a href="http://qt.nokia.com/doc/4.6/qcoreapplication.html#public-functions">QCoreApplication</a></li>
|
||||
<li><div bar="2" class="fn"></div>29 public functions inherited from <a href="http://qt.nokia.com/doc/4.6/qobject.html#public-functions">QObject</a></li>
|
||||
</ul>
|
||||
<hr />
|
||||
<a name="public-slots"></a>
|
||||
<h2>Public Slots</h2>
|
||||
<table class="alignedsummary" border="0" cellpadding="0" cellspacing="0" width="100%">
|
||||
<tr><td class="memItemLeft" align="right" valign="top">void </td><td class="memItemRight" valign="bottom"><b><a href="qtsingleapplication.html#activateWindow">activateWindow</a></b> ()</td></tr>
|
||||
<tr><td class="memItemLeft" align="right" valign="top">bool </td><td class="memItemRight" valign="bottom"><b><a href="qtsingleapplication.html#sendMessage">sendMessage</a></b> ( const QString & <i>message</i>, int <i>timeout</i> = 5000 )</td></tr>
|
||||
</table>
|
||||
<ul>
|
||||
<li><div bar="2" class="fn"></div>7 public slots inherited from <a href="http://qt.nokia.com/doc/4.6/qapplication.html#public-slots">QApplication</a></li>
|
||||
<li><div bar="2" class="fn"></div>1 public slot inherited from <a href="http://qt.nokia.com/doc/4.6/qcoreapplication.html#public-slots">QCoreApplication</a></li>
|
||||
<li><div bar="2" class="fn"></div>1 public slot inherited from <a href="http://qt.nokia.com/doc/4.6/qobject.html#public-slots">QObject</a></li>
|
||||
</ul>
|
||||
<hr />
|
||||
<a name="signals"></a>
|
||||
<h2>Signals</h2>
|
||||
<table class="alignedsummary" border="0" cellpadding="0" cellspacing="0" width="100%">
|
||||
<tr><td class="memItemLeft" align="right" valign="top">void </td><td class="memItemRight" valign="bottom"><b><a href="qtsingleapplication.html#messageReceived">messageReceived</a></b> ( const QString & <i>message</i> )</td></tr>
|
||||
</table>
|
||||
<ul>
|
||||
<li><div bar="2" class="fn"></div>5 signals inherited from <a href="http://qt.nokia.com/doc/4.6/qapplication.html#signals">QApplication</a></li>
|
||||
<li><div bar="2" class="fn"></div>1 signal inherited from <a href="http://qt.nokia.com/doc/4.6/qcoreapplication.html#signals">QCoreApplication</a></li>
|
||||
<li><div bar="2" class="fn"></div>1 signal inherited from <a href="http://qt.nokia.com/doc/4.6/qobject.html#signals">QObject</a></li>
|
||||
</ul>
|
||||
<h3>Additional Inherited Members</h3>
|
||||
<ul>
|
||||
<li><div class="fn"></div>13 properties inherited from <a href="http://qt.nokia.com/doc/4.6/qapplication.html#properties">QApplication</a></li>
|
||||
<li><div class="fn"></div>4 properties inherited from <a href="http://qt.nokia.com/doc/4.6/qcoreapplication.html#properties">QCoreApplication</a></li>
|
||||
<li><div class="fn"></div>1 property inherited from <a href="http://qt.nokia.com/doc/4.6/qobject.html#properties">QObject</a></li>
|
||||
<li><div class="fn"></div>1 public type inherited from <a href="http://qt.nokia.com/doc/4.6/qobject.html#public-variables">QObject</a></li>
|
||||
<li><div class="fn"></div>73 static public members inherited from <a href="http://qt.nokia.com/doc/4.6/qapplication.html#static-public-members">QApplication</a></li>
|
||||
<li><div class="fn"></div>38 static public members inherited from <a href="http://qt.nokia.com/doc/4.6/qcoreapplication.html#static-public-members">QCoreApplication</a></li>
|
||||
<li><div class="fn"></div>4 static public members inherited from <a href="http://qt.nokia.com/doc/4.6/qobject.html#static-public-members">QObject</a></li>
|
||||
<li><div class="fn"></div>1 protected function inherited from <a href="http://qt.nokia.com/doc/4.6/qapplication.html#protected-functions">QApplication</a></li>
|
||||
<li><div class="fn"></div>1 protected function inherited from <a href="http://qt.nokia.com/doc/4.6/qcoreapplication.html#protected-functions">QCoreApplication</a></li>
|
||||
<li><div class="fn"></div>7 protected functions inherited from <a href="http://qt.nokia.com/doc/4.6/qobject.html#protected-functions">QObject</a></li>
|
||||
<li><div class="fn"></div>2 protected variables inherited from <a href="http://qt.nokia.com/doc/4.6/qobject.html#protected-variables">QObject</a></li>
|
||||
</ul>
|
||||
<a name="details"></a>
|
||||
<hr />
|
||||
<h2>Detailed Description</h2>
|
||||
<p>The QtSingleApplication class provides an API to detect and communicate with running instances of an application.</p>
|
||||
<p>This class allows you to create applications where only one instance should be running at a time. I.e., if the user tries to launch another instance, the already running instance will be activated instead. Another usecase is a client-server system, where the first started instance will assume the role of server, and the later instances will act as clients of that server.</p>
|
||||
<p>By default, the full path of the executable file is used to determine whether two processes are instances of the same application. You can also provide an explicit identifier string that will be compared instead.</p>
|
||||
<p>The application should create the QtSingleApplication object early in the startup phase, and call <a href="qtsingleapplication.html#isRunning">isRunning</a>() to find out if another instance of this application is already running. If <a href="qtsingleapplication.html#isRunning">isRunning</a>() returns false, it means that no other instance is running, and this instance has assumed the role as the running instance. In this case, the application should continue with the initialization of the application user interface before entering the event loop with <a href="http://qt.nokia.com/doc/4.6/qapplication.html#exec">exec</a>(), as normal.</p>
|
||||
<p>The <a href="qtsingleapplication.html#messageReceived">messageReceived</a>() signal will be emitted when the running application receives messages from another instance of the same application. When a message is received it might be helpful to the user to raise the application so that it becomes visible. To facilitate this, QtSingleApplication provides the <a href="qtsingleapplication.html#setActivationWindow">setActivationWindow</a>() function and the <a href="qtsingleapplication.html#activateWindow">activateWindow</a>() slot.</p>
|
||||
<p>If <a href="qtsingleapplication.html#isRunning">isRunning</a>() returns true, another instance is already running. It may be alerted to the fact that another instance has started by using the <a href="qtsingleapplication.html#sendMessage">sendMessage</a>() function. Also data such as startup parameters (e.g. the name of the file the user wanted this new instance to open) can be passed to the running instance with this function. Then, the application should terminate (or enter client mode).</p>
|
||||
<p>If <a href="qtsingleapplication.html#isRunning">isRunning</a>() returns true, but <a href="qtsingleapplication.html#sendMessage">sendMessage</a>() fails, that is an indication that the running instance is frozen.</p>
|
||||
<p>Here's an example that shows how to convert an existing application to use QtSingleApplication. It is very simple and does not make use of all QtSingleApplication's functionality (see the examples for that).</p>
|
||||
<pre><span class="comment"> // Original</span>
|
||||
int main(int argc, char **argv)
|
||||
{
|
||||
QApplication app(argc, argv);
|
||||
|
||||
MyMainWidget mmw;
|
||||
mmw.show();
|
||||
return app.exec();
|
||||
}
|
||||
|
||||
<span class="comment"> // Single instance</span>
|
||||
int main(int argc, char **argv)
|
||||
{
|
||||
QtSingleApplication app(argc, argv);
|
||||
|
||||
if (app.isRunning())
|
||||
return !app.sendMessage(someDataString);
|
||||
|
||||
MyMainWidget mmw;
|
||||
app.setActivationWindow(&mmw);
|
||||
mmw.show();
|
||||
return app.exec();
|
||||
}</pre>
|
||||
<p>Once this QtSingleApplication instance is destroyed (normally when the process exits or crashes), when the user next attempts to run the application this instance will not, of course, be encountered. The next instance to call <a href="qtsingleapplication.html#isRunning">isRunning</a>() or <a href="qtsingleapplication.html#sendMessage">sendMessage</a>() will assume the role as the new running instance.</p>
|
||||
<p>For console (non-GUI) applications, <a href="qtsinglecoreapplication.html">QtSingleCoreApplication</a> may be used instead of this class, to avoid the dependency on the <a href="http://qt.nokia.com/doc/4.6/qtgui.html">QtGui</a> library.</p>
|
||||
<p>See also <a href="qtsinglecoreapplication.html">QtSingleCoreApplication</a>.</p>
|
||||
<hr />
|
||||
<h2>Member Function Documentation</h2>
|
||||
<h3 class="fn"><a name="QtSingleApplication"></a>QtSingleApplication::QtSingleApplication ( int & <i>argc</i>, char ** <i>argv</i>, bool <i>GUIenabled</i> = true )</h3>
|
||||
<p>Creates a <a href="qtsingleapplication.html">QtSingleApplication</a> object. The application identifier will be <a href="http://qt.nokia.com/doc/4.6/qcoreapplication.html#applicationFilePath">QCoreApplication::applicationFilePath</a>(). <i>argc</i>, <i>argv</i>, and <i>GUIenabled</i> are passed on to the QAppliation constructor.</p>
|
||||
<p>If you are creating a console application (i.e. setting <i>GUIenabled</i> to false), you may consider using <a href="qtsinglecoreapplication.html">QtSingleCoreApplication</a> instead.</p>
|
||||
<h3 class="fn"><a name="QtSingleApplication-2"></a>QtSingleApplication::QtSingleApplication ( const <a href="http://qt.nokia.com/doc/4.6/qstring.html">QString</a> & <i>appId</i>, int & <i>argc</i>, char ** <i>argv</i> )</h3>
|
||||
<p>Creates a <a href="qtsingleapplication.html">QtSingleApplication</a> object with the application identifier <i>appId</i>. <i>argc</i> and <i>argv</i> are passed on to the QAppliation constructor.</p>
|
||||
<h3 class="fn"><a name="QtSingleApplication-3"></a>QtSingleApplication::QtSingleApplication ( int & <i>argc</i>, char ** <i>argv</i>, <a href="http://qt.nokia.com/doc/4.6/qapplication.html#Type-enum">Type</a> <i>type</i> )</h3>
|
||||
<p>Creates a <a href="qtsingleapplication.html">QtSingleApplication</a> object. The application identifier will be <a href="http://qt.nokia.com/doc/4.6/qcoreapplication.html#applicationFilePath">QCoreApplication::applicationFilePath</a>(). <i>argc</i>, <i>argv</i>, and <i>type</i> are passed on to the QAppliation constructor.</p>
|
||||
<h3 class="fn"><a name="QtSingleApplication-4"></a>QtSingleApplication::QtSingleApplication ( Display * <i>dpy</i>, <a href="http://qt.nokia.com/doc/4.6/qt.html#HANDLE-typedef">Qt::HANDLE</a> <i>visual</i> = 0, <a href="http://qt.nokia.com/doc/4.6/qt.html#HANDLE-typedef">Qt::HANDLE</a> <i>cmap</i> = 0 )</h3>
|
||||
<p>Special constructor for X11, ref. the documentation of <a href="http://qt.nokia.com/doc/4.6/qapplication.html">QApplication</a>'s corresponding constructor. The application identifier will be <a href="http://qt.nokia.com/doc/4.6/qcoreapplication.html#applicationFilePath">QCoreApplication::applicationFilePath</a>(). <i>dpy</i>, <i>visual</i>, and <i>cmap</i> are passed on to the <a href="http://qt.nokia.com/doc/4.6/qapplication.html">QApplication</a> constructor.</p>
|
||||
<h3 class="fn"><a name="QtSingleApplication-5"></a>QtSingleApplication::QtSingleApplication ( Display * <i>dpy</i>, int & <i>argc</i>, char ** <i>argv</i>, <a href="http://qt.nokia.com/doc/4.6/qt.html#HANDLE-typedef">Qt::HANDLE</a> <i>visual</i> = 0, <a href="http://qt.nokia.com/doc/4.6/qt.html#HANDLE-typedef">Qt::HANDLE</a> <i>cmap</i> = 0 )</h3>
|
||||
<p>Special constructor for X11, ref. the documentation of <a href="http://qt.nokia.com/doc/4.6/qapplication.html">QApplication</a>'s corresponding constructor. The application identifier will be <a href="http://qt.nokia.com/doc/4.6/qcoreapplication.html#applicationFilePath">QCoreApplication::applicationFilePath</a>(). <i>dpy</i>, <i>argc</i>, <i>argv</i>, <i>visual</i>, and <i>cmap</i> are passed on to the <a href="http://qt.nokia.com/doc/4.6/qapplication.html">QApplication</a> constructor.</p>
|
||||
<h3 class="fn"><a name="QtSingleApplication-6"></a>QtSingleApplication::QtSingleApplication ( Display * <i>dpy</i>, const <a href="http://qt.nokia.com/doc/4.6/qstring.html">QString</a> & <i>appId</i>, int <i>argc</i>, char ** <i>argv</i>, <a href="http://qt.nokia.com/doc/4.6/qt.html#HANDLE-typedef">Qt::HANDLE</a> <i>visual</i> = 0, <a href="http://qt.nokia.com/doc/4.6/qt.html#HANDLE-typedef">Qt::HANDLE</a> <i>cmap</i> = 0 )</h3>
|
||||
<p>Special constructor for X11, ref. the documentation of <a href="http://qt.nokia.com/doc/4.6/qapplication.html">QApplication</a>'s corresponding constructor. The application identifier will be <i>appId</i>. <i>dpy</i>, <i>argc</i>, <i>argv</i>, <i>visual</i>, and <i>cmap</i> are passed on to the <a href="http://qt.nokia.com/doc/4.6/qapplication.html">QApplication</a> constructor.</p>
|
||||
<h3 class="fn"><a name="activateWindow"></a>void QtSingleApplication::activateWindow () <tt> [slot]</tt></h3>
|
||||
<p>De-minimizes, raises, and activates this application's activation window. This function does nothing if no activation window has been set.</p>
|
||||
<p>This is a convenience function to show the user that this application instance has been activated when he has tried to start another instance.</p>
|
||||
<p>This function should typically be called in response to the <a href="qtsingleapplication.html#messageReceived">messageReceived</a>() signal. By default, that will happen automatically, if an activation window has been set.</p>
|
||||
<p>See also <a href="qtsingleapplication.html#setActivationWindow">setActivationWindow</a>(), <a href="qtsingleapplication.html#messageReceived">messageReceived</a>(), and <a href="qtsingleapplication-obsolete.html#initialize" class="obsolete">initialize</a>().</p>
|
||||
<h3 class="fn"><a name="activationWindow"></a><a href="http://qt.nokia.com/doc/4.6/qwidget.html">QWidget</a> * QtSingleApplication::activationWindow () const</h3>
|
||||
<p>Returns the applications activation window if one has been set by calling <a href="qtsingleapplication.html#setActivationWindow">setActivationWindow</a>(), otherwise returns 0.</p>
|
||||
<p>See also <a href="qtsingleapplication.html#setActivationWindow">setActivationWindow</a>().</p>
|
||||
<h3 class="fn"><a name="id"></a><a href="http://qt.nokia.com/doc/4.6/qstring.html">QString</a> QtSingleApplication::id () const</h3>
|
||||
<p>Returns the application identifier. Two processes with the same identifier will be regarded as instances of the same application.</p>
|
||||
<h3 class="fn"><a name="isRunning"></a>bool QtSingleApplication::isRunning ()</h3>
|
||||
<p>Returns true if another instance of this application is running; otherwise false.</p>
|
||||
<p>This function does not find instances of this application that are being run by a different user (on Windows: that are running in another session).</p>
|
||||
<p>See also <a href="qtsingleapplication.html#sendMessage">sendMessage</a>().</p>
|
||||
<h3 class="fn"><a name="messageReceived"></a>void QtSingleApplication::messageReceived ( const <a href="http://qt.nokia.com/doc/4.6/qstring.html">QString</a> & <i>message</i> ) <tt> [signal]</tt></h3>
|
||||
<p>This signal is emitted when the current instance receives a <i>message</i> from another instance of this application.</p>
|
||||
<p>See also <a href="qtsingleapplication.html#sendMessage">sendMessage</a>(), <a href="qtsingleapplication.html#setActivationWindow">setActivationWindow</a>(), and <a href="qtsingleapplication.html#activateWindow">activateWindow</a>().</p>
|
||||
<h3 class="fn"><a name="sendMessage"></a>bool QtSingleApplication::sendMessage ( const <a href="http://qt.nokia.com/doc/4.6/qstring.html">QString</a> & <i>message</i>, int <i>timeout</i> = 5000 ) <tt> [slot]</tt></h3>
|
||||
<p>Tries to send the text <i>message</i> to the currently running instance. The <a href="qtsingleapplication.html">QtSingleApplication</a> object in the running instance will emit the <a href="qtsingleapplication.html#messageReceived">messageReceived</a>() signal when it receives the message.</p>
|
||||
<p>This function returns true if the message has been sent to, and processed by, the current instance. If there is no instance currently running, or if the running instance fails to process the message within <i>timeout</i> milliseconds, this function return false.</p>
|
||||
<p>See also <a href="qtsingleapplication.html#isRunning">isRunning</a>() and <a href="qtsingleapplication.html#messageReceived">messageReceived</a>().</p>
|
||||
<h3 class="fn"><a name="setActivationWindow"></a>void QtSingleApplication::setActivationWindow ( <a href="http://qt.nokia.com/doc/4.6/qwidget.html">QWidget</a> * <i>aw</i>, bool <i>activateOnMessage</i> = true )</h3>
|
||||
<p>Sets the activation window of this application to <i>aw</i>. The activation window is the widget that will be activated by <a href="qtsingleapplication.html#activateWindow">activateWindow</a>(). This is typically the application's main window.</p>
|
||||
<p>If <i>activateOnMessage</i> is true (the default), the window will be activated automatically every time a message is received, just prior to the <a href="qtsingleapplication.html#messageReceived">messageReceived</a>() signal being emitted.</p>
|
||||
<p>See also <a href="qtsingleapplication.html#activationWindow">activationWindow</a>(), <a href="qtsingleapplication.html#activateWindow">activateWindow</a>(), and <a href="qtsingleapplication.html#messageReceived">messageReceived</a>().</p>
|
||||
<p /><address><hr /><div align="center">
|
||||
<table width="100%" cellspacing="0" border="0"><tr class="address">
|
||||
<td width="30%" align="left">Copyright © 2010 Nokia Corporation and/or its subsidiary(-ies)</td>
|
||||
<td width="40%" align="center"><a href="http://qt.nokia.com/doc/trademarks.html">Trademarks</a></td>
|
||||
<td width="30%" align="right"><div align="right">Qt Solutions</div></td>
|
||||
</tr></table></div></address></body>
|
||||
</html>
|
|
@ -0,0 +1,90 @@
|
|||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<!DOCTYPE QDOCINDEX>
|
||||
<INDEX url="" title="Qt Solutions: Single Application Documentation" version="">
|
||||
<namespace access="public" threadsafety="unspecified" status="commendable" name="" href="" location="" module="">
|
||||
<class access="public" threadsafety="unspecified" status="commendable" name="QtSingleCoreApplication" href="qtsinglecoreapplication.html" location="qtsinglecoreapplication.h" bases="QCoreApplication" module="">
|
||||
<function access="public" threadsafety="unspecified" status="commendable" name="QtSingleCoreApplication" fullname="QtSingleCoreApplication::QtSingleCoreApplication" href="qtsinglecoreapplication.html#QtSingleCoreApplication" location="qtsinglecoreapplication.h" virtual="non" meta="constructor" const="false" static="false" overload="false" type="" signature="QtSingleCoreApplication(int & argc, char ** argv)">
|
||||
<parameter left="int &" right="" name="argc" default=""/>
|
||||
<parameter left="char **" right="" name="argv" default=""/>
|
||||
</function>
|
||||
<function access="public" threadsafety="unspecified" status="commendable" name="QtSingleCoreApplication" fullname="QtSingleCoreApplication::QtSingleCoreApplication" href="qtsinglecoreapplication.html#QtSingleCoreApplication-2" location="qtsinglecoreapplication.h" virtual="non" meta="constructor" const="false" static="false" overload="true" overload-number="2" type="" signature="QtSingleCoreApplication(const QString & appId, int & argc, char ** argv)">
|
||||
<parameter left="const QString &" right="" name="appId" default=""/>
|
||||
<parameter left="int &" right="" name="argc" default=""/>
|
||||
<parameter left="char **" right="" name="argv" default=""/>
|
||||
</function>
|
||||
<function access="public" threadsafety="unspecified" status="commendable" name="isRunning" fullname="QtSingleCoreApplication::isRunning" href="qtsinglecoreapplication.html#isRunning" location="qtsinglecoreapplication.h" virtual="non" meta="plain" const="false" static="false" overload="false" type="bool" signature="isRunning()"/>
|
||||
<function access="public" threadsafety="unspecified" status="commendable" name="id" fullname="QtSingleCoreApplication::id" href="qtsinglecoreapplication.html#id" location="qtsinglecoreapplication.h" virtual="non" meta="plain" const="true" static="false" overload="false" type="QString" signature="id() const"/>
|
||||
<function access="public" threadsafety="unspecified" status="commendable" name="sendMessage" fullname="QtSingleCoreApplication::sendMessage" href="qtsinglecoreapplication.html#sendMessage" location="qtsinglecoreapplication.h" virtual="non" meta="slot" const="false" static="false" overload="false" type="bool" signature="sendMessage(const QString & message, int timeout)">
|
||||
<parameter left="const QString &" right="" name="message" default=""/>
|
||||
<parameter left="int" right="" name="timeout" default="5000"/>
|
||||
</function>
|
||||
<function access="public" threadsafety="unspecified" status="commendable" name="messageReceived" fullname="QtSingleCoreApplication::messageReceived" href="qtsinglecoreapplication.html#messageReceived" location="qtsinglecoreapplication.h" virtual="non" meta="signal" const="false" static="false" overload="false" type="void" signature="messageReceived(const QString & message)">
|
||||
<parameter left="const QString &" right="" name="message" default=""/>
|
||||
</function>
|
||||
</class>
|
||||
<class access="public" threadsafety="unspecified" status="commendable" name="QtSingleApplication" href="qtsingleapplication.html" location="qtsingleapplication.h" bases="QApplication" module="">
|
||||
<function access="public" threadsafety="unspecified" status="commendable" name="QtSingleApplication" fullname="QtSingleApplication::QtSingleApplication" href="qtsingleapplication.html#QtSingleApplication" location="qtsingleapplication.h" virtual="non" meta="constructor" const="false" static="false" overload="false" type="" signature="QtSingleApplication(int & argc, char ** argv, bool GUIenabled)">
|
||||
<parameter left="int &" right="" name="argc" default=""/>
|
||||
<parameter left="char **" right="" name="argv" default=""/>
|
||||
<parameter left="bool" right="" name="GUIenabled" default="true"/>
|
||||
</function>
|
||||
<function access="public" threadsafety="unspecified" status="commendable" name="QtSingleApplication" fullname="QtSingleApplication::QtSingleApplication" href="qtsingleapplication.html#QtSingleApplication-2" location="qtsingleapplication.h" virtual="non" meta="constructor" const="false" static="false" overload="true" overload-number="2" type="" signature="QtSingleApplication(const QString & appId, int & argc, char ** argv)">
|
||||
<parameter left="const QString &" right="" name="appId" default=""/>
|
||||
<parameter left="int &" right="" name="argc" default=""/>
|
||||
<parameter left="char **" right="" name="argv" default=""/>
|
||||
</function>
|
||||
<function access="public" threadsafety="unspecified" status="commendable" name="QtSingleApplication" fullname="QtSingleApplication::QtSingleApplication" href="qtsingleapplication.html#QtSingleApplication-3" location="qtsingleapplication.h" virtual="non" meta="constructor" const="false" static="false" overload="true" overload-number="3" type="" signature="QtSingleApplication(int & argc, char ** argv, Type type)">
|
||||
<parameter left="int &" right="" name="argc" default=""/>
|
||||
<parameter left="char **" right="" name="argv" default=""/>
|
||||
<parameter left="Type" right="" name="type" default=""/>
|
||||
</function>
|
||||
<function access="public" threadsafety="unspecified" status="commendable" name="QtSingleApplication" fullname="QtSingleApplication::QtSingleApplication" href="qtsingleapplication.html#QtSingleApplication-4" location="qtsingleapplication.h" virtual="non" meta="constructor" const="false" static="false" overload="true" overload-number="4" type="" signature="QtSingleApplication(Display * dpy, Qt::HANDLE visual, Qt::HANDLE cmap)">
|
||||
<parameter left="Display *" right="" name="dpy" default=""/>
|
||||
<parameter left="Qt::HANDLE" right="" name="visual" default="0"/>
|
||||
<parameter left="Qt::HANDLE" right="" name="cmap" default="0"/>
|
||||
</function>
|
||||
<function access="public" threadsafety="unspecified" status="commendable" name="QtSingleApplication" fullname="QtSingleApplication::QtSingleApplication" href="qtsingleapplication.html#QtSingleApplication-5" location="qtsingleapplication.h" virtual="non" meta="constructor" const="false" static="false" overload="true" overload-number="5" type="" signature="QtSingleApplication(Display * dpy, int & argc, char ** argv, Qt::HANDLE visual, Qt::HANDLE cmap)">
|
||||
<parameter left="Display *" right="" name="dpy" default=""/>
|
||||
<parameter left="int &" right="" name="argc" default=""/>
|
||||
<parameter left="char **" right="" name="argv" default=""/>
|
||||
<parameter left="Qt::HANDLE" right="" name="visual" default="0"/>
|
||||
<parameter left="Qt::HANDLE" right="" name="cmap" default="0"/>
|
||||
</function>
|
||||
<function access="public" threadsafety="unspecified" status="commendable" name="QtSingleApplication" fullname="QtSingleApplication::QtSingleApplication" href="qtsingleapplication.html#QtSingleApplication-6" location="qtsingleapplication.h" virtual="non" meta="constructor" const="false" static="false" overload="true" overload-number="6" type="" signature="QtSingleApplication(Display * dpy, const QString & appId, int argc, char ** argv, Qt::HANDLE visual, Qt::HANDLE cmap)">
|
||||
<parameter left="Display *" right="" name="dpy" default=""/>
|
||||
<parameter left="const QString &" right="" name="appId" default=""/>
|
||||
<parameter left="int" right="" name="argc" default=""/>
|
||||
<parameter left="char **" right="" name="argv" default=""/>
|
||||
<parameter left="Qt::HANDLE" right="" name="visual" default="0"/>
|
||||
<parameter left="Qt::HANDLE" right="" name="cmap" default="0"/>
|
||||
</function>
|
||||
<function access="public" threadsafety="unspecified" status="commendable" name="isRunning" fullname="QtSingleApplication::isRunning" href="qtsingleapplication.html#isRunning" location="qtsingleapplication.h" virtual="non" meta="plain" const="false" static="false" overload="false" type="bool" signature="isRunning()"/>
|
||||
<function access="public" threadsafety="unspecified" status="commendable" name="id" fullname="QtSingleApplication::id" href="qtsingleapplication.html#id" location="qtsingleapplication.h" virtual="non" meta="plain" const="true" static="false" overload="false" type="QString" signature="id() const"/>
|
||||
<function access="public" threadsafety="unspecified" status="commendable" name="setActivationWindow" fullname="QtSingleApplication::setActivationWindow" href="qtsingleapplication.html#setActivationWindow" location="qtsingleapplication.h" virtual="non" meta="plain" const="false" static="false" overload="false" type="void" signature="setActivationWindow(QWidget * aw, bool activateOnMessage)">
|
||||
<parameter left="QWidget *" right="" name="aw" default=""/>
|
||||
<parameter left="bool" right="" name="activateOnMessage" default="true"/>
|
||||
</function>
|
||||
<function access="public" threadsafety="unspecified" status="commendable" name="activationWindow" fullname="QtSingleApplication::activationWindow" href="qtsingleapplication.html#activationWindow" location="qtsingleapplication.h" virtual="non" meta="plain" const="true" static="false" overload="false" type="QWidget *" signature="activationWindow() const"/>
|
||||
<function access="public" threadsafety="unspecified" status="obsolete" name="initialize" fullname="QtSingleApplication::initialize" href="qtsingleapplication-obsolete.html#initialize" location="qtsingleapplication.h" virtual="non" meta="plain" const="false" static="false" overload="false" type="void" signature="initialize(bool dummy)">
|
||||
<parameter left="bool" right="" name="dummy" default="true"/>
|
||||
</function>
|
||||
<function access="public" threadsafety="unspecified" status="commendable" name="sendMessage" fullname="QtSingleApplication::sendMessage" href="qtsingleapplication.html#sendMessage" location="qtsingleapplication.h" virtual="non" meta="slot" const="false" static="false" overload="false" type="bool" signature="sendMessage(const QString & message, int timeout)">
|
||||
<parameter left="const QString &" right="" name="message" default=""/>
|
||||
<parameter left="int" right="" name="timeout" default="5000"/>
|
||||
</function>
|
||||
<function access="public" threadsafety="unspecified" status="commendable" name="activateWindow" fullname="QtSingleApplication::activateWindow" href="qtsingleapplication.html#activateWindow" location="qtsingleapplication.h" virtual="non" meta="slot" const="false" static="false" overload="false" type="void" signature="activateWindow()"/>
|
||||
<function access="public" threadsafety="unspecified" status="commendable" name="messageReceived" fullname="QtSingleApplication::messageReceived" href="qtsingleapplication.html#messageReceived" location="qtsingleapplication.h" virtual="non" meta="signal" const="false" static="false" overload="false" type="void" signature="messageReceived(const QString & message)">
|
||||
<parameter left="const QString &" right="" name="message" default=""/>
|
||||
</function>
|
||||
</class>
|
||||
<page access="public" status="commendable" name="index.html" href="index.html" subtype="page" title="Single Application" fulltitle="Single Application" subtitle="" location="index.qdoc">
|
||||
<contents name="description" title="Description" level="1"/>
|
||||
<contents name="classes" title="Classes" level="1"/>
|
||||
<contents name="examples" title="Examples" level="1"/>
|
||||
<contents name="tested-platforms" title="Tested platforms" level="1"/>
|
||||
</page>
|
||||
<page access="public" status="commendable" name="qtsingleapplication-example-trivial.html" href="qtsingleapplication-example-trivial.html" subtype="page" title="A Trivial Example" fulltitle="A Trivial Example" subtitle="" location="trivial.qdoc"/>
|
||||
<page access="public" status="commendable" name="qtsinglecoreapplication-example-console.html" href="qtsinglecoreapplication-example-console.html" subtype="page" title="A non-GUI example" fulltitle="A non-GUI example" subtitle="" location="console.qdoc"/>
|
||||
<page access="public" status="commendable" name="qtsingleapplication-example-loader.html" href="qtsingleapplication-example-loader.html" subtype="page" title="Loading Documents" fulltitle="Loading Documents" subtitle="" location="loader.qdoc"/>
|
||||
</namespace>
|
||||
</INDEX>
|
|
@ -0,0 +1,53 @@
|
|||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<QtHelpProject version="1.0">
|
||||
<namespace>com.nokia.qtsolutions.qtsingleapplication_head</namespace>
|
||||
<virtualFolder>qdoc</virtualFolder>
|
||||
<customFilter name="Qt Solutions: Single Application">
|
||||
<filterAttribute>qt</filterAttribute>
|
||||
<filterAttribute>solutions</filterAttribute>
|
||||
<filterAttribute>qtsingleapplication</filterAttribute>
|
||||
</customFilter>
|
||||
<filterSection>
|
||||
<filterAttribute>qt</filterAttribute>
|
||||
<filterAttribute>solutions</filterAttribute>
|
||||
<filterAttribute>qtsingleapplication</filterAttribute>
|
||||
<toc>
|
||||
<section ref="index.html" title="Qt Solutions: Single Application Documentation">
|
||||
<section ref="qtsingleapplication-example-trivial.html" title="A Trivial Example"/>
|
||||
<section ref="qtsinglecoreapplication-example-console.html" title="A non-GUI example"/>
|
||||
<section ref="qtsingleapplication-example-loader.html" title="Loading Documents"/>
|
||||
<section ref="index.html" title="Single Application"/>
|
||||
</section>
|
||||
</toc>
|
||||
<keywords>
|
||||
<keyword name="A Trivial Example" id="A Trivial Example" ref="qtsingleapplication-example-trivial.html"/>
|
||||
<keyword name="A non-GUI example" id="A non-GUI example" ref="qtsinglecoreapplication-example-console.html"/>
|
||||
<keyword name="Loading Documents" id="Loading Documents" ref="qtsingleapplication-example-loader.html"/>
|
||||
<keyword name="QtSingleApplication" id="QtSingleApplication" ref="qtsingleapplication.html"/>
|
||||
<keyword name="activateWindow" id="QtSingleApplication::activateWindow" ref="qtsingleapplication.html#activateWindow"/>
|
||||
<keyword name="activationWindow" id="QtSingleApplication::activationWindow" ref="qtsingleapplication.html#activationWindow"/>
|
||||
<keyword name="id" id="QtSingleApplication::id" ref="qtsingleapplication.html#id"/>
|
||||
<keyword name="initialize" id="QtSingleApplication::initialize" ref="qtsingleapplication-obsolete.html#initialize"/>
|
||||
<keyword name="isRunning" id="QtSingleApplication::isRunning" ref="qtsingleapplication.html#isRunning"/>
|
||||
<keyword name="messageReceived" id="QtSingleApplication::messageReceived" ref="qtsingleapplication.html#messageReceived"/>
|
||||
<keyword name="sendMessage" id="QtSingleApplication::sendMessage" ref="qtsingleapplication.html#sendMessage"/>
|
||||
<keyword name="setActivationWindow" id="QtSingleApplication::setActivationWindow" ref="qtsingleapplication.html#setActivationWindow"/>
|
||||
<keyword name="QtSingleCoreApplication" id="QtSingleCoreApplication" ref="qtsinglecoreapplication.html"/>
|
||||
<keyword name="id" id="QtSingleCoreApplication::id" ref="qtsinglecoreapplication.html#id"/>
|
||||
<keyword name="isRunning" id="QtSingleCoreApplication::isRunning" ref="qtsinglecoreapplication.html#isRunning"/>
|
||||
<keyword name="messageReceived" id="QtSingleCoreApplication::messageReceived" ref="qtsinglecoreapplication.html#messageReceived"/>
|
||||
<keyword name="sendMessage" id="QtSingleCoreApplication::sendMessage" ref="qtsinglecoreapplication.html#sendMessage"/>
|
||||
<keyword name="Single Application" id="Single Application" ref="index.html"/>
|
||||
</keywords>
|
||||
<files>
|
||||
<file>qtsingleapplication.html</file>
|
||||
<file>index.html</file>
|
||||
<file>qtsingleapplication-example-trivial.html</file>
|
||||
<file>qtsinglecoreapplication.html</file>
|
||||
<file>qtsingleapplication-example-loader.html</file>
|
||||
<file>qtsinglecoreapplication-example-console.html</file>
|
||||
<file>classic.css</file>
|
||||
<file>images/qt-logo.png</file>
|
||||
</files>
|
||||
</filterSection>
|
||||
</QtHelpProject>
|
118
3rdparty/qtsingleapplication/doc/html/qtsinglecoreapplication-example-console.html
vendored
Normal file
118
3rdparty/qtsingleapplication/doc/html/qtsinglecoreapplication-example-console.html
vendored
Normal file
|
@ -0,0 +1,118 @@
|
|||
<?xml version="1.0" encoding="iso-8859-1"?>
|
||||
<!DOCTYPE html
|
||||
PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "DTD/xhtml1-strict.dtd">
|
||||
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
|
||||
<!-- console.qdoc -->
|
||||
<head>
|
||||
<title>A non-GUI example</title>
|
||||
<link href="classic.css" rel="stylesheet" type="text/css" />
|
||||
</head>
|
||||
<body>
|
||||
<table border="0" cellpadding="0" cellspacing="0" width="100%">
|
||||
<tr>
|
||||
<td align="left" valign="top" width="32"><img src="images/qt-logo.png" align="left" width="57" height="67" border="0" /></td>
|
||||
<td width="1"> </td><td class="postheader" valign="center"><a href="index.html"><font color="#004faf">Home</font></a></td>
|
||||
</tr></table><h1 class="title">A non-GUI example<br /><span class="subtitle"></span>
|
||||
</h1>
|
||||
<p>This example shows how to use the single-application functionality in a console application. It does not require the <tt>QtGui</tt> library at all.</p>
|
||||
<p>The only differences from the GUI application usage demonstrated in the other examples are:</p>
|
||||
<p>1) The <tt>.pro</tt> file should include <tt>qtsinglecoreapplication.pri</tt> instead of <tt>qtsingleapplication.pri</tt></p>
|
||||
<p>2) The class name is <tt>QtSingleCoreApplication</tt> instead of <tt>QtSingleApplication</tt>.</p>
|
||||
<p>3) No calls are made regarding window activation, for obvious reasons.</p>
|
||||
<p>console.pro:</p>
|
||||
<pre> TEMPLATE = app
|
||||
CONFIG += console
|
||||
SOURCES += main.cpp
|
||||
include(../../src/qtsinglecoreapplication.pri)
|
||||
QT -= gui</pre>
|
||||
<p>main.cpp:</p>
|
||||
<pre><span class="comment"> /****************************************************************************
|
||||
**
|
||||
** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies).
|
||||
** Contact: http://www.qt-project.org/legal
|
||||
**
|
||||
** This file is part of the Qt Solutions component.
|
||||
**
|
||||
** 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 Nokia Corporation 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."
|
||||
**
|
||||
****************************************************************************/</span>
|
||||
|
||||
#include "qtsinglecoreapplication.h"
|
||||
#include <QtCore/QDebug>
|
||||
|
||||
void report(const QString& msg)
|
||||
{
|
||||
qDebug("[%i] %s", (int)QCoreApplication::applicationPid(), qPrintable(msg));
|
||||
}
|
||||
|
||||
class MainClass : public QObject
|
||||
{
|
||||
Q_OBJECT
|
||||
public:
|
||||
MainClass()
|
||||
: QObject()
|
||||
{}
|
||||
|
||||
public slots:
|
||||
void handleMessage(const QString& message)
|
||||
{
|
||||
report( "Message received: \"" + message + "\"");
|
||||
}
|
||||
};
|
||||
|
||||
int main(int argc, char **argv)
|
||||
{
|
||||
report("Starting up");
|
||||
|
||||
QtSingleCoreApplication app(argc, argv);
|
||||
|
||||
if (app.isRunning()) {
|
||||
QString msg(QString("Hi master, I am %1.").arg(QCoreApplication::applicationPid()));
|
||||
bool sentok = app.sendMessage(msg, 2000);
|
||||
QString rep("Another instance is running, so I will exit.");
|
||||
rep += sentok ? " Message sent ok." : " Message sending failed; the other instance may be frozen.";
|
||||
report(rep);
|
||||
return 0;
|
||||
} else {
|
||||
report("No other instance is running; so I will.");
|
||||
MainClass mainObj;
|
||||
QObject::connect(&app, SIGNAL(messageReceived(const QString&)),
|
||||
&mainObj, SLOT(handleMessage(const QString&)));
|
||||
return app.exec();
|
||||
}
|
||||
}
|
||||
|
||||
#include "main.moc"</pre>
|
||||
<p /><address><hr /><div align="center">
|
||||
<table width="100%" cellspacing="0" border="0"><tr class="address">
|
||||
<td width="30%" align="left">Copyright © 2010 Nokia Corporation and/or its subsidiary(-ies)</td>
|
||||
<td width="40%" align="center"><a href="http://qt.nokia.com/doc/trademarks.html">Trademarks</a></td>
|
||||
<td width="30%" align="right"><div align="right">Qt Solutions</div></td>
|
||||
</tr></table></div></address></body>
|
||||
</html>
|
|
@ -0,0 +1,126 @@
|
|||
<?xml version="1.0" encoding="iso-8859-1"?>
|
||||
<!DOCTYPE html
|
||||
PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "DTD/xhtml1-strict.dtd">
|
||||
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
|
||||
<!-- qtsinglecoreapplication.cpp -->
|
||||
<head>
|
||||
<title>List of All Members for QtSingleCoreApplication</title>
|
||||
<link href="classic.css" rel="stylesheet" type="text/css" />
|
||||
</head>
|
||||
<body>
|
||||
<table border="0" cellpadding="0" cellspacing="0" width="100%">
|
||||
<tr>
|
||||
<td align="left" valign="top" width="32"><img src="images/qt-logo.png" align="left" width="57" height="67" border="0" /></td>
|
||||
<td width="1"> </td><td class="postheader" valign="center"><a href="index.html"><font color="#004faf">Home</font></a></td>
|
||||
</tr></table><h1 class="title">List of All Members for QtSingleCoreApplication</h1>
|
||||
<p>This is the complete list of members for <a href="qtsinglecoreapplication.html">QtSingleCoreApplication</a>, including inherited members.</p>
|
||||
<p><table class="propsummary" width="100%" border="0" cellpadding="0" cellspacing="0">
|
||||
<tr><td width="45%" valign="top"><ul>
|
||||
<li><div class="fn">enum <b><a href="http://qt.nokia.com/doc/4.6/qcoreapplication.html#Encoding-enum">Encoding</a></b></div></li>
|
||||
<li><div class="fn">typedef <b><a href="http://qt.nokia.com/doc/4.6/qcoreapplication.html#EventFilter-typedef">EventFilter</a></b></div></li>
|
||||
<li><div class="fn"><b><a href="qtsinglecoreapplication.html#QtSingleCoreApplication">QtSingleCoreApplication</a></b> ( int &, char ** )</div></li>
|
||||
<li><div class="fn"><b><a href="qtsinglecoreapplication.html#QtSingleCoreApplication-2">QtSingleCoreApplication</a></b> ( const QString &, int &, char ** )</div></li>
|
||||
<li><div class="fn"><b><a href="http://qt.nokia.com/doc/4.6/qcoreapplication.html#aboutToQuit">aboutToQuit</a></b> ()</div></li>
|
||||
<li><div class="fn"><b><a href="http://qt.nokia.com/doc/4.6/qcoreapplication.html#addLibraryPath">addLibraryPath</a></b> ( const QString & )</div></li>
|
||||
<li><div class="fn"><b><a href="http://qt.nokia.com/doc/4.6/qcoreapplication.html#applicationDirPath">applicationDirPath</a></b> ()</div></li>
|
||||
<li><div class="fn"><b><a href="http://qt.nokia.com/doc/4.6/qcoreapplication.html#applicationFilePath">applicationFilePath</a></b> ()</div></li>
|
||||
<li><div class="fn"><b><a href="http://qt.nokia.com/doc/4.6/qcoreapplication.html#applicationName-prop">applicationName</a></b> ()</div></li>
|
||||
<li><div class="fn"><b><a href="http://qt.nokia.com/doc/4.6/qcoreapplication.html#applicationPid">applicationPid</a></b> ()</div></li>
|
||||
<li><div class="fn"><b><a href="http://qt.nokia.com/doc/4.6/qcoreapplication.html#applicationVersion-prop">applicationVersion</a></b> ()</div></li>
|
||||
<li><div class="fn"><b><a href="http://qt.nokia.com/doc/4.6/qcoreapplication.html#arguments">arguments</a></b> ()</div></li>
|
||||
<li><div class="fn"><b><a href="http://qt.nokia.com/doc/4.6/qobject.html#blockSignals">blockSignals</a></b> ( bool )</div></li>
|
||||
<li><div class="fn"><b><a href="http://qt.nokia.com/doc/4.6/qobject.html#childEvent">childEvent</a></b> ( QChildEvent * )</div></li>
|
||||
<li><div class="fn"><b><a href="http://qt.nokia.com/doc/4.6/qobject.html#children">children</a></b> () const</div></li>
|
||||
<li><div class="fn"><b><a href="http://qt.nokia.com/doc/4.6/qcoreapplication.html#closingDown">closingDown</a></b> ()</div></li>
|
||||
<li><div class="fn"><b><a href="http://qt.nokia.com/doc/4.6/qobject.html#connect">connect</a></b> ( const QObject *, const char *, const QObject *, const char *, Qt::ConnectionType )</div></li>
|
||||
<li><div class="fn"><b><a href="http://qt.nokia.com/doc/4.6/qobject.html#connect-2">connect</a></b> ( const QObject *, const char *, const char *, Qt::ConnectionType ) const</div></li>
|
||||
<li><div class="fn"><b><a href="http://qt.nokia.com/doc/4.6/qobject.html#connectNotify">connectNotify</a></b> ( const char * )</div></li>
|
||||
<li><div class="fn"><b><a href="http://qt.nokia.com/doc/4.6/qobject.html#customEvent">customEvent</a></b> ( QEvent * )</div></li>
|
||||
<li><div class="fn"><b><a href="http://qt.nokia.com/doc/4.6/qobject.html#d_ptr-var">d_ptr</a></b> : </div></li>
|
||||
<li><div class="fn"><b><a href="http://qt.nokia.com/doc/4.6/qobject.html#deleteLater">deleteLater</a></b> ()</div></li>
|
||||
<li><div class="fn"><b><a href="http://qt.nokia.com/doc/4.6/qobject.html#destroyed">destroyed</a></b> ( QObject * )</div></li>
|
||||
<li><div class="fn"><b><a href="http://qt.nokia.com/doc/4.6/qobject.html#disconnect">disconnect</a></b> ( const QObject *, const char *, const QObject *, const char * )</div></li>
|
||||
<li><div class="fn"><b><a href="http://qt.nokia.com/doc/4.6/qobject.html#disconnect-2">disconnect</a></b> ( const char *, const QObject *, const char * )</div></li>
|
||||
<li><div class="fn"><b><a href="http://qt.nokia.com/doc/4.6/qobject.html#disconnect-3">disconnect</a></b> ( const QObject *, const char * )</div></li>
|
||||
<li><div class="fn"><b><a href="http://qt.nokia.com/doc/4.6/qobject.html#disconnectNotify">disconnectNotify</a></b> ( const char * )</div></li>
|
||||
<li><div class="fn"><b><a href="http://qt.nokia.com/doc/4.6/qobject.html#dumpObjectInfo">dumpObjectInfo</a></b> ()</div></li>
|
||||
<li><div class="fn"><b><a href="http://qt.nokia.com/doc/4.6/qobject.html#dumpObjectTree">dumpObjectTree</a></b> ()</div></li>
|
||||
<li><div class="fn"><b><a href="http://qt.nokia.com/doc/4.6/qobject.html#dynamicPropertyNames">dynamicPropertyNames</a></b> () const</div></li>
|
||||
<li><div class="fn"><b><a href="http://qt.nokia.com/doc/4.6/qcoreapplication.html#event">event</a></b> ( QEvent * )</div></li>
|
||||
<li><div class="fn"><b><a href="http://qt.nokia.com/doc/4.6/qobject.html#eventFilter">eventFilter</a></b> ( QObject *, QEvent * )</div></li>
|
||||
<li><div class="fn"><b><a href="http://qt.nokia.com/doc/4.6/qcoreapplication.html#exec">exec</a></b> ()</div></li>
|
||||
<li><div class="fn"><b><a href="http://qt.nokia.com/doc/4.6/qcoreapplication.html#exit">exit</a></b> ( int )</div></li>
|
||||
<li><div class="fn"><b><a href="http://qt.nokia.com/doc/4.6/qcoreapplication.html#filterEvent">filterEvent</a></b> ( void *, long * )</div></li>
|
||||
<li><div class="fn"><b><a href="http://qt.nokia.com/doc/4.6/qobject.html#findChild">findChild</a></b> ( const QString & ) const</div></li>
|
||||
<li><div class="fn"><b><a href="http://qt.nokia.com/doc/4.6/qobject.html#findChildren">findChildren</a></b> ( const QString & ) const</div></li>
|
||||
<li><div class="fn"><b><a href="http://qt.nokia.com/doc/4.6/qobject.html#findChildren-2">findChildren</a></b> ( const QRegExp & ) const</div></li>
|
||||
<li><div class="fn"><b><a href="http://qt.nokia.com/doc/4.6/qcoreapplication.html#flush">flush</a></b> ()</div></li>
|
||||
<li><div class="fn"><b><a href="http://qt.nokia.com/doc/4.6/qcoreapplication.html#hasPendingEvents">hasPendingEvents</a></b> ()</div></li>
|
||||
<li><div class="fn"><b><a href="qtsinglecoreapplication.html#id">id</a></b> () const : QString</div></li>
|
||||
<li><div class="fn"><b><a href="http://qt.nokia.com/doc/4.6/qobject.html#inherits">inherits</a></b> ( const char * ) const</div></li>
|
||||
<li><div class="fn"><b><a href="http://qt.nokia.com/doc/4.6/qobject.html#installEventFilter">installEventFilter</a></b> ( QObject * )</div></li>
|
||||
<li><div class="fn"><b><a href="http://qt.nokia.com/doc/4.6/qcoreapplication.html#installTranslator">installTranslator</a></b> ( QTranslator * )</div></li>
|
||||
<li><div class="fn"><b><a href="http://qt.nokia.com/doc/4.6/qcoreapplication.html#instance">instance</a></b> ()</div></li>
|
||||
<li><div class="fn"><b><a href="qtsinglecoreapplication.html#isRunning">isRunning</a></b> () : bool</div></li>
|
||||
<li><div class="fn"><b><a href="http://qt.nokia.com/doc/4.6/qobject.html#isWidgetType">isWidgetType</a></b> () const</div></li>
|
||||
<li><div class="fn"><b><a href="http://qt.nokia.com/doc/4.6/qobject.html#killTimer">killTimer</a></b> ( int )</div></li>
|
||||
<li><div class="fn"><b><a href="http://qt.nokia.com/doc/4.6/qcoreapplication.html#libraryPaths">libraryPaths</a></b> ()</div></li>
|
||||
</ul></td><td valign="top"><ul>
|
||||
<li><div class="fn"><b><a href="qtsinglecoreapplication.html#messageReceived">messageReceived</a></b> ( const QString & )</div></li>
|
||||
<li><div class="fn"><b><a href="http://qt.nokia.com/doc/4.6/qobject.html#metaObject">metaObject</a></b> () const</div></li>
|
||||
<li><div class="fn"><b><a href="http://qt.nokia.com/doc/4.6/qobject.html#moveToThread">moveToThread</a></b> ( QThread * )</div></li>
|
||||
<li><div class="fn"><b><a href="http://qt.nokia.com/doc/4.6/qcoreapplication.html#notify">notify</a></b> ( QObject *, QEvent * )</div></li>
|
||||
<li><div class="fn"><b><a href="http://qt.nokia.com/doc/4.6/qobject.html#objectName-prop">objectName</a></b> () const</div></li>
|
||||
<li><div class="fn"><b><a href="http://qt.nokia.com/doc/4.6/qcoreapplication.html#organizationDomain-prop">organizationDomain</a></b> ()</div></li>
|
||||
<li><div class="fn"><b><a href="http://qt.nokia.com/doc/4.6/qcoreapplication.html#organizationName-prop">organizationName</a></b> ()</div></li>
|
||||
<li><div class="fn"><b><a href="http://qt.nokia.com/doc/4.6/qobject.html#parent">parent</a></b> () const</div></li>
|
||||
<li><div class="fn"><b><a href="http://qt.nokia.com/doc/4.6/qcoreapplication.html#postEvent">postEvent</a></b> ( QObject *, QEvent * )</div></li>
|
||||
<li><div class="fn"><b><a href="http://qt.nokia.com/doc/4.6/qcoreapplication.html#postEvent-2">postEvent</a></b> ( QObject *, QEvent *, int )</div></li>
|
||||
<li><div class="fn"><b><a href="http://qt.nokia.com/doc/4.6/qcoreapplication.html#processEvents">processEvents</a></b> ( QFlags<QEventLoop::ProcessEventsFlag> )</div></li>
|
||||
<li><div class="fn"><b><a href="http://qt.nokia.com/doc/4.6/qcoreapplication.html#processEvents-2">processEvents</a></b> ( QFlags<QEventLoop::ProcessEventsFlag>, int )</div></li>
|
||||
<li><div class="fn"><b><a href="http://qt.nokia.com/doc/4.6/qobject.html#property">property</a></b> ( const char * ) const</div></li>
|
||||
<li><div class="fn"><b><a href="http://qt.nokia.com/doc/4.6/qcoreapplication.html#quit">quit</a></b> ()</div></li>
|
||||
<li><div class="fn"><b><a href="http://qt.nokia.com/doc/4.6/qobject.html#receivers">receivers</a></b> ( const char * ) const</div></li>
|
||||
<li><div class="fn"><b><a href="http://qt.nokia.com/doc/4.6/qobject.html#removeEventFilter">removeEventFilter</a></b> ( QObject * )</div></li>
|
||||
<li><div class="fn"><b><a href="http://qt.nokia.com/doc/4.6/qcoreapplication.html#removeLibraryPath">removeLibraryPath</a></b> ( const QString & )</div></li>
|
||||
<li><div class="fn"><b><a href="http://qt.nokia.com/doc/4.6/qcoreapplication.html#removePostedEvents">removePostedEvents</a></b> ( QObject * )</div></li>
|
||||
<li><div class="fn"><b><a href="http://qt.nokia.com/doc/4.6/qcoreapplication.html#removePostedEvents-2">removePostedEvents</a></b> ( QObject *, int )</div></li>
|
||||
<li><div class="fn"><b><a href="http://qt.nokia.com/doc/4.6/qcoreapplication.html#removeTranslator">removeTranslator</a></b> ( QTranslator * )</div></li>
|
||||
<li><div class="fn"><b><a href="http://qt.nokia.com/doc/4.6/qcoreapplication.html#sendEvent">sendEvent</a></b> ( QObject *, QEvent * )</div></li>
|
||||
<li><div class="fn"><b><a href="qtsinglecoreapplication.html#sendMessage">sendMessage</a></b> ( const QString &, int ) : bool</div></li>
|
||||
<li><div class="fn"><b><a href="http://qt.nokia.com/doc/4.6/qcoreapplication.html#sendPostedEvents">sendPostedEvents</a></b> ( QObject *, int )</div></li>
|
||||
<li><div class="fn"><b><a href="http://qt.nokia.com/doc/4.6/qcoreapplication.html#sendPostedEvents-2">sendPostedEvents</a></b> ()</div></li>
|
||||
<li><div class="fn"><b><a href="http://qt.nokia.com/doc/4.6/qobject.html#sender">sender</a></b> () const</div></li>
|
||||
<li><div class="fn"><b><a href="http://qt.nokia.com/doc/4.6/qcoreapplication.html#applicationName-prop">setApplicationName</a></b> ( const QString & )</div></li>
|
||||
<li><div class="fn"><b><a href="http://qt.nokia.com/doc/4.6/qcoreapplication.html#applicationVersion-prop">setApplicationVersion</a></b> ( const QString & )</div></li>
|
||||
<li><div class="fn"><b><a href="http://qt.nokia.com/doc/4.6/qcoreapplication.html#setAttribute">setAttribute</a></b> ( Qt::ApplicationAttribute, bool )</div></li>
|
||||
<li><div class="fn"><b><a href="http://qt.nokia.com/doc/4.6/qcoreapplication.html#setEventFilter">setEventFilter</a></b> ( EventFilter )</div></li>
|
||||
<li><div class="fn"><b><a href="http://qt.nokia.com/doc/4.6/qcoreapplication.html#setLibraryPaths">setLibraryPaths</a></b> ( const QStringList & )</div></li>
|
||||
<li><div class="fn"><b><a href="http://qt.nokia.com/doc/4.6/qobject.html#objectName-prop">setObjectName</a></b> ( const QString & )</div></li>
|
||||
<li><div class="fn"><b><a href="http://qt.nokia.com/doc/4.6/qcoreapplication.html#organizationDomain-prop">setOrganizationDomain</a></b> ( const QString & )</div></li>
|
||||
<li><div class="fn"><b><a href="http://qt.nokia.com/doc/4.6/qcoreapplication.html#organizationName-prop">setOrganizationName</a></b> ( const QString & )</div></li>
|
||||
<li><div class="fn"><b><a href="http://qt.nokia.com/doc/4.6/qobject.html#setParent">setParent</a></b> ( QObject * )</div></li>
|
||||
<li><div class="fn"><b><a href="http://qt.nokia.com/doc/4.6/qobject.html#setProperty">setProperty</a></b> ( const char *, const QVariant & )</div></li>
|
||||
<li><div class="fn"><b><a href="http://qt.nokia.com/doc/4.6/qobject.html#signalsBlocked">signalsBlocked</a></b> () const</div></li>
|
||||
<li><div class="fn"><b><a href="http://qt.nokia.com/doc/4.6/qobject.html#startTimer">startTimer</a></b> ( int )</div></li>
|
||||
<li><div class="fn"><b><a href="http://qt.nokia.com/doc/4.6/qcoreapplication.html#startingUp">startingUp</a></b> ()</div></li>
|
||||
<li><div class="fn"><b><a href="http://qt.nokia.com/doc/4.6/qobject.html#staticMetaObject-var">staticMetaObject</a></b> : </div></li>
|
||||
<li><div class="fn"><b><a href="http://qt.nokia.com/doc/4.6/qobject.html#staticQtMetaObject-var">staticQtMetaObject</a></b> : </div></li>
|
||||
<li><div class="fn"><b><a href="http://qt.nokia.com/doc/4.6/qcoreapplication.html#testAttribute">testAttribute</a></b> ( Qt::ApplicationAttribute )</div></li>
|
||||
<li><div class="fn"><b><a href="http://qt.nokia.com/doc/4.6/qobject.html#thread">thread</a></b> () const</div></li>
|
||||
<li><div class="fn"><b><a href="http://qt.nokia.com/doc/4.6/qobject.html#timerEvent">timerEvent</a></b> ( QTimerEvent * )</div></li>
|
||||
<li><div class="fn"><b><a href="http://qt.nokia.com/doc/4.6/qobject.html#tr">tr</a></b> ( const char *, const char *, int )</div></li>
|
||||
<li><div class="fn"><b><a href="http://qt.nokia.com/doc/4.6/qobject.html#trUtf8">trUtf8</a></b> ( const char *, const char *, int )</div></li>
|
||||
<li><div class="fn"><b><a href="http://qt.nokia.com/doc/4.6/qcoreapplication.html#translate">translate</a></b> ( const char *, const char *, const char *, Encoding, int )</div></li>
|
||||
<li><div class="fn"><b><a href="http://qt.nokia.com/doc/4.6/qcoreapplication.html#translate-2">translate</a></b> ( const char *, const char *, const char *, Encoding )</div></li>
|
||||
<li><div class="fn"><b><a href="http://qt.nokia.com/doc/4.6/qcoreapplication.html#winEventFilter">winEventFilter</a></b> ( MSG *, long * )</div></li>
|
||||
</ul>
|
||||
</td></tr>
|
||||
</table></p>
|
||||
<p /><address><hr /><div align="center">
|
||||
<table width="100%" cellspacing="0" border="0"><tr class="address">
|
||||
<td width="30%" align="left">Copyright © 2010 Nokia Corporation and/or its subsidiary(-ies)</td>
|
||||
<td width="40%" align="center"><a href="http://qt.nokia.com/doc/trademarks.html">Trademarks</a></td>
|
||||
<td width="30%" align="right"><div align="right">Qt Solutions</div></td>
|
||||
</tr></table></div></address></body>
|
||||
</html>
|
|
@ -0,0 +1,98 @@
|
|||
<?xml version="1.0" encoding="iso-8859-1"?>
|
||||
<!DOCTYPE html
|
||||
PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "DTD/xhtml1-strict.dtd">
|
||||
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
|
||||
<!-- qtsinglecoreapplication.cpp -->
|
||||
<head>
|
||||
<title>QtSingleCoreApplication Class Reference</title>
|
||||
<link href="classic.css" rel="stylesheet" type="text/css" />
|
||||
</head>
|
||||
<body>
|
||||
<table border="0" cellpadding="0" cellspacing="0" width="100%">
|
||||
<tr>
|
||||
<td align="left" valign="top" width="32"><img src="images/qt-logo.png" align="left" width="57" height="67" border="0" /></td>
|
||||
<td width="1"> </td><td class="postheader" valign="center"><a href="index.html"><font color="#004faf">Home</font></a></td>
|
||||
</tr></table><h1 class="title">QtSingleCoreApplication Class Reference</h1>
|
||||
<p>A variant of the <a href="qtsingleapplication.html">QtSingleApplication</a> class for non-GUI applications. <a href="#details">More...</a></p>
|
||||
<pre> #include <QtSingleCoreApplication></pre><p>Inherits <a href="http://qt.nokia.com/doc/4.6/qcoreapplication.html">QCoreApplication</a>.</p>
|
||||
<ul>
|
||||
<li><a href="qtsinglecoreapplication-members.html">List of all members, including inherited members</a></li>
|
||||
</ul>
|
||||
<hr />
|
||||
<a name="public-functions"></a>
|
||||
<h2>Public Functions</h2>
|
||||
<table class="alignedsummary" border="0" cellpadding="0" cellspacing="0" width="100%">
|
||||
<tr><td class="memItemLeft" align="right" valign="top"></td><td class="memItemRight" valign="bottom"><b><a href="qtsinglecoreapplication.html#QtSingleCoreApplication">QtSingleCoreApplication</a></b> ( int & <i>argc</i>, char ** <i>argv</i> )</td></tr>
|
||||
<tr><td class="memItemLeft" align="right" valign="top"></td><td class="memItemRight" valign="bottom"><b><a href="qtsinglecoreapplication.html#QtSingleCoreApplication-2">QtSingleCoreApplication</a></b> ( const QString & <i>appId</i>, int & <i>argc</i>, char ** <i>argv</i> )</td></tr>
|
||||
<tr><td class="memItemLeft" align="right" valign="top">QString </td><td class="memItemRight" valign="bottom"><b><a href="qtsinglecoreapplication.html#id">id</a></b> () const</td></tr>
|
||||
<tr><td class="memItemLeft" align="right" valign="top">bool </td><td class="memItemRight" valign="bottom"><b><a href="qtsinglecoreapplication.html#isRunning">isRunning</a></b> ()</td></tr>
|
||||
</table>
|
||||
<ul>
|
||||
<li><div bar="2" class="fn"></div>4 public functions inherited from <a href="http://qt.nokia.com/doc/4.6/qcoreapplication.html#public-functions">QCoreApplication</a></li>
|
||||
<li><div bar="2" class="fn"></div>29 public functions inherited from <a href="http://qt.nokia.com/doc/4.6/qobject.html#public-functions">QObject</a></li>
|
||||
</ul>
|
||||
<hr />
|
||||
<a name="public-slots"></a>
|
||||
<h2>Public Slots</h2>
|
||||
<table class="alignedsummary" border="0" cellpadding="0" cellspacing="0" width="100%">
|
||||
<tr><td class="memItemLeft" align="right" valign="top">bool </td><td class="memItemRight" valign="bottom"><b><a href="qtsinglecoreapplication.html#sendMessage">sendMessage</a></b> ( const QString & <i>message</i>, int <i>timeout</i> = 5000 )</td></tr>
|
||||
</table>
|
||||
<ul>
|
||||
<li><div bar="2" class="fn"></div>1 public slot inherited from <a href="http://qt.nokia.com/doc/4.6/qcoreapplication.html#public-slots">QCoreApplication</a></li>
|
||||
<li><div bar="2" class="fn"></div>1 public slot inherited from <a href="http://qt.nokia.com/doc/4.6/qobject.html#public-slots">QObject</a></li>
|
||||
</ul>
|
||||
<hr />
|
||||
<a name="signals"></a>
|
||||
<h2>Signals</h2>
|
||||
<table class="alignedsummary" border="0" cellpadding="0" cellspacing="0" width="100%">
|
||||
<tr><td class="memItemLeft" align="right" valign="top">void </td><td class="memItemRight" valign="bottom"><b><a href="qtsinglecoreapplication.html#messageReceived">messageReceived</a></b> ( const QString & <i>message</i> )</td></tr>
|
||||
</table>
|
||||
<ul>
|
||||
<li><div bar="2" class="fn"></div>1 signal inherited from <a href="http://qt.nokia.com/doc/4.6/qcoreapplication.html#signals">QCoreApplication</a></li>
|
||||
<li><div bar="2" class="fn"></div>1 signal inherited from <a href="http://qt.nokia.com/doc/4.6/qobject.html#signals">QObject</a></li>
|
||||
</ul>
|
||||
<h3>Additional Inherited Members</h3>
|
||||
<ul>
|
||||
<li><div class="fn"></div>4 properties inherited from <a href="http://qt.nokia.com/doc/4.6/qcoreapplication.html#properties">QCoreApplication</a></li>
|
||||
<li><div class="fn"></div>1 property inherited from <a href="http://qt.nokia.com/doc/4.6/qobject.html#properties">QObject</a></li>
|
||||
<li><div class="fn"></div>1 public type inherited from <a href="http://qt.nokia.com/doc/4.6/qobject.html#public-variables">QObject</a></li>
|
||||
<li><div class="fn"></div>38 static public members inherited from <a href="http://qt.nokia.com/doc/4.6/qcoreapplication.html#static-public-members">QCoreApplication</a></li>
|
||||
<li><div class="fn"></div>4 static public members inherited from <a href="http://qt.nokia.com/doc/4.6/qobject.html#static-public-members">QObject</a></li>
|
||||
<li><div class="fn"></div>1 protected function inherited from <a href="http://qt.nokia.com/doc/4.6/qcoreapplication.html#protected-functions">QCoreApplication</a></li>
|
||||
<li><div class="fn"></div>7 protected functions inherited from <a href="http://qt.nokia.com/doc/4.6/qobject.html#protected-functions">QObject</a></li>
|
||||
<li><div class="fn"></div>2 protected variables inherited from <a href="http://qt.nokia.com/doc/4.6/qobject.html#protected-variables">QObject</a></li>
|
||||
</ul>
|
||||
<a name="details"></a>
|
||||
<hr />
|
||||
<h2>Detailed Description</h2>
|
||||
<p>A variant of the <a href="qtsingleapplication.html">QtSingleApplication</a> class for non-GUI applications.</p>
|
||||
<p>This class is a variant of <a href="qtsingleapplication.html">QtSingleApplication</a> suited for use in console (non-GUI) applications. It is an extension of <a href="http://qt.nokia.com/doc/4.6/qcoreapplication.html">QCoreApplication</a> (instead of <a href="http://qt.nokia.com/doc/4.6/qapplication.html">QApplication</a>). It does not require the <a href="http://qt.nokia.com/doc/4.6/qtgui.html">QtGui</a> library.</p>
|
||||
<p>The API and usage is identical to <a href="qtsingleapplication.html">QtSingleApplication</a>, except that functions relating to the "activation window" are not present, for obvious reasons. Please refer to the <a href="qtsingleapplication.html">QtSingleApplication</a> documentation for explanation of the usage.</p>
|
||||
<p>A QtSingleCoreApplication instance can communicate to a <a href="qtsingleapplication.html">QtSingleApplication</a> instance if they share the same application id. Hence, this class can be used to create a light-weight command-line tool that sends commands to a GUI application.</p>
|
||||
<p>See also <a href="qtsingleapplication.html">QtSingleApplication</a>.</p>
|
||||
<hr />
|
||||
<h2>Member Function Documentation</h2>
|
||||
<h3 class="fn"><a name="QtSingleCoreApplication"></a>QtSingleCoreApplication::QtSingleCoreApplication ( int & <i>argc</i>, char ** <i>argv</i> )</h3>
|
||||
<p>Creates a <a href="qtsinglecoreapplication.html">QtSingleCoreApplication</a> object. The application identifier will be <a href="http://qt.nokia.com/doc/4.6/qcoreapplication.html#applicationFilePath">QCoreApplication::applicationFilePath</a>(). <i>argc</i> and <i>argv</i> are passed on to the QCoreAppliation constructor.</p>
|
||||
<h3 class="fn"><a name="QtSingleCoreApplication-2"></a>QtSingleCoreApplication::QtSingleCoreApplication ( const <a href="http://qt.nokia.com/doc/4.6/qstring.html">QString</a> & <i>appId</i>, int & <i>argc</i>, char ** <i>argv</i> )</h3>
|
||||
<p>Creates a <a href="qtsinglecoreapplication.html">QtSingleCoreApplication</a> object with the application identifier <i>appId</i>. <i>argc</i> and <i>argv</i> are passed on to the QCoreAppliation constructor.</p>
|
||||
<h3 class="fn"><a name="id"></a><a href="http://qt.nokia.com/doc/4.6/qstring.html">QString</a> QtSingleCoreApplication::id () const</h3>
|
||||
<p>Returns the application identifier. Two processes with the same identifier will be regarded as instances of the same application.</p>
|
||||
<h3 class="fn"><a name="isRunning"></a>bool QtSingleCoreApplication::isRunning ()</h3>
|
||||
<p>Returns true if another instance of this application is running; otherwise false.</p>
|
||||
<p>This function does not find instances of this application that are being run by a different user (on Windows: that are running in another session).</p>
|
||||
<p>See also <a href="qtsinglecoreapplication.html#sendMessage">sendMessage</a>().</p>
|
||||
<h3 class="fn"><a name="messageReceived"></a>void QtSingleCoreApplication::messageReceived ( const <a href="http://qt.nokia.com/doc/4.6/qstring.html">QString</a> & <i>message</i> ) <tt> [signal]</tt></h3>
|
||||
<p>This signal is emitted when the current instance receives a <i>message</i> from another instance of this application.</p>
|
||||
<p>See also <a href="qtsinglecoreapplication.html#sendMessage">sendMessage</a>().</p>
|
||||
<h3 class="fn"><a name="sendMessage"></a>bool QtSingleCoreApplication::sendMessage ( const <a href="http://qt.nokia.com/doc/4.6/qstring.html">QString</a> & <i>message</i>, int <i>timeout</i> = 5000 ) <tt> [slot]</tt></h3>
|
||||
<p>Tries to send the text <i>message</i> to the currently running instance. The <a href="qtsinglecoreapplication.html">QtSingleCoreApplication</a> object in the running instance will emit the <a href="qtsinglecoreapplication.html#messageReceived">messageReceived</a>() signal when it receives the message.</p>
|
||||
<p>This function returns true if the message has been sent to, and processed by, the current instance. If there is no instance currently running, or if the running instance fails to process the message within <i>timeout</i> milliseconds, this function return false.</p>
|
||||
<p>See also <a href="qtsinglecoreapplication.html#isRunning">isRunning</a>() and <a href="qtsinglecoreapplication.html#messageReceived">messageReceived</a>().</p>
|
||||
<p /><address><hr /><div align="center">
|
||||
<table width="100%" cellspacing="0" border="0"><tr class="address">
|
||||
<td width="30%" align="left">Copyright © 2010 Nokia Corporation and/or its subsidiary(-ies)</td>
|
||||
<td width="40%" align="center"><a href="http://qt.nokia.com/doc/trademarks.html">Trademarks</a></td>
|
||||
<td width="30%" align="right"><div align="right">Qt Solutions</div></td>
|
||||
</tr></table></div></address></body>
|
||||
</html>
|
Binary file not shown.
After Width: | Height: | Size: 4.0 KiB |
|
@ -0,0 +1,50 @@
|
|||
// Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies).
|
||||
// SPDX-License-Identifier: BSD-3-Clause
|
||||
|
||||
/*!
|
||||
\page index.html
|
||||
\title Single Application
|
||||
|
||||
\section1 Description
|
||||
|
||||
The QtSingleApplication component provides support
|
||||
for applications that can be only started once per user.
|
||||
|
||||
|
||||
|
||||
For some applications it is useful or even critical that they are started
|
||||
only once by any user. Future attempts to start the application should
|
||||
activate any already running instance, and possibly perform requested
|
||||
actions, e.g. loading a file, in that instance.
|
||||
|
||||
The QtSingleApplication class provides an interface to detect a running
|
||||
instance, and to send command strings to that instance.
|
||||
For console (non-GUI) applications, the QtSingleCoreApplication variant is provided, which avoids dependency on QtGui.
|
||||
|
||||
|
||||
|
||||
|
||||
\section1 Classes
|
||||
\list
|
||||
\i QtSingleApplication \i QtSingleCoreApplication\endlist
|
||||
|
||||
\section1 Examples
|
||||
\list
|
||||
\i \link qtsingleapplication-example-trivial.html A Trivial Example \endlink \i \link qtsingleapplication-example-loader.html Loading Documents \endlink \i \link qtsinglecoreapplication-example-console.html A Non-GUI Example \endlink \endlist
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
\section1 Tested platforms
|
||||
\list
|
||||
\i Qt 4.4, 4.5 / Windows XP / MSVC.NET 2005
|
||||
\i Qt 4.4, 4.5 / Linux / gcc
|
||||
\i Qt 4.4, 4.5 / MacOS X 10.5 / gcc
|
||||
\endlist
|
||||
|
||||
|
||||
|
||||
|
||||
*/
|
|
@ -0,0 +1,169 @@
|
|||
// Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies).
|
||||
// SPDX-License-Identifier: BSD-3-Clause
|
||||
|
||||
#include "qtlocalpeer.h"
|
||||
#include <QCoreApplication>
|
||||
#include <QDataStream>
|
||||
#include <QRegularExpression>
|
||||
#include <QTime>
|
||||
|
||||
#if defined(Q_OS_WIN)
|
||||
#include <QLibrary>
|
||||
#include <qt_windows.h>
|
||||
typedef BOOL(WINAPI *PProcessIdToSessionId)(DWORD, DWORD *);
|
||||
static PProcessIdToSessionId pProcessIdToSessionId = 0;
|
||||
#endif
|
||||
#if defined(Q_OS_UNIX)
|
||||
#include <sys/types.h>
|
||||
#include <time.h>
|
||||
#include <unistd.h>
|
||||
#endif
|
||||
|
||||
#include "qtlockedfile.h"
|
||||
|
||||
const char *QtLocalPeer::ack = "ack";
|
||||
|
||||
QtLocalPeer::QtLocalPeer(QObject *parent, const QString &appId)
|
||||
: QObject(parent), id(appId) {
|
||||
QString prefix = id;
|
||||
if (id.isEmpty()) {
|
||||
id = QCoreApplication::applicationFilePath();
|
||||
#if defined(Q_OS_WIN)
|
||||
id = id.toLower();
|
||||
#endif
|
||||
prefix = id.section(QLatin1Char('/'), -1);
|
||||
}
|
||||
prefix.remove(QRegularExpression("[^a-zA-Z]"));
|
||||
prefix.truncate(6);
|
||||
|
||||
QByteArray idc = id.toUtf8();
|
||||
quint16 idNum =
|
||||
#if QT_VERSION >= QT_VERSION_CHECK(6, 0, 0)
|
||||
qChecksum(idc);
|
||||
#else
|
||||
qChecksum(idc.constData(), idc.size());
|
||||
#endif
|
||||
socketName = QLatin1String("qtsingleapp-") + prefix + QLatin1Char('-') +
|
||||
QString::number(idNum, 16);
|
||||
|
||||
#if defined(Q_OS_WIN)
|
||||
if (!pProcessIdToSessionId) {
|
||||
QLibrary lib("kernel32");
|
||||
pProcessIdToSessionId =
|
||||
(PProcessIdToSessionId)lib.resolve("ProcessIdToSessionId");
|
||||
}
|
||||
if (pProcessIdToSessionId) {
|
||||
DWORD sessionId = 0;
|
||||
pProcessIdToSessionId(GetCurrentProcessId(), &sessionId);
|
||||
socketName += QLatin1Char('-') + QString::number(sessionId, 16);
|
||||
}
|
||||
#else
|
||||
socketName += QLatin1Char('-') + QString::number(::getuid(), 16);
|
||||
#endif
|
||||
|
||||
server = new QLocalServer(this);
|
||||
QString lockName = QDir(QDir::tempPath()).absolutePath() +
|
||||
QLatin1Char('/') + socketName +
|
||||
QLatin1String("-lockfile");
|
||||
lockFile.setFileName(lockName);
|
||||
lockFile.open(QIODevice::ReadWrite);
|
||||
}
|
||||
|
||||
bool QtLocalPeer::isClient() {
|
||||
if (lockFile.isLocked())
|
||||
return false;
|
||||
|
||||
if (!lockFile.lock(QtLP_Private::QtLockedFile::WriteLock, false))
|
||||
return true;
|
||||
|
||||
bool res = server->listen(socketName);
|
||||
#if defined(Q_OS_UNIX) && (QT_VERSION >= QT_VERSION_CHECK(4, 5, 0))
|
||||
// ### Workaround
|
||||
if (!res && server->serverError() == QAbstractSocket::AddressInUseError) {
|
||||
QFile::remove(QDir::cleanPath(QDir::tempPath()) + QLatin1Char('/') +
|
||||
socketName);
|
||||
res = server->listen(socketName);
|
||||
}
|
||||
#endif
|
||||
if (!res)
|
||||
qWarning("QtSingleCoreApplication: listen on local socket failed, %s",
|
||||
qPrintable(server->errorString()));
|
||||
QObject::connect(server, SIGNAL(newConnection()),
|
||||
SLOT(receiveConnection()));
|
||||
return false;
|
||||
}
|
||||
|
||||
bool QtLocalPeer::sendMessage(const QByteArray &uMsg, int timeout) {
|
||||
if (!isClient())
|
||||
return false;
|
||||
|
||||
QLocalSocket socket;
|
||||
bool connOk = false;
|
||||
for (int i = 0; i < 2; i++) {
|
||||
// Try twice, in case the other instance is just starting up
|
||||
socket.connectToServer(socketName);
|
||||
connOk = socket.waitForConnected(timeout / 2);
|
||||
if (connOk || i)
|
||||
break;
|
||||
int ms = 250;
|
||||
#if defined(Q_OS_WIN)
|
||||
Sleep(DWORD(ms));
|
||||
#else
|
||||
struct timespec ts = {ms / 1000, (ms % 1000) * 1000 * 1000};
|
||||
nanosleep(&ts, NULL);
|
||||
#endif
|
||||
}
|
||||
if (!connOk)
|
||||
return false;
|
||||
|
||||
QDataStream ds(&socket);
|
||||
ds.writeBytes(uMsg.constData(), uMsg.size());
|
||||
bool res = socket.waitForBytesWritten(timeout);
|
||||
if (res) {
|
||||
res &= socket.waitForReadyRead(timeout); // wait for ack
|
||||
if (res)
|
||||
res &= (socket.read(qstrlen(ack)) == ack);
|
||||
}
|
||||
return res;
|
||||
}
|
||||
|
||||
void QtLocalPeer::receiveConnection() {
|
||||
QLocalSocket *socket = server->nextPendingConnection();
|
||||
if (!socket)
|
||||
return;
|
||||
|
||||
while (true) {
|
||||
if (socket->state() == QLocalSocket::UnconnectedState) {
|
||||
qWarning("QtLocalPeer: Peer disconnected");
|
||||
delete socket;
|
||||
return;
|
||||
}
|
||||
if (socket->bytesAvailable() >= qint64(sizeof(quint32)))
|
||||
break;
|
||||
socket->waitForReadyRead();
|
||||
}
|
||||
|
||||
QDataStream ds(socket);
|
||||
QByteArray uMsg;
|
||||
quint32 remaining;
|
||||
ds >> remaining;
|
||||
uMsg.resize(remaining);
|
||||
int got = 0;
|
||||
char *uMsgBuf = uMsg.data();
|
||||
do {
|
||||
got = ds.readRawData(uMsgBuf, remaining);
|
||||
remaining -= got;
|
||||
uMsgBuf += got;
|
||||
} while (remaining && got >= 0 && socket->waitForReadyRead(2000));
|
||||
if (got < 0) {
|
||||
qWarning("QtLocalPeer: Message reception failed %s",
|
||||
socket->errorString().toLatin1().constData());
|
||||
delete socket;
|
||||
return;
|
||||
}
|
||||
socket->write(ack, qstrlen(ack));
|
||||
socket->waitForBytesWritten(1000);
|
||||
socket->waitForDisconnected(1000); // make sure client reads ack
|
||||
delete socket;
|
||||
emit messageReceived(uMsg); // ### (might take a long time to return)
|
||||
}
|
|
@ -0,0 +1,38 @@
|
|||
// Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies).
|
||||
// SPDX-License-Identifier: BSD-3-Clause
|
||||
|
||||
#ifndef QTLOCALPEER_H
|
||||
#define QTLOCALPEER_H
|
||||
|
||||
#include <QDir>
|
||||
#include <QLocalServer>
|
||||
#include <QLocalSocket>
|
||||
|
||||
#include "qtlockedfile.h"
|
||||
|
||||
class QtLocalPeer : public QObject {
|
||||
Q_OBJECT
|
||||
|
||||
public:
|
||||
QtLocalPeer(QObject *parent = nullptr, const QString &appId = QString());
|
||||
bool isClient();
|
||||
bool sendMessage(const QByteArray &uMsg, int timeout);
|
||||
QString applicationId() const { return id; }
|
||||
|
||||
Q_SIGNALS:
|
||||
void messageReceived(const QByteArray &message);
|
||||
|
||||
protected Q_SLOTS:
|
||||
void receiveConnection();
|
||||
|
||||
protected:
|
||||
QString id;
|
||||
QString socketName;
|
||||
QLocalServer *server;
|
||||
QtLP_Private::QtLockedFile lockFile;
|
||||
|
||||
private:
|
||||
static const char *ack;
|
||||
};
|
||||
|
||||
#endif // QTLOCALPEER_H
|
|
@ -0,0 +1,325 @@
|
|||
// Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies).
|
||||
// SPDX-License-Identifier: BSD-3-Clause
|
||||
|
||||
#include "qtlockedfile.h"
|
||||
|
||||
#ifdef Q_OS_WIN
|
||||
|
||||
#include <qt_windows.h>
|
||||
|
||||
#define MUTEX_PREFIX "QtLockedFile mutex "
|
||||
// Maximum number of concurrent read locks. Must not be greater than
|
||||
// MAXIMUM_WAIT_OBJECTS
|
||||
#define MAX_READERS MAXIMUM_WAIT_OBJECTS
|
||||
|
||||
#if QT_VERSION >= 0x050000
|
||||
#define QT_WA(unicode, ansi) unicode
|
||||
#endif
|
||||
|
||||
#include <QFileInfo>
|
||||
|
||||
#else
|
||||
#include <errno.h>
|
||||
#include <fcntl.h>
|
||||
#include <string.h>
|
||||
#include <unistd.h>
|
||||
#endif
|
||||
|
||||
using namespace QtLP_Private;
|
||||
|
||||
#ifdef Q_OS_WIN
|
||||
Qt::HANDLE QtLockedFile::getMutexHandle(int idx, bool doCreate) {
|
||||
if (mutexname.isEmpty()) {
|
||||
QFileInfo fi(*this);
|
||||
mutexname =
|
||||
QString::fromLatin1(MUTEX_PREFIX) + fi.absoluteFilePath().toLower();
|
||||
}
|
||||
QString mname(mutexname);
|
||||
if (idx >= 0)
|
||||
mname += QString::number(idx);
|
||||
|
||||
Qt::HANDLE mutex;
|
||||
if (doCreate) {
|
||||
QT_WA({ mutex = CreateMutexW(NULL, FALSE, LPCWSTR(mname.utf16())); },
|
||||
{
|
||||
mutex = CreateMutexA(NULL, FALSE,
|
||||
mname.toLocal8Bit().constData());
|
||||
});
|
||||
if (!mutex) {
|
||||
qErrnoWarning("QtLockedFile::lock(): CreateMutex failed");
|
||||
return 0;
|
||||
}
|
||||
} else {
|
||||
QT_WA(
|
||||
{
|
||||
mutex = OpenMutexW(SYNCHRONIZE | MUTEX_MODIFY_STATE, FALSE,
|
||||
LPCWSTR(mname.utf16()));
|
||||
},
|
||||
{
|
||||
mutex = OpenMutexA(SYNCHRONIZE | MUTEX_MODIFY_STATE, FALSE,
|
||||
mname.toLocal8Bit().constData());
|
||||
});
|
||||
if (!mutex) {
|
||||
if (GetLastError() != ERROR_FILE_NOT_FOUND)
|
||||
qErrnoWarning("QtLockedFile::lock(): OpenMutex failed");
|
||||
return 0;
|
||||
}
|
||||
}
|
||||
return mutex;
|
||||
}
|
||||
|
||||
bool QtLockedFile::waitMutex(Qt::HANDLE mutex, bool doBlock) {
|
||||
Q_ASSERT(mutex);
|
||||
DWORD res = WaitForSingleObject(mutex, doBlock ? INFINITE : 0);
|
||||
switch (res) {
|
||||
case WAIT_OBJECT_0:
|
||||
case WAIT_ABANDONED:
|
||||
return true;
|
||||
break;
|
||||
case WAIT_TIMEOUT:
|
||||
break;
|
||||
default:
|
||||
qErrnoWarning("QtLockedFile::lock(): WaitForSingleObject failed");
|
||||
}
|
||||
return false;
|
||||
}
|
||||
#endif
|
||||
|
||||
/*!
|
||||
\class QtLockedFile
|
||||
|
||||
\brief The QtLockedFile class extends QFile with advisory locking
|
||||
functions.
|
||||
|
||||
A file may be locked in read or write mode. Multiple instances of
|
||||
\e QtLockedFile, created in multiple processes running on the same
|
||||
machine, may have a file locked in read mode. Exactly one instance
|
||||
may have it locked in write mode. A read and a write lock cannot
|
||||
exist simultaneously on the same file.
|
||||
|
||||
The file locks are advisory. This means that nothing prevents
|
||||
another process from manipulating a locked file using QFile or
|
||||
file system functions offered by the OS. Serialization is only
|
||||
guaranteed if all processes that access the file use
|
||||
QLockedFile. Also, while holding a lock on a file, a process
|
||||
must not open the same file again (through any API), or locks
|
||||
can be unexpectedly lost.
|
||||
|
||||
The lock provided by an instance of \e QtLockedFile is released
|
||||
whenever the program terminates. This is true even when the
|
||||
program crashes and no destructors are called.
|
||||
*/
|
||||
|
||||
/*! \enum QtLockedFile::LockMode
|
||||
|
||||
This enum describes the available lock modes.
|
||||
|
||||
\value ReadLock A read lock.
|
||||
\value WriteLock A write lock.
|
||||
\value NoLock Neither a read lock nor a write lock.
|
||||
*/
|
||||
|
||||
/*!
|
||||
Constructs an unlocked \e QtLockedFile object. This constructor
|
||||
behaves in the same way as \e QFile::QFile().
|
||||
|
||||
\sa QFile::QFile()
|
||||
*/
|
||||
QtLockedFile::QtLockedFile() : QFile() {
|
||||
#ifdef Q_OS_WIN
|
||||
wmutex = nullptr;
|
||||
rmutex = nullptr;
|
||||
#endif
|
||||
m_lock_mode = NoLock;
|
||||
}
|
||||
|
||||
/*!
|
||||
Constructs an unlocked QtLockedFile object with file \a name. This
|
||||
constructor behaves in the same way as \e QFile::QFile(const
|
||||
QString&).
|
||||
|
||||
\sa QFile::QFile()
|
||||
*/
|
||||
QtLockedFile::QtLockedFile(const QString &name) : QFile(name) {
|
||||
#ifdef Q_OS_WIN
|
||||
wmutex = nullptr;
|
||||
rmutex = nullptr;
|
||||
#endif
|
||||
m_lock_mode = NoLock;
|
||||
}
|
||||
|
||||
bool QtLockedFile::lock(LockMode mode, bool block) {
|
||||
if (!isOpen()) {
|
||||
qWarning("QtLockedFile::lock(): file is not opened");
|
||||
return false;
|
||||
}
|
||||
|
||||
if (mode == NoLock)
|
||||
return unlock();
|
||||
|
||||
if (mode == m_lock_mode)
|
||||
return true;
|
||||
|
||||
if (m_lock_mode != NoLock)
|
||||
unlock();
|
||||
|
||||
#ifdef Q_OS_WIN
|
||||
if (!wmutex && !(wmutex = getMutexHandle(-1, true)))
|
||||
return false;
|
||||
|
||||
if (!waitMutex(wmutex, block))
|
||||
return false;
|
||||
|
||||
if (mode == ReadLock) {
|
||||
int idx = 0;
|
||||
for (; idx < MAX_READERS; idx++) {
|
||||
rmutex = getMutexHandle(idx, false);
|
||||
if (!rmutex || waitMutex(rmutex, false))
|
||||
break;
|
||||
CloseHandle(rmutex);
|
||||
}
|
||||
bool ok = true;
|
||||
if (idx >= MAX_READERS) {
|
||||
qWarning("QtLockedFile::lock(): too many readers");
|
||||
rmutex = 0;
|
||||
ok = false;
|
||||
} else if (!rmutex) {
|
||||
rmutex = getMutexHandle(idx, true);
|
||||
if (!rmutex || !waitMutex(rmutex, false))
|
||||
ok = false;
|
||||
}
|
||||
if (!ok && rmutex) {
|
||||
CloseHandle(rmutex);
|
||||
rmutex = 0;
|
||||
}
|
||||
ReleaseMutex(wmutex);
|
||||
if (!ok)
|
||||
return false;
|
||||
} else {
|
||||
Q_ASSERT(rmutexes.isEmpty());
|
||||
for (int i = 0; i < MAX_READERS; i++) {
|
||||
Qt::HANDLE mutex = getMutexHandle(i, false);
|
||||
if (mutex)
|
||||
rmutexes.append(mutex);
|
||||
}
|
||||
if (rmutexes.size()) {
|
||||
DWORD res =
|
||||
WaitForMultipleObjects(rmutexes.size(), rmutexes.constData(),
|
||||
TRUE, block ? INFINITE : 0);
|
||||
if (res != WAIT_OBJECT_0 && res != WAIT_ABANDONED) {
|
||||
if (res != WAIT_TIMEOUT)
|
||||
qErrnoWarning(
|
||||
"QtLockedFile::lock(): WaitForMultipleObjects failed");
|
||||
m_lock_mode =
|
||||
WriteLock; // trick unlock() to clean up - semiyucky
|
||||
unlock();
|
||||
return false;
|
||||
}
|
||||
}
|
||||
}
|
||||
#else
|
||||
struct flock fl;
|
||||
fl.l_whence = SEEK_SET;
|
||||
fl.l_start = 0;
|
||||
fl.l_len = 0;
|
||||
fl.l_type = (mode == ReadLock) ? F_RDLCK : F_WRLCK;
|
||||
int cmd = block ? F_SETLKW : F_SETLK;
|
||||
int ret = fcntl(handle(), cmd, &fl);
|
||||
|
||||
if (ret == -1) {
|
||||
if (errno != EINTR && errno != EAGAIN)
|
||||
qWarning("QtLockedFile::lock(): fcntl: %s", strerror(errno));
|
||||
return false;
|
||||
}
|
||||
#endif
|
||||
|
||||
m_lock_mode = mode;
|
||||
return true;
|
||||
}
|
||||
|
||||
bool QtLockedFile::unlock() {
|
||||
if (!isOpen()) {
|
||||
qWarning("QtLockedFile::unlock(): file is not opened");
|
||||
return false;
|
||||
}
|
||||
|
||||
if (!isLocked())
|
||||
return true;
|
||||
|
||||
#ifdef Q_OS_WIN
|
||||
if (m_lock_mode == ReadLock) {
|
||||
ReleaseMutex(rmutex);
|
||||
CloseHandle(rmutex);
|
||||
rmutex = 0;
|
||||
} else {
|
||||
foreach (Qt::HANDLE mutex, rmutexes) {
|
||||
ReleaseMutex(mutex);
|
||||
CloseHandle(mutex);
|
||||
}
|
||||
rmutexes.clear();
|
||||
ReleaseMutex(wmutex);
|
||||
}
|
||||
#else
|
||||
struct flock fl;
|
||||
fl.l_whence = SEEK_SET;
|
||||
fl.l_start = 0;
|
||||
fl.l_len = 0;
|
||||
fl.l_type = F_UNLCK;
|
||||
int ret = fcntl(handle(), F_SETLKW, &fl);
|
||||
|
||||
if (ret == -1) {
|
||||
qWarning("QtLockedFile::lock(): fcntl: %s", strerror(errno));
|
||||
return false;
|
||||
}
|
||||
#endif
|
||||
|
||||
m_lock_mode = NoLock;
|
||||
return true;
|
||||
}
|
||||
|
||||
QtLockedFile::~QtLockedFile() {
|
||||
if (isOpen())
|
||||
unlock();
|
||||
|
||||
#ifdef Q_OS_WIN
|
||||
if (wmutex)
|
||||
CloseHandle(wmutex);
|
||||
#endif
|
||||
}
|
||||
|
||||
/*!
|
||||
Returns \e true if this object has a in read or write lock;
|
||||
otherwise returns \e false.
|
||||
|
||||
\sa lockMode()
|
||||
*/
|
||||
bool QtLockedFile::isLocked() const { return m_lock_mode != NoLock; }
|
||||
|
||||
/*!
|
||||
Returns the type of lock currently held by this object, or \e
|
||||
QtLockedFile::NoLock.
|
||||
|
||||
\sa isLocked()
|
||||
*/
|
||||
QtLockedFile::LockMode QtLockedFile::lockMode() const { return m_lock_mode; }
|
||||
|
||||
/*!
|
||||
Opens the file in OpenMode \a mode.
|
||||
|
||||
This is identical to QFile::open(), with the one exception that the
|
||||
Truncate mode flag is disallowed. Truncation would conflict with the
|
||||
advisory file locking, since the file would be modified before the
|
||||
write lock is obtained. If truncation is required, use resize(0)
|
||||
after obtaining the write lock.
|
||||
|
||||
Returns true if successful; otherwise false.
|
||||
|
||||
\sa QFile::open(), QFile::resize()
|
||||
*/
|
||||
bool QtLockedFile::open(OpenMode mode) {
|
||||
if (mode & QIODevice::Truncate) {
|
||||
qWarning("QtLockedFile::open(): Truncate mode not allowed.");
|
||||
return false;
|
||||
}
|
||||
return QFile::open(mode);
|
||||
}
|
|
@ -0,0 +1,43 @@
|
|||
// Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies).
|
||||
// SPDX-License-Identifier: BSD-3-Clause
|
||||
|
||||
#ifndef QTLOCKEDFILE_H
|
||||
#define QTLOCKEDFILE_H
|
||||
|
||||
#include <QFile>
|
||||
#ifdef Q_OS_WIN
|
||||
#include <QVector>
|
||||
#endif
|
||||
|
||||
namespace QtLP_Private {
|
||||
|
||||
class QtLockedFile : public QFile {
|
||||
public:
|
||||
enum LockMode { NoLock = 0, ReadLock, WriteLock };
|
||||
|
||||
QtLockedFile();
|
||||
QtLockedFile(const QString &name);
|
||||
~QtLockedFile();
|
||||
|
||||
bool open(OpenMode mode);
|
||||
|
||||
bool lock(LockMode mode, bool block = true);
|
||||
bool unlock();
|
||||
bool isLocked() const;
|
||||
LockMode lockMode() const;
|
||||
|
||||
private:
|
||||
#ifdef Q_OS_WIN
|
||||
Qt::HANDLE wmutex;
|
||||
Qt::HANDLE rmutex;
|
||||
QVector<Qt::HANDLE> rmutexes;
|
||||
QString mutexname;
|
||||
|
||||
Qt::HANDLE getMutexHandle(int idx, bool doCreate);
|
||||
bool waitMutex(Qt::HANDLE mutex, bool doBlock);
|
||||
|
||||
#endif
|
||||
LockMode m_lock_mode;
|
||||
};
|
||||
} // namespace QtLP_Private
|
||||
#endif
|
|
@ -0,0 +1,303 @@
|
|||
// Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies).
|
||||
// SPDX-License-Identifier: BSD-3-Clause
|
||||
|
||||
#include "qtsingleapplication.h"
|
||||
#include "qtlocalpeer.h"
|
||||
#include <QWidget>
|
||||
|
||||
#include <QCryptographicHash>
|
||||
|
||||
#ifdef Q_OS_UNIX
|
||||
#include <pwd.h>
|
||||
#include <sys/types.h>
|
||||
#include <unistd.h>
|
||||
#endif
|
||||
|
||||
#ifdef Q_OS_WIN
|
||||
#ifndef NOMINMAX
|
||||
#define NOMINMAX 1
|
||||
#endif
|
||||
#include <lmcons.h>
|
||||
#include <windows.h>
|
||||
#endif
|
||||
|
||||
/*!
|
||||
\class QtSingleApplication qtsingleapplication.h
|
||||
\brief The QtSingleApplication class provides an API to detect and
|
||||
communicate with running instances of an application.
|
||||
|
||||
This class allows you to create applications where only one
|
||||
instance should be running at a time. I.e., if the user tries to
|
||||
launch another instance, the already running instance will be
|
||||
activated instead. Another usecase is a client-server system,
|
||||
where the first started instance will assume the role of server,
|
||||
and the later instances will act as clients of that server.
|
||||
|
||||
By default, the full path of the executable file is used to
|
||||
determine whether two processes are instances of the same
|
||||
application. You can also provide an explicit identifier string
|
||||
that will be compared instead.
|
||||
|
||||
The application should create the QtSingleApplication object early
|
||||
in the startup phase, and call isRunning() to find out if another
|
||||
instance of this application is already running. If isRunning()
|
||||
returns false, it means that no other instance is running, and
|
||||
this instance has assumed the role as the running instance. In
|
||||
this case, the application should continue with the initialization
|
||||
of the application user interface before entering the event loop
|
||||
with exec(), as normal.
|
||||
|
||||
The messageReceived() signal will be emitted when the running
|
||||
application receives messages from another instance of the same
|
||||
application. When a message is received it might be helpful to the
|
||||
user to raise the application so that it becomes visible. To
|
||||
facilitate this, QtSingleApplication provides the
|
||||
setActivationWindow() function and the activateWindow() slot.
|
||||
|
||||
If isRunning() returns true, another instance is already
|
||||
running. It may be alerted to the fact that another instance has
|
||||
started by using the sendMessage() function. Also data such as
|
||||
startup parameters (e.g. the name of the file the user wanted this
|
||||
new instance to open) can be passed to the running instance with
|
||||
this function. Then, the application should terminate (or enter
|
||||
client mode).
|
||||
|
||||
If isRunning() returns true, but sendMessage() fails, that is an
|
||||
indication that the running instance is frozen.
|
||||
|
||||
Here's an example that shows how to convert an existing
|
||||
application to use QtSingleApplication. It is very simple and does
|
||||
not make use of all QtSingleApplication's functionality (see the
|
||||
examples for that).
|
||||
|
||||
\code
|
||||
// Original
|
||||
int main(int argc, char **argv)
|
||||
{
|
||||
QApplication app(argc, argv);
|
||||
|
||||
MyMainWidget mmw;
|
||||
mmw.show();
|
||||
return app.exec();
|
||||
}
|
||||
|
||||
// Single instance
|
||||
int main(int argc, char **argv)
|
||||
{
|
||||
QtSingleApplication app(argc, argv);
|
||||
|
||||
if (app.isRunning())
|
||||
return !app.sendMessage(someDataString);
|
||||
|
||||
MyMainWidget mmw;
|
||||
app.setActivationWindow(&mmw);
|
||||
mmw.show();
|
||||
return app.exec();
|
||||
}
|
||||
\endcode
|
||||
|
||||
Once this QtSingleApplication instance is destroyed (normally when
|
||||
the process exits or crashes), when the user next attempts to run the
|
||||
application this instance will not, of course, be encountered. The
|
||||
next instance to call isRunning() or sendMessage() will assume the
|
||||
role as the new running instance.
|
||||
|
||||
For console (non-GUI) applications, QtSingleCoreApplication may be
|
||||
used instead of this class, to avoid the dependency on the QtGui
|
||||
library.
|
||||
|
||||
\sa QtSingleCoreApplication
|
||||
*/
|
||||
|
||||
void QtSingleApplication::sysInit(const QString &appId) {
|
||||
actWin = nullptr;
|
||||
|
||||
peer = new QtLocalPeer(this, appId);
|
||||
connect(peer, &QtLocalPeer::messageReceived, this,
|
||||
&QtSingleApplication::messageReceived);
|
||||
}
|
||||
|
||||
/*!
|
||||
Creates a QtSingleApplication object. The application identifier
|
||||
will be QCoreApplication::applicationFilePath(). \a argc, \a
|
||||
argv, and \a GUIenabled are passed on to the QAppliation constructor.
|
||||
|
||||
If you are creating a console application (i.e. setting \a
|
||||
GUIenabled to false), you may consider using
|
||||
QtSingleCoreApplication instead.
|
||||
*/
|
||||
|
||||
QtSingleApplication::QtSingleApplication(int &argc, char **argv,
|
||||
bool GUIenabled)
|
||||
: QApplication(argc, argv, GUIenabled) {
|
||||
sysInit(genBlockServerName());
|
||||
}
|
||||
|
||||
/*!
|
||||
Creates a QtSingleApplication object with the application
|
||||
identifier \a appId. \a argc and \a argv are passed on to the
|
||||
QAppliation constructor.
|
||||
*/
|
||||
|
||||
QtSingleApplication::QtSingleApplication(const QString &appId, int &argc,
|
||||
char **argv)
|
||||
: QApplication(argc, argv) {
|
||||
sysInit(appId);
|
||||
}
|
||||
|
||||
/*!
|
||||
Returns true if another instance of this application is running;
|
||||
otherwise false.
|
||||
|
||||
This function does not find instances of this application that are
|
||||
being run by a different user (on Windows: that are running in
|
||||
another session).
|
||||
|
||||
\sa sendMessage()
|
||||
*/
|
||||
|
||||
bool QtSingleApplication::isRunning() { return peer->isClient(); }
|
||||
|
||||
/*!
|
||||
Tries to send the text \a message to the currently running
|
||||
instance. The QtSingleApplication object in the running instance
|
||||
will emit the messageReceived() signal when it receives the
|
||||
message.
|
||||
|
||||
This function returns true if the message has been sent to, and
|
||||
processed by, the current instance. If there is no instance
|
||||
currently running, or if the running instance fails to process the
|
||||
message within \a timeout milliseconds, this function return false.
|
||||
|
||||
\sa isRunning(), messageReceived()
|
||||
*/
|
||||
bool QtSingleApplication::sendMessage(const QByteArray &message, int timeout) {
|
||||
return peer->sendMessage(message, timeout);
|
||||
}
|
||||
|
||||
/*!
|
||||
Returns the application identifier. Two processes with the same
|
||||
identifier will be regarded as instances of the same application.
|
||||
*/
|
||||
QString QtSingleApplication::id() const { return peer->applicationId(); }
|
||||
|
||||
/*!
|
||||
Sets the activation window of this application to \a aw. The
|
||||
activation window is the widget that will be activated by
|
||||
activateWindow(). This is typically the application's main window.
|
||||
|
||||
If \a activateOnMessage is true (the default), the window will be
|
||||
activated automatically every time a message is received, just prior
|
||||
to the messageReceived() signal being emitted.
|
||||
|
||||
\sa activateWindow(), messageReceived()
|
||||
*/
|
||||
|
||||
void QtSingleApplication::setActivationWindow(QWidget *aw,
|
||||
bool activateOnMessage) {
|
||||
actWin = aw;
|
||||
if (activateOnMessage)
|
||||
connect(peer, &QtLocalPeer::messageReceived, this,
|
||||
&QtSingleApplication::activateWindow);
|
||||
else
|
||||
disconnect(peer, &QtLocalPeer::messageReceived, this,
|
||||
&QtSingleApplication::activateWindow);
|
||||
}
|
||||
|
||||
/*!
|
||||
Returns the applications activation window if one has been set by
|
||||
calling setActivationWindow(), otherwise returns 0.
|
||||
|
||||
\sa setActivationWindow()
|
||||
*/
|
||||
QWidget *QtSingleApplication::activationWindow() const { return actWin; }
|
||||
|
||||
/*!
|
||||
De-minimizes, raises, and activates this application's activation window.
|
||||
This function does nothing if no activation window has been set.
|
||||
|
||||
This is a convenience function to show the user that this
|
||||
application instance has been activated when he has tried to start
|
||||
another instance.
|
||||
|
||||
This function should typically be called in response to the
|
||||
messageReceived() signal. By default, that will happen
|
||||
automatically, if an activation window has been set.
|
||||
|
||||
\sa setActivationWindow(), messageReceived(), initialize()
|
||||
*/
|
||||
void QtSingleApplication::activateWindow() {
|
||||
if (actWin) {
|
||||
actWin->setWindowState(actWin->windowState() & ~Qt::WindowMinimized);
|
||||
actWin->raise();
|
||||
actWin->activateWindow();
|
||||
}
|
||||
}
|
||||
|
||||
QString QtSingleApplication::genBlockServerName() const {
|
||||
#ifdef Q_OS_MACOS
|
||||
// Maximum key size on macOS is PSHMNAMLEN (31).
|
||||
QCryptographicHash appData(QCryptographicHash::Md5);
|
||||
#else
|
||||
QCryptographicHash appData(QCryptographicHash::Sha256);
|
||||
#endif
|
||||
#if QT_VERSION < QT_VERSION_CHECK(6, 3, 0)
|
||||
appData.addData("SingleApplication", 17);
|
||||
#else
|
||||
appData.addData(QByteArrayView{"SingleApplication"});
|
||||
#endif
|
||||
appData.addData(applicationName().toUtf8());
|
||||
appData.addData(organizationName().toUtf8());
|
||||
appData.addData(organizationDomain().toUtf8());
|
||||
|
||||
// User level block requires a user specific data in the hash
|
||||
appData.addData(getUsername().toUtf8());
|
||||
|
||||
// Replace the backslash in RFC 2045 Base64 [a-zA-Z0-9+/=] to comply with
|
||||
// server naming requirements.
|
||||
return QString::fromUtf8(appData.result().toBase64().replace("/", "_"));
|
||||
}
|
||||
|
||||
/*!
|
||||
\fn void QtSingleApplication::messageReceived(const QString& message)
|
||||
|
||||
This signal is emitted when the current instance receives a \a
|
||||
message from another instance of this application.
|
||||
|
||||
\sa sendMessage(), setActivationWindow(), activateWindow()
|
||||
*/
|
||||
|
||||
/*!
|
||||
\fn void QtSingleApplication::initialize(bool dummy = true)
|
||||
|
||||
\obsolete
|
||||
*/
|
||||
QString QtSingleApplication::getUsername() const {
|
||||
#ifdef Q_OS_WIN
|
||||
wchar_t username[UNLEN + 1];
|
||||
// Specifies size of the buffer on input
|
||||
DWORD usernameLength = UNLEN + 1;
|
||||
if (GetUserNameW(username, &usernameLength))
|
||||
return QString::fromWCharArray(username);
|
||||
#if QT_VERSION < QT_VERSION_CHECK(5, 10, 0)
|
||||
return QString::fromLocal8Bit(qgetenv("USERNAME"));
|
||||
#else
|
||||
return qEnvironmentVariable("USERNAME");
|
||||
#endif
|
||||
#endif
|
||||
#ifdef Q_OS_UNIX
|
||||
QString username;
|
||||
uid_t uid = geteuid();
|
||||
struct passwd *pw = getpwuid(uid);
|
||||
if (pw)
|
||||
username = QString::fromLocal8Bit(pw->pw_name);
|
||||
if (username.isEmpty()) {
|
||||
#if QT_VERSION < QT_VERSION_CHECK(5, 10, 0)
|
||||
username = QString::fromLocal8Bit(qgetenv("USER"));
|
||||
#else
|
||||
username = qEnvironmentVariable("USER");
|
||||
#endif
|
||||
}
|
||||
return username;
|
||||
#endif
|
||||
}
|
|
@ -0,0 +1,49 @@
|
|||
// Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies).
|
||||
// SPDX-License-Identifier: BSD-3-Clause
|
||||
|
||||
#ifndef QTSINGLEAPPLICATION_H
|
||||
#define QTSINGLEAPPLICATION_H
|
||||
|
||||
#include <QApplication>
|
||||
|
||||
class QtLocalPeer;
|
||||
|
||||
class QtSingleApplication : public QApplication {
|
||||
Q_OBJECT
|
||||
|
||||
public:
|
||||
explicit QtSingleApplication(int &argc, char **argv,
|
||||
bool GUIenabled = true);
|
||||
explicit QtSingleApplication(const QString &id, int &argc, char **argv);
|
||||
|
||||
public:
|
||||
bool isRunning();
|
||||
QString id() const;
|
||||
|
||||
void setActivationWindow(QWidget *aw, bool activateOnMessage = true);
|
||||
QWidget *activationWindow() const;
|
||||
|
||||
// Obsolete:
|
||||
void initialize(bool dummy = true) {
|
||||
isRunning();
|
||||
Q_UNUSED(dummy)
|
||||
}
|
||||
|
||||
public Q_SLOTS:
|
||||
bool sendMessage(const QByteArray &message, int timeout = 5000);
|
||||
void activateWindow();
|
||||
|
||||
Q_SIGNALS:
|
||||
void messageReceived(const QByteArray &message);
|
||||
|
||||
private:
|
||||
QString genBlockServerName() const;
|
||||
QString getUsername() const;
|
||||
|
||||
private:
|
||||
void sysInit(const QString &appId);
|
||||
QtLocalPeer *peer;
|
||||
QWidget *actWin;
|
||||
};
|
||||
|
||||
#endif // QTSINGLEAPPLICATION_H
|
|
@ -0,0 +1,101 @@
|
|||
// Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies).
|
||||
// SPDX-License-Identifier: BSD-3-Clause
|
||||
|
||||
#include "qtsinglecoreapplication.h"
|
||||
#include "qtlocalpeer.h"
|
||||
|
||||
/*!
|
||||
\class QtSingleCoreApplication qtsinglecoreapplication.h
|
||||
\brief A variant of the QtSingleApplication class for non-GUI applications.
|
||||
|
||||
This class is a variant of QtSingleApplication suited for use in
|
||||
console (non-GUI) applications. It is an extension of
|
||||
QCoreApplication (instead of QApplication). It does not require
|
||||
the QtGui library.
|
||||
|
||||
The API and usage is identical to QtSingleApplication, except that
|
||||
functions relating to the "activation window" are not present, for
|
||||
obvious reasons. Please refer to the QtSingleApplication
|
||||
documentation for explanation of the usage.
|
||||
|
||||
A QtSingleCoreApplication instance can communicate to a
|
||||
QtSingleApplication instance if they share the same application
|
||||
id. Hence, this class can be used to create a light-weight
|
||||
command-line tool that sends commands to a GUI application.
|
||||
|
||||
\sa QtSingleApplication
|
||||
*/
|
||||
|
||||
/*!
|
||||
Creates a QtSingleCoreApplication object. The application identifier
|
||||
will be QCoreApplication::applicationFilePath(). \a argc and \a
|
||||
argv are passed on to the QCoreAppliation constructor.
|
||||
*/
|
||||
|
||||
QtSingleCoreApplication::QtSingleCoreApplication(int &argc, char **argv)
|
||||
: QCoreApplication(argc, argv) {
|
||||
peer = new QtLocalPeer(this);
|
||||
connect(peer, SIGNAL(messageReceived(const QString &)),
|
||||
SIGNAL(messageReceived(const QString &)));
|
||||
}
|
||||
|
||||
/*!
|
||||
Creates a QtSingleCoreApplication object with the application
|
||||
identifier \a appId. \a argc and \a argv are passed on to the
|
||||
QCoreAppliation constructor.
|
||||
*/
|
||||
QtSingleCoreApplication::QtSingleCoreApplication(const QString &appId,
|
||||
int &argc, char **argv)
|
||||
: QCoreApplication(argc, argv) {
|
||||
peer = new QtLocalPeer(this, appId);
|
||||
connect(peer, SIGNAL(messageReceived(const QString &)),
|
||||
SIGNAL(messageReceived(const QString &)));
|
||||
}
|
||||
|
||||
/*!
|
||||
Returns true if another instance of this application is running;
|
||||
otherwise false.
|
||||
|
||||
This function does not find instances of this application that are
|
||||
being run by a different user (on Windows: that are running in
|
||||
another session).
|
||||
|
||||
\sa sendMessage()
|
||||
*/
|
||||
|
||||
bool QtSingleCoreApplication::isRunning() { return peer->isClient(); }
|
||||
|
||||
/*!
|
||||
Tries to send the text \a message to the currently running
|
||||
instance. The QtSingleCoreApplication object in the running instance
|
||||
will emit the messageReceived() signal when it receives the
|
||||
message.
|
||||
|
||||
This function returns true if the message has been sent to, and
|
||||
processed by, the current instance. If there is no instance
|
||||
currently running, or if the running instance fails to process the
|
||||
message within \a timeout milliseconds, this function return false.
|
||||
|
||||
\sa isRunning(), messageReceived()
|
||||
*/
|
||||
|
||||
bool QtSingleCoreApplication::sendMessage(const QByteArray &message,
|
||||
int timeout) {
|
||||
return peer->sendMessage(message, timeout);
|
||||
}
|
||||
|
||||
/*!
|
||||
Returns the application identifier. Two processes with the same
|
||||
identifier will be regarded as instances of the same application.
|
||||
*/
|
||||
|
||||
QString QtSingleCoreApplication::id() const { return peer->applicationId(); }
|
||||
|
||||
/*!
|
||||
\fn void QtSingleCoreApplication::messageReceived(const QString& message)
|
||||
|
||||
This signal is emitted when the current instance receives a \a
|
||||
message from another instance of this application.
|
||||
|
||||
\sa sendMessage()
|
||||
*/
|
|
@ -0,0 +1,31 @@
|
|||
// Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies).
|
||||
// SPDX-License-Identifier: BSD-3-Clause
|
||||
|
||||
#ifndef QTSINGLECOREAPPLICATION_H
|
||||
#define QTSINGLECOREAPPLICATION_H
|
||||
|
||||
#include <QCoreApplication>
|
||||
|
||||
class QtLocalPeer;
|
||||
|
||||
class QtSingleCoreApplication : public QCoreApplication {
|
||||
Q_OBJECT
|
||||
|
||||
public:
|
||||
QtSingleCoreApplication(int &argc, char **argv);
|
||||
QtSingleCoreApplication(const QString &id, int &argc, char **argv);
|
||||
|
||||
bool isRunning();
|
||||
QString id() const;
|
||||
|
||||
public Q_SLOTS:
|
||||
bool sendMessage(const QByteArray &message, int timeout = 5000);
|
||||
|
||||
Q_SIGNALS:
|
||||
void messageReceived(const QString &message);
|
||||
|
||||
private:
|
||||
QtLocalPeer *peer;
|
||||
};
|
||||
|
||||
#endif // QTSINGLECOREAPPLICATION_H
|
|
@ -1 +1 @@
|
|||
Subproject commit ba8e8a32fc6e909ad0a2c152e36b6660c01fdad5
|
||||
Subproject commit 782a52020a9823bb7dc744ab20849f2558b64652
|
|
@ -8,7 +8,7 @@ set(CMAKE_AUTORCC ON)
|
|||
|
||||
set(CMAKE_CXX_STANDARD 17)
|
||||
set(CMAKE_CXX_STANDARD_REQUIRED ON)
|
||||
set(PROJECT_VERSION "2.0.0-beta")
|
||||
set(PROJECT_VERSION "2.0.0")
|
||||
|
||||
find_package(
|
||||
QT NAMES Qt6 Qt5 REQUIRED COMPONENTS Widgets Network Concurrent
|
||||
|
@ -99,10 +99,7 @@ set(ANGEL_SCRIPT_ADDON
|
|||
${ANGEL_SCRIPT_ADDON_ROOT}/weakref/weakref.cpp
|
||||
${ANGEL_SCRIPT_ADDON_ROOT}/weakref/weakref.h)
|
||||
|
||||
set(QAPPLICATION_CLASS
|
||||
QApplication
|
||||
CACHE STRING "Inheritance class for SingleApplication")
|
||||
add_subdirectory(3rdparty/SingleApplication)
|
||||
add_subdirectory(3rdparty/qtsingleapplication)
|
||||
|
||||
set(RIBBON_SRC
|
||||
3rdparty/QWingRibbon/ribbon.cpp
|
||||
|
@ -121,7 +118,9 @@ set(QCONSOLEWIDGET_SRC
|
|||
3rdparty/QConsoleWidget/QConsoleIODevice.cpp
|
||||
3rdparty/QConsoleWidget/QConsoleIODevice.h
|
||||
3rdparty/QConsoleWidget/QConsoleWidget.cpp
|
||||
3rdparty/QConsoleWidget/QConsoleWidget.h)
|
||||
3rdparty/QConsoleWidget/QConsoleWidget.h
|
||||
3rdparty/QConsoleWidget/commandhistorymanager.h
|
||||
3rdparty/QConsoleWidget/commandhistorymanager.cpp)
|
||||
|
||||
set(DIALOG_SRC
|
||||
src/dialog/framelessmainwindow.h
|
||||
|
@ -251,7 +250,9 @@ set(CLASS_SRC
|
|||
src/class/aspreprocesser.h
|
||||
src/class/aspreprocesser.cpp
|
||||
src/class/layoutmanager.h
|
||||
src/class/layoutmanager.cpp)
|
||||
src/class/layoutmanager.cpp
|
||||
src/class/wingupdater.h
|
||||
src/class/wingupdater.cpp)
|
||||
|
||||
if(WINGHEX_USE_FRAMELESS)
|
||||
set(WIDGET_FRAME_SRC
|
||||
|
@ -366,7 +367,6 @@ set(TRANSLATION_PATH
|
|||
${CMAKE_CURRENT_SOURCE_DIR}/3rdparty/qcodeedit2
|
||||
${CMAKE_CURRENT_SOURCE_DIR}/3rdparty/Qt-Advanced-Docking-System/src
|
||||
${CMAKE_CURRENT_SOURCE_DIR}/3rdparty/QWingRibbon
|
||||
${CMAKE_CURRENT_SOURCE_DIR}/3rdparty/SingleApplication
|
||||
${CMAKE_CURRENT_SOURCE_DIR}/src)
|
||||
if(${QT_VERSION_MAJOR} EQUAL 5)
|
||||
qt5_create_translation(QM_FILES ${TRANSLATION_PATH} ${TS_FILES} OPTIONS
|
||||
|
@ -486,7 +486,7 @@ if(WINGHEX_USE_FRAMELESS)
|
|||
Qt${QT_VERSION_MAJOR}::GuiPrivate
|
||||
Qt${QT_VERSION_MAJOR}::CorePrivate
|
||||
Qt${QT_VERSION_MAJOR}::Xml
|
||||
SingleApplication::SingleApplication
|
||||
QtSingleApplication::QtSingleApplication
|
||||
QWKCore
|
||||
QWKWidgets
|
||||
QHexView
|
||||
|
@ -494,7 +494,7 @@ if(WINGHEX_USE_FRAMELESS)
|
|||
QJsonModel
|
||||
angelscript
|
||||
nlohmann_json::nlohmann_json
|
||||
qt${QT_VERSION_MAJOR}advanceddocking)
|
||||
qtadvanceddocking-qt${QT_VERSION_MAJOR})
|
||||
else()
|
||||
target_link_libraries(
|
||||
${CMAKE_PROJECT_NAME}
|
||||
|
@ -505,13 +505,13 @@ else()
|
|||
Qt${QT_VERSION_MAJOR}::GuiPrivate
|
||||
Qt${QT_VERSION_MAJOR}::CorePrivate
|
||||
Qt${QT_VERSION_MAJOR}::Xml
|
||||
SingleApplication::SingleApplication
|
||||
QtSingleApplication::QtSingleApplication
|
||||
QHexView
|
||||
QCodeEditor2
|
||||
QJsonModel
|
||||
angelscript
|
||||
nlohmann_json::nlohmann_json
|
||||
qt${QT_VERSION_MAJOR}advanceddocking)
|
||||
qtadvanceddocking-qt${QT_VERSION_MAJOR})
|
||||
endif()
|
||||
|
||||
target_include_directories(
|
||||
|
|
|
@ -9,6 +9,8 @@ set(CMAKE_CXX_STANDARD 17)
|
|||
set(CMAKE_CXX_STANDARD_REQUIRED ON)
|
||||
set(CMAKE_CXX_EXTENSIONS OFF)
|
||||
|
||||
set(CMAKE_INCLUDE_CURRENT_DIR TRUE)
|
||||
|
||||
# Test mode, please configure the main program directory to facilitate debugging
|
||||
|
||||
# 测试模式,启用请配置主程序目录,方便调试
|
||||
|
@ -77,7 +79,23 @@ add_library(
|
|||
testform.ui
|
||||
${QM_FILES}
|
||||
${QM_RES}
|
||||
resources.qrc)
|
||||
resources.qrc
|
||||
readertestform.h
|
||||
readertestform.cpp
|
||||
readertestform.ui
|
||||
qchecklist.h
|
||||
qchecklist.cpp
|
||||
ctltestform.h
|
||||
ctltestform.cpp
|
||||
ctltestform.ui
|
||||
testtablemodel.h
|
||||
testtablemodel.cpp
|
||||
testsettingpage.h
|
||||
testsettingpage.cpp
|
||||
testwingeditorviewwidget.h
|
||||
testwingeditorviewwidget.cpp
|
||||
testpluginpage.h
|
||||
testpluginpage.cpp)
|
||||
|
||||
set_target_properties(TestPlugin PROPERTIES SUFFIX ".wingplg")
|
||||
|
||||
|
|
|
@ -0,0 +1,227 @@
|
|||
/*==============================================================================
|
||||
** Copyright (C) 2024-2027 WingSummer
|
||||
**
|
||||
** Permission is hereby granted, free of charge, to any person obtaining a copy
|
||||
** of this software and associated documentation files (the "Software"), to deal
|
||||
** in the Software without restriction, including without limitation the rights
|
||||
** to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
||||
** copies of the Software, and to permit persons to whom the Software is
|
||||
** furnished to do so.
|
||||
**
|
||||
** THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
||||
** IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
||||
** FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
||||
** AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
||||
** LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
||||
** OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
|
||||
** THE SOFTWARE.
|
||||
** =============================================================================
|
||||
*/
|
||||
|
||||
#include "ctltestform.h"
|
||||
#include "ui_ctltestform.h"
|
||||
|
||||
CtlTestForm::CtlTestForm(WingHex::IWingPlugin *plg, QTextBrowser *br,
|
||||
QWidget *parent)
|
||||
: QWidget(parent), ui(new Ui::CtlTestForm), _plg(plg), _br(br) {
|
||||
ui->setupUi(this);
|
||||
}
|
||||
|
||||
CtlTestForm::~CtlTestForm() { delete ui; }
|
||||
|
||||
void CtlTestForm::on_btnInt8_clicked() {
|
||||
bool ok;
|
||||
auto ret = emit _plg->inputbox.getInt(this, QStringLiteral("Test"),
|
||||
tr("PleaseInputInt8"), 0, INT8_MIN,
|
||||
UINT8_MAX, 1, &ok);
|
||||
if (ok) {
|
||||
auto buffer = qint8(ret);
|
||||
if (ui->rbInsert->isChecked()) {
|
||||
ok = insertContent(ui->sbOffset->value(), buffer);
|
||||
} else if (ui->rbWrite->isChecked()) {
|
||||
ok = writeContent(ui->sbOffset->value(), buffer);
|
||||
} else {
|
||||
ok = appendContent(buffer);
|
||||
}
|
||||
|
||||
if (ok) {
|
||||
_br->append(QStringLiteral("[Int8] (true) ") %
|
||||
QString::number(buffer));
|
||||
} else {
|
||||
_br->append(QStringLiteral("[Int8] (false) ") %
|
||||
QString::number(buffer));
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
void CtlTestForm::on_btnInt16_clicked() {
|
||||
bool ok;
|
||||
auto ret = emit _plg->inputbox.getInt(this, QStringLiteral("Test"),
|
||||
tr("PleaseInputInt16"), 0, INT16_MIN,
|
||||
UINT16_MAX, 1, &ok);
|
||||
if (ok) {
|
||||
auto buffer = qint16(ret);
|
||||
if (ui->rbInsert->isChecked()) {
|
||||
ok = insertContent(ui->sbOffset->value(), buffer);
|
||||
} else if (ui->rbWrite->isChecked()) {
|
||||
ok = writeContent(ui->sbOffset->value(), buffer);
|
||||
} else {
|
||||
ok = appendContent(buffer);
|
||||
}
|
||||
|
||||
if (ok) {
|
||||
_br->append(QStringLiteral("[Int16] (true) ") %
|
||||
QString::number(buffer));
|
||||
} else {
|
||||
_br->append(QStringLiteral("[Int16] (false) ") %
|
||||
QString::number(buffer));
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
void CtlTestForm::on_btnInt32_clicked() {
|
||||
bool ok;
|
||||
auto ret = emit _plg->inputbox.getInt(this, QStringLiteral("Test"),
|
||||
tr("PleaseInputInt32"), 0, INT32_MIN,
|
||||
UINT32_MAX, 1, &ok);
|
||||
if (ok) {
|
||||
auto buffer = qint32(ret);
|
||||
if (ui->rbInsert->isChecked()) {
|
||||
ok = insertContent(ui->sbOffset->value(), buffer);
|
||||
} else if (ui->rbWrite->isChecked()) {
|
||||
ok = writeContent(ui->sbOffset->value(), buffer);
|
||||
} else {
|
||||
ok = appendContent(buffer);
|
||||
}
|
||||
|
||||
if (ok) {
|
||||
_br->append(QStringLiteral("[Int32] (true) ") %
|
||||
QString::number(buffer));
|
||||
} else {
|
||||
_br->append(QStringLiteral("[Int32] (false) ") %
|
||||
QString::number(buffer));
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
void CtlTestForm::on_btnInt64_clicked() {
|
||||
bool ok;
|
||||
auto ret = emit _plg->inputbox.getText(
|
||||
this, QStringLiteral("Test"), tr("PleaseInputInt64"), QLineEdit::Normal,
|
||||
QStringLiteral("0"), &ok);
|
||||
if (ok) {
|
||||
auto buffer = qint64(ret.toULongLong(&ok));
|
||||
if (ok) {
|
||||
if (ui->rbInsert->isChecked()) {
|
||||
ok = insertContent(ui->sbOffset->value(), buffer);
|
||||
} else if (ui->rbWrite->isChecked()) {
|
||||
ok = writeContent(ui->sbOffset->value(), buffer);
|
||||
} else {
|
||||
ok = appendContent(buffer);
|
||||
}
|
||||
|
||||
if (ok) {
|
||||
_br->append(QStringLiteral("[Int64] (true) ") %
|
||||
QString::number(buffer));
|
||||
} else {
|
||||
_br->append(QStringLiteral("[Int64] (false) ") %
|
||||
QString::number(buffer));
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
void CtlTestForm::on_btnFloat_clicked() {
|
||||
bool ok;
|
||||
auto limit = std::numeric_limits<float>();
|
||||
auto ret = emit _plg->inputbox.getDouble(
|
||||
this, QStringLiteral("Test"), tr("PleaseInputFloat"), 0, limit.min(),
|
||||
limit.max(), 0.0, &ok);
|
||||
if (ok) {
|
||||
auto buffer = float(ret);
|
||||
if (ui->rbInsert->isChecked()) {
|
||||
ok = insertContent(ui->sbOffset->value(), buffer);
|
||||
} else if (ui->rbWrite->isChecked()) {
|
||||
ok = writeContent(ui->sbOffset->value(), buffer);
|
||||
} else {
|
||||
ok = appendContent(buffer);
|
||||
}
|
||||
|
||||
if (ok) {
|
||||
_br->append(QStringLiteral("[Float] (true) ") %
|
||||
QString::number(buffer));
|
||||
} else {
|
||||
_br->append(QStringLiteral("[Float] (false) ") %
|
||||
QString::number(buffer));
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
void CtlTestForm::on_btnDouble_clicked() {
|
||||
bool ok;
|
||||
auto limit = std::numeric_limits<double>();
|
||||
auto ret = emit _plg->inputbox.getDouble(
|
||||
this, QStringLiteral("Test"), tr("PleaseInputFloat"), 0, limit.min(),
|
||||
limit.max(), 0.0, &ok);
|
||||
if (ok) {
|
||||
auto buffer = double(ret);
|
||||
if (ui->rbInsert->isChecked()) {
|
||||
ok = insertContent(ui->sbOffset->value(), buffer);
|
||||
} else if (ui->rbWrite->isChecked()) {
|
||||
ok = writeContent(ui->sbOffset->value(), buffer);
|
||||
} else {
|
||||
ok = appendContent(buffer);
|
||||
}
|
||||
|
||||
if (ok) {
|
||||
_br->append(QStringLiteral("[Double] (true) ") %
|
||||
QString::number(buffer));
|
||||
} else {
|
||||
_br->append(QStringLiteral("[Double] (false) ") %
|
||||
QString::number(buffer));
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
void CtlTestForm::on_btnString_clicked() {
|
||||
bool ok;
|
||||
auto buffer = emit _plg->inputbox.getText(
|
||||
this, QStringLiteral("Test"), tr("PleaseInputString"),
|
||||
QLineEdit::Normal, WingHex::WINGSUMMER, &ok);
|
||||
if (ok) {
|
||||
if (ui->rbInsert->isChecked()) {
|
||||
ok = insertContent(ui->sbOffset->value(), buffer);
|
||||
} else if (ui->rbWrite->isChecked()) {
|
||||
ok = writeContent(ui->sbOffset->value(), buffer);
|
||||
} else {
|
||||
ok = appendContent(buffer);
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
void CtlTestForm::on_btnByteArray_clicked() {
|
||||
bool ok;
|
||||
auto ret = emit _plg->inputbox.getText(
|
||||
this, QStringLiteral("Test"), tr("PleaseInputByteArray(00 23 5A)"),
|
||||
QLineEdit::Normal, QStringLiteral("00"), &ok);
|
||||
if (ok) {
|
||||
auto buffer = QByteArray::fromHex(ret.toUtf8());
|
||||
if (buffer.isEmpty()) {
|
||||
ok = false;
|
||||
} else {
|
||||
if (ui->rbInsert->isChecked()) {
|
||||
ok = insertContent(ui->sbOffset->value(), buffer);
|
||||
} else if (ui->rbWrite->isChecked()) {
|
||||
ok = writeContent(ui->sbOffset->value(), buffer);
|
||||
} else {
|
||||
ok = appendContent(buffer);
|
||||
}
|
||||
}
|
||||
|
||||
if (ok) {
|
||||
_br->append(QStringLiteral("[ByteArray] (true) ") % ret);
|
||||
} else {
|
||||
_br->append(QStringLiteral("[ByteArray] (false) ") % ret);
|
||||
}
|
||||
}
|
||||
}
|
|
@ -0,0 +1,162 @@
|
|||
/*==============================================================================
|
||||
** Copyright (C) 2024-2027 WingSummer
|
||||
**
|
||||
** Permission is hereby granted, free of charge, to any person obtaining a copy
|
||||
** of this software and associated documentation files (the "Software"), to deal
|
||||
** in the Software without restriction, including without limitation the rights
|
||||
** to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
||||
** copies of the Software, and to permit persons to whom the Software is
|
||||
** furnished to do so.
|
||||
**
|
||||
** THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
||||
** IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
||||
** FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
||||
** AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
||||
** LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
||||
** OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
|
||||
** THE SOFTWARE.
|
||||
** =============================================================================
|
||||
*/
|
||||
|
||||
#ifndef CTLTESTFORM_H
|
||||
#define CTLTESTFORM_H
|
||||
|
||||
#include <QTextBrowser>
|
||||
#include <QWidget>
|
||||
|
||||
#include "iwingplugin.h"
|
||||
|
||||
namespace Ui {
|
||||
class CtlTestForm;
|
||||
}
|
||||
|
||||
class CtlTestForm : public QWidget {
|
||||
Q_OBJECT
|
||||
|
||||
public:
|
||||
explicit CtlTestForm(WingHex::IWingPlugin *plg, QTextBrowser *br,
|
||||
QWidget *parent = nullptr);
|
||||
~CtlTestForm();
|
||||
|
||||
private slots:
|
||||
void on_btnInt8_clicked();
|
||||
|
||||
void on_btnInt16_clicked();
|
||||
|
||||
void on_btnInt32_clicked();
|
||||
|
||||
void on_btnInt64_clicked();
|
||||
|
||||
void on_btnFloat_clicked();
|
||||
|
||||
void on_btnDouble_clicked();
|
||||
|
||||
void on_btnString_clicked();
|
||||
|
||||
void on_btnByteArray_clicked();
|
||||
|
||||
private:
|
||||
template <typename T>
|
||||
bool writeContent(qsizetype offset, const T &value) {
|
||||
Q_ASSERT(_plg);
|
||||
if constexpr (std::is_integral_v<T>) {
|
||||
if constexpr (sizeof(T) == sizeof(qint8)) {
|
||||
return emit _plg->controller.writeInt8(offset, value);
|
||||
} else if constexpr (sizeof(T) == sizeof(qint16)) {
|
||||
return emit _plg->controller.writeInt16(offset, value);
|
||||
} else if constexpr (sizeof(T) == sizeof(qint32)) {
|
||||
return emit _plg->controller.writeInt32(offset, value);
|
||||
} else if constexpr (sizeof(T) == sizeof(qint64)) {
|
||||
return emit _plg->controller.writeInt64(offset, value);
|
||||
} else {
|
||||
static_assert(false, "unsupported writeContent");
|
||||
return false;
|
||||
}
|
||||
} else if constexpr (std::is_floating_point_v<T>) {
|
||||
if constexpr (std::is_same_v<T, float>) {
|
||||
return emit _plg->controller.writeFloat(offset, value);
|
||||
} else {
|
||||
return emit _plg->controller.writeDouble(offset, value);
|
||||
}
|
||||
} else if constexpr (std::is_same_v<T, QString>) {
|
||||
return emit _plg->controller.writeString(offset, value);
|
||||
} else if constexpr (std::is_same_v<T, QByteArray>) {
|
||||
return emit _plg->controller.writeBytes(offset, value);
|
||||
} else {
|
||||
static_assert(false, "unsupported writeContent");
|
||||
return false;
|
||||
}
|
||||
}
|
||||
|
||||
template <typename T>
|
||||
bool insertContent(qsizetype offset, const T &value) {
|
||||
Q_ASSERT(_plg);
|
||||
if constexpr (std::is_integral_v<T>) {
|
||||
if constexpr (sizeof(T) == sizeof(qint8)) {
|
||||
return emit _plg->controller.insertInt8(offset, value);
|
||||
} else if constexpr (sizeof(T) == sizeof(qint16)) {
|
||||
return emit _plg->controller.insertInt16(offset, value);
|
||||
} else if constexpr (sizeof(T) == sizeof(qint32)) {
|
||||
return emit _plg->controller.insertInt32(offset, value);
|
||||
} else if constexpr (sizeof(T) == sizeof(qint64)) {
|
||||
return emit _plg->controller.insertInt64(offset, value);
|
||||
} else {
|
||||
static_assert(false, "unsupported insertContent");
|
||||
return false;
|
||||
}
|
||||
} else if constexpr (std::is_floating_point_v<T>) {
|
||||
if constexpr (std::is_same_v<T, float>) {
|
||||
return emit _plg->controller.insertFloat(offset, value);
|
||||
} else {
|
||||
return emit _plg->controller.insertDouble(offset, value);
|
||||
}
|
||||
} else if constexpr (std::is_same_v<T, QString>) {
|
||||
return emit _plg->controller.insertString(offset, value);
|
||||
} else if constexpr (std::is_same_v<T, QByteArray>) {
|
||||
return emit _plg->controller.insertBytes(offset, value);
|
||||
} else {
|
||||
static_assert(false, "unsupported insertContent");
|
||||
return false;
|
||||
}
|
||||
}
|
||||
|
||||
template <typename T>
|
||||
bool appendContent(const T &value) {
|
||||
Q_ASSERT(_plg);
|
||||
if constexpr (std::is_integral_v<T>) {
|
||||
if constexpr (sizeof(T) == sizeof(qint8)) {
|
||||
return emit _plg->controller.appendInt8(value);
|
||||
} else if constexpr (sizeof(T) == sizeof(qint16)) {
|
||||
return emit _plg->controller.appendInt16(value);
|
||||
} else if constexpr (sizeof(T) == sizeof(qint32)) {
|
||||
return emit _plg->controller.appendInt32(value);
|
||||
} else if constexpr (sizeof(T) == sizeof(qint64)) {
|
||||
return emit _plg->controller.appendInt64(value);
|
||||
} else {
|
||||
static_assert(false, "unsupported appendContent");
|
||||
return false;
|
||||
}
|
||||
} else if constexpr (std::is_floating_point_v<T>) {
|
||||
if constexpr (std::is_same_v<T, float>) {
|
||||
return emit _plg->controller.appendFloat(value);
|
||||
} else {
|
||||
return emit _plg->controller.appendDouble(value);
|
||||
}
|
||||
} else if constexpr (std::is_same_v<T, QString>) {
|
||||
return emit _plg->controller.appendString(value);
|
||||
} else if constexpr (std::is_same_v<T, QByteArray>) {
|
||||
return emit _plg->controller.appendBytes(value);
|
||||
} else {
|
||||
static_assert(false, "unsupported appendContent");
|
||||
return false;
|
||||
}
|
||||
}
|
||||
|
||||
private:
|
||||
Ui::CtlTestForm *ui;
|
||||
|
||||
WingHex::IWingPlugin *_plg;
|
||||
QTextBrowser *_br;
|
||||
};
|
||||
|
||||
#endif // CTLTESTFORM_H
|
|
@ -0,0 +1,249 @@
|
|||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<ui version="4.0">
|
||||
<class>CtlTestForm</class>
|
||||
<widget class="QWidget" name="CtlTestForm">
|
||||
<property name="geometry">
|
||||
<rect>
|
||||
<x>0</x>
|
||||
<y>0</y>
|
||||
<width>524</width>
|
||||
<height>342</height>
|
||||
</rect>
|
||||
</property>
|
||||
<property name="windowTitle">
|
||||
<string notr="true"/>
|
||||
</property>
|
||||
<layout class="QVBoxLayout" name="verticalLayout">
|
||||
<item>
|
||||
<layout class="QHBoxLayout" name="horizontalLayout">
|
||||
<property name="spacing">
|
||||
<number>6</number>
|
||||
</property>
|
||||
<item>
|
||||
<widget class="QLabel" name="label_6">
|
||||
<property name="sizePolicy">
|
||||
<sizepolicy hsizetype="Preferred" vsizetype="Preferred">
|
||||
<horstretch>0</horstretch>
|
||||
<verstretch>0</verstretch>
|
||||
</sizepolicy>
|
||||
</property>
|
||||
<property name="text">
|
||||
<string>Offset</string>
|
||||
</property>
|
||||
</widget>
|
||||
</item>
|
||||
<item>
|
||||
<widget class="QSpinBox" name="sbOffset">
|
||||
<property name="sizePolicy">
|
||||
<sizepolicy hsizetype="Expanding" vsizetype="Fixed">
|
||||
<horstretch>0</horstretch>
|
||||
<verstretch>0</verstretch>
|
||||
</sizepolicy>
|
||||
</property>
|
||||
</widget>
|
||||
</item>
|
||||
</layout>
|
||||
</item>
|
||||
<item>
|
||||
<widget class="QGroupBox" name="groupBox_2">
|
||||
<property name="title">
|
||||
<string>Mode</string>
|
||||
</property>
|
||||
<layout class="QHBoxLayout" name="horizontalLayout_2">
|
||||
<property name="sizeConstraint">
|
||||
<enum>QLayout::SetMinAndMaxSize</enum>
|
||||
</property>
|
||||
<item>
|
||||
<widget class="QRadioButton" name="rbInsert">
|
||||
<property name="text">
|
||||
<string>Insert</string>
|
||||
</property>
|
||||
<property name="checked">
|
||||
<bool>true</bool>
|
||||
</property>
|
||||
</widget>
|
||||
</item>
|
||||
<item>
|
||||
<widget class="QRadioButton" name="rbWrite">
|
||||
<property name="text">
|
||||
<string>Write</string>
|
||||
</property>
|
||||
</widget>
|
||||
</item>
|
||||
<item>
|
||||
<widget class="QRadioButton" name="rbAppend">
|
||||
<property name="text">
|
||||
<string>Append</string>
|
||||
</property>
|
||||
</widget>
|
||||
</item>
|
||||
</layout>
|
||||
</widget>
|
||||
</item>
|
||||
<item>
|
||||
<widget class="QGroupBox" name="groupBox">
|
||||
<property name="minimumSize">
|
||||
<size>
|
||||
<width>0</width>
|
||||
<height>150</height>
|
||||
</size>
|
||||
</property>
|
||||
<property name="title">
|
||||
<string>Type</string>
|
||||
</property>
|
||||
<layout class="QGridLayout" name="gridLayout_2" rowminimumheight="50,50,50">
|
||||
<property name="sizeConstraint">
|
||||
<enum>QLayout::SetMinAndMaxSize</enum>
|
||||
</property>
|
||||
<item row="0" column="0">
|
||||
<widget class="QPushButton" name="btnInt8">
|
||||
<property name="sizePolicy">
|
||||
<sizepolicy hsizetype="Minimum" vsizetype="Preferred">
|
||||
<horstretch>0</horstretch>
|
||||
<verstretch>0</verstretch>
|
||||
</sizepolicy>
|
||||
</property>
|
||||
<property name="text">
|
||||
<string notr="true">Int8</string>
|
||||
</property>
|
||||
</widget>
|
||||
</item>
|
||||
<item row="0" column="1">
|
||||
<widget class="QPushButton" name="btnInt16">
|
||||
<property name="sizePolicy">
|
||||
<sizepolicy hsizetype="Minimum" vsizetype="Preferred">
|
||||
<horstretch>0</horstretch>
|
||||
<verstretch>0</verstretch>
|
||||
</sizepolicy>
|
||||
</property>
|
||||
<property name="text">
|
||||
<string notr="true">Int16</string>
|
||||
</property>
|
||||
</widget>
|
||||
</item>
|
||||
<item row="0" column="2">
|
||||
<widget class="QPushButton" name="btnInt32">
|
||||
<property name="sizePolicy">
|
||||
<sizepolicy hsizetype="Minimum" vsizetype="Preferred">
|
||||
<horstretch>0</horstretch>
|
||||
<verstretch>0</verstretch>
|
||||
</sizepolicy>
|
||||
</property>
|
||||
<property name="text">
|
||||
<string notr="true">Int32</string>
|
||||
</property>
|
||||
</widget>
|
||||
</item>
|
||||
<item row="1" column="0">
|
||||
<widget class="QPushButton" name="btnInt64">
|
||||
<property name="sizePolicy">
|
||||
<sizepolicy hsizetype="Minimum" vsizetype="Preferred">
|
||||
<horstretch>0</horstretch>
|
||||
<verstretch>0</verstretch>
|
||||
</sizepolicy>
|
||||
</property>
|
||||
<property name="text">
|
||||
<string notr="true">Int64</string>
|
||||
</property>
|
||||
</widget>
|
||||
</item>
|
||||
<item row="1" column="1">
|
||||
<widget class="QPushButton" name="btnFloat">
|
||||
<property name="sizePolicy">
|
||||
<sizepolicy hsizetype="Minimum" vsizetype="Preferred">
|
||||
<horstretch>0</horstretch>
|
||||
<verstretch>0</verstretch>
|
||||
</sizepolicy>
|
||||
</property>
|
||||
<property name="text">
|
||||
<string notr="true">Float</string>
|
||||
</property>
|
||||
</widget>
|
||||
</item>
|
||||
<item row="1" column="2">
|
||||
<widget class="QPushButton" name="btnDouble">
|
||||
<property name="sizePolicy">
|
||||
<sizepolicy hsizetype="Minimum" vsizetype="Preferred">
|
||||
<horstretch>0</horstretch>
|
||||
<verstretch>0</verstretch>
|
||||
</sizepolicy>
|
||||
</property>
|
||||
<property name="text">
|
||||
<string notr="true">Double</string>
|
||||
</property>
|
||||
</widget>
|
||||
</item>
|
||||
<item row="2" column="0">
|
||||
<widget class="QPushButton" name="btnString">
|
||||
<property name="sizePolicy">
|
||||
<sizepolicy hsizetype="Minimum" vsizetype="Preferred">
|
||||
<horstretch>0</horstretch>
|
||||
<verstretch>0</verstretch>
|
||||
</sizepolicy>
|
||||
</property>
|
||||
<property name="text">
|
||||
<string notr="true">String</string>
|
||||
</property>
|
||||
</widget>
|
||||
</item>
|
||||
<item row="2" column="2">
|
||||
<widget class="QPushButton" name="btnByteArray">
|
||||
<property name="sizePolicy">
|
||||
<sizepolicy hsizetype="Minimum" vsizetype="Preferred">
|
||||
<horstretch>0</horstretch>
|
||||
<verstretch>0</verstretch>
|
||||
</sizepolicy>
|
||||
</property>
|
||||
<property name="text">
|
||||
<string notr="true">ByteArray</string>
|
||||
</property>
|
||||
</widget>
|
||||
</item>
|
||||
<item row="2" column="1">
|
||||
<widget class="QLabel" name="label_2">
|
||||
<property name="text">
|
||||
<string notr="true">WingSummer</string>
|
||||
</property>
|
||||
<property name="alignment">
|
||||
<set>Qt::AlignCenter</set>
|
||||
</property>
|
||||
</widget>
|
||||
</item>
|
||||
</layout>
|
||||
</widget>
|
||||
</item>
|
||||
<item>
|
||||
<spacer name="verticalSpacer">
|
||||
<property name="orientation">
|
||||
<enum>Qt::Vertical</enum>
|
||||
</property>
|
||||
<property name="sizeHint" stdset="0">
|
||||
<size>
|
||||
<width>20</width>
|
||||
<height>40</height>
|
||||
</size>
|
||||
</property>
|
||||
</spacer>
|
||||
</item>
|
||||
</layout>
|
||||
</widget>
|
||||
<resources/>
|
||||
<connections>
|
||||
<connection>
|
||||
<sender>rbAppend</sender>
|
||||
<signal>toggled(bool)</signal>
|
||||
<receiver>sbOffset</receiver>
|
||||
<slot>setDisabled(bool)</slot>
|
||||
<hints>
|
||||
<hint type="sourcelabel">
|
||||
<x>394</x>
|
||||
<y>66</y>
|
||||
</hint>
|
||||
<hint type="destinationlabel">
|
||||
<x>368</x>
|
||||
<y>22</y>
|
||||
</hint>
|
||||
</hints>
|
||||
</connection>
|
||||
</connections>
|
||||
</ui>
|
|
@ -1,6 +1,103 @@
|
|||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<!DOCTYPE TS>
|
||||
<TS version="2.1" language="zh_CN">
|
||||
<context>
|
||||
<name>CtlTestForm</name>
|
||||
<message>
|
||||
<location filename="../ctltestform.ui" line="31"/>
|
||||
<source>Offset</source>
|
||||
<translation>偏移</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../ctltestform.ui" line="50"/>
|
||||
<source>Mode</source>
|
||||
<translation>模式</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../ctltestform.ui" line="59"/>
|
||||
<source>Insert</source>
|
||||
<translation>插入</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../ctltestform.ui" line="69"/>
|
||||
<source>Write</source>
|
||||
<translation>覆写</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../ctltestform.ui" line="76"/>
|
||||
<source>Append</source>
|
||||
<translation>追加</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../ctltestform.ui" line="92"/>
|
||||
<source>Type</source>
|
||||
<translation>类型</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../ctltestform.cpp" line="35"/>
|
||||
<source>PleaseInputInt8</source>
|
||||
<translation>请输入8位整数</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../ctltestform.cpp" line="60"/>
|
||||
<source>PleaseInputInt16</source>
|
||||
<translation>请输入16位整数</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../ctltestform.cpp" line="85"/>
|
||||
<source>PleaseInputInt32</source>
|
||||
<translation>请输入32位整数</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../ctltestform.cpp" line="110"/>
|
||||
<source>PleaseInputInt64</source>
|
||||
<translation>请输入64位整数</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../ctltestform.cpp" line="138"/>
|
||||
<location filename="../ctltestform.cpp" line="164"/>
|
||||
<source>PleaseInputFloat</source>
|
||||
<translation>请输入单精度浮点数</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../ctltestform.cpp" line="189"/>
|
||||
<source>PleaseInputString</source>
|
||||
<translation>请输入字符串</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../ctltestform.cpp" line="205"/>
|
||||
<source>PleaseInputByteArray(00 23 5A)</source>
|
||||
<translation>请输入字节数组(举例:00 23 5A)</translation>
|
||||
</message>
|
||||
</context>
|
||||
<context>
|
||||
<name>ReaderTestForm</name>
|
||||
<message>
|
||||
<location filename="../readertestform.ui" line="22"/>
|
||||
<source>Offset</source>
|
||||
<translation>偏移</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../readertestform.ui" line="45"/>
|
||||
<source>ValidWhenByteArray</source>
|
||||
<translation>当使用 ByteArray 输出时该参数有效</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../readertestform.ui" line="48"/>
|
||||
<source>MaxLength</source>
|
||||
<translation>最大长度</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../readertestform.ui" line="63"/>
|
||||
<source>Type</source>
|
||||
<translation>类型</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../readertestform.ui" line="195"/>
|
||||
<source>Status</source>
|
||||
<translation>状态</translation>
|
||||
</message>
|
||||
</context>
|
||||
<context>
|
||||
<name>TestForm</name>
|
||||
<message>
|
||||
|
@ -19,103 +116,248 @@
|
|||
<translation>日志</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../testform.ui" line="77"/>
|
||||
<location filename="../testform.ui" line="57"/>
|
||||
<source>Tip: MaybeCanNotSeen</source>
|
||||
<translation>提示:可能由于日志等级导致某些等级的文本无法直接从日志窗口看到</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../testform.ui" line="87"/>
|
||||
<source>Level</source>
|
||||
<translation>等级</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../testform.ui" line="87"/>
|
||||
<location filename="../testform.ui" line="180"/>
|
||||
<location filename="../testform.ui" line="97"/>
|
||||
<location filename="../testform.ui" line="194"/>
|
||||
<location filename="../testform.ui" line="693"/>
|
||||
<source>Text</source>
|
||||
<translation>文本 </translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../testform.ui" line="110"/>
|
||||
<location filename="../testform.ui" line="203"/>
|
||||
<location filename="../testform.ui" line="124"/>
|
||||
<location filename="../testform.ui" line="221"/>
|
||||
<source>Send</source>
|
||||
<translation>发送</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../testform.ui" line="117"/>
|
||||
<location filename="../testform.ui" line="210"/>
|
||||
<location filename="../testform.ui" line="131"/>
|
||||
<location filename="../testform.ui" line="228"/>
|
||||
<location filename="../testform.ui" line="293"/>
|
||||
<location filename="../testform.ui" line="444"/>
|
||||
<location filename="../testform.ui" line="983"/>
|
||||
<location filename="../testform.ui" line="1144"/>
|
||||
<source>Clear</source>
|
||||
<translation>清空</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../testform.ui" line="129"/>
|
||||
<location filename="../testform.ui" line="143"/>
|
||||
<source>Toast</source>
|
||||
<translation>消息</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../testform.ui" line="170"/>
|
||||
<location filename="../testform.ui" line="184"/>
|
||||
<location filename="../testform.ui" line="730"/>
|
||||
<source>Icon</source>
|
||||
<translation>图标</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../testform.ui" line="236"/>
|
||||
<location filename="../testform.ui" line="254"/>
|
||||
<source>Reader</source>
|
||||
<translation>读取器</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../testform.ui" line="241"/>
|
||||
<location filename="../testform.ui" line="305"/>
|
||||
<source>EditorAttr</source>
|
||||
<translation>编辑器属性</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../testform.ui" line="369"/>
|
||||
<source>Visible</source>
|
||||
<translation>可见</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../testform.ui" line="382"/>
|
||||
<source>Invisible</source>
|
||||
<translation>不可见</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../testform.ui" line="405"/>
|
||||
<source>Controller</source>
|
||||
<translation>控制器</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../testform.ui" line="246"/>
|
||||
<location filename="../testform.ui" line="456"/>
|
||||
<source>MutiFile</source>
|
||||
<translation>多文件</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../testform.ui" line="480"/>
|
||||
<source>Operation</source>
|
||||
<translation>操作</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../testform.ui" line="621"/>
|
||||
<source>Metadata</source>
|
||||
<translation>元数据</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../testform.ui" line="626"/>
|
||||
<source>BookMark</source>
|
||||
<translation>书签</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../testform.ui" line="631"/>
|
||||
<location filename="../testform.ui" line="662"/>
|
||||
<source>MessageBox</source>
|
||||
<translation>信息框</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../testform.ui" line="251"/>
|
||||
<location filename="../testform.ui" line="639"/>
|
||||
<location filename="../testform.ui" line="676"/>
|
||||
<location filename="../testform.ui" line="853"/>
|
||||
<source>Title</source>
|
||||
<translation>标题</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../testform.ui" line="710"/>
|
||||
<source>Buttons</source>
|
||||
<translation>按钮组</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../testform.ui" line="720"/>
|
||||
<source>DefaultButton</source>
|
||||
<translation>默认按钮</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../testform.ui" line="831"/>
|
||||
<source>InputBox</source>
|
||||
<translation>输入框</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../testform.ui" line="256"/>
|
||||
<location filename="../testform.ui" line="846"/>
|
||||
<source>Label</source>
|
||||
<translation>标签内容</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../testform.ui" line="311"/>
|
||||
<location filename="../testform.ui" line="882"/>
|
||||
<location filename="../testform.ui" line="1056"/>
|
||||
<location filename="../testform.ui" line="1245"/>
|
||||
<source>Type</source>
|
||||
<translation>类型</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../testform.ui" line="469"/>
|
||||
<source>Handle</source>
|
||||
<translation>句柄</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../testform.ui" line="995"/>
|
||||
<source>FileDialog</source>
|
||||
<translation>文件框</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../testform.ui" line="261"/>
|
||||
<location filename="../testform.ui" line="1010"/>
|
||||
<source>Filter</source>
|
||||
<translation>过滤器</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../testform.ui" line="1017"/>
|
||||
<location filename="../testform.ui" line="1170"/>
|
||||
<source>Caption</source>
|
||||
<translation>标题</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../testform.ui" line="1038"/>
|
||||
<source>Options</source>
|
||||
<translation>选项组</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../testform.ui" line="1156"/>
|
||||
<source>ColorDialog</source>
|
||||
<translation>颜色框</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../testform.ui" line="266"/>
|
||||
<location filename="../testform.ui" line="1184"/>
|
||||
<source>Color</source>
|
||||
<translation>颜色</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../testform.ui" line="1230"/>
|
||||
<source>DataVisual</source>
|
||||
<translation>数据可视化</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../testform.cpp" line="345"/>
|
||||
<location filename="../testform.cpp" line="355"/>
|
||||
<source>UpdateTextTreeError</source>
|
||||
<translation>更新文本树失败</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../testform.cpp" line="370"/>
|
||||
<source>UpdateTextListByModelError</source>
|
||||
<translation>通过模型更新文本列表失败</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../testform.cpp" line="380"/>
|
||||
<source>UpdateTextTableByModelError</source>
|
||||
<translation>通过模型更新文本表格失败</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../testform.cpp" line="391"/>
|
||||
<source>UpdateTextTreeByModelError</source>
|
||||
<translation>通过模型更新文本树失败</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../testform.cpp" line="492"/>
|
||||
<source>Choose</source>
|
||||
<translation>选择</translation>
|
||||
</message>
|
||||
</context>
|
||||
<context>
|
||||
<name>TestPlugin</name>
|
||||
<message>
|
||||
<location filename="../testplugin.cpp" line="56"/>
|
||||
<location filename="../testplugin.cpp" line="83"/>
|
||||
<source>Test</source>
|
||||
<translation>测试</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../testplugin.cpp" line="68"/>
|
||||
<location filename="../testplugin.cpp" line="77"/>
|
||||
<location filename="../testplugin.cpp" line="82"/>
|
||||
<location filename="../testplugin.cpp" line="110"/>
|
||||
<location filename="../testplugin.cpp" line="95"/>
|
||||
<location filename="../testplugin.cpp" line="104"/>
|
||||
<location filename="../testplugin.cpp" line="109"/>
|
||||
<location filename="../testplugin.cpp" line="190"/>
|
||||
<source>TestPlugin</source>
|
||||
<translation>测试插件</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../testplugin.cpp" line="86"/>
|
||||
<location filename="../testplugin.cpp" line="113"/>
|
||||
<source>Button - </source>
|
||||
<translation>按钮 - </translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../testplugin.cpp" line="90"/>
|
||||
<location filename="../testplugin.cpp" line="117"/>
|
||||
<source>Click</source>
|
||||
<translation>点击</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../testplugin.cpp" line="117"/>
|
||||
<location filename="../testplugin.cpp" line="197"/>
|
||||
<source>A Test Plugin for WingHexExplorer2.</source>
|
||||
<translation>一个用来测试羽云十六进制编辑器2的插件</translation>
|
||||
</message>
|
||||
</context>
|
||||
<context>
|
||||
<name>TestPluginPage</name>
|
||||
<message>
|
||||
<location filename="../testpluginpage.cpp" line="16"/>
|
||||
<source>TestPluginPage</source>
|
||||
<translation>测试插件页</translation>
|
||||
</message>
|
||||
</context>
|
||||
<context>
|
||||
<name>TestWingEditorViewWidget</name>
|
||||
<message>
|
||||
<location filename="../testwingeditorviewwidget.cpp" line="18"/>
|
||||
<source>TestWingEditorView</source>
|
||||
<translation>测试插件编辑视图</translation>
|
||||
</message>
|
||||
</context>
|
||||
</TS>
|
||||
|
|
|
@ -0,0 +1,150 @@
|
|||
/*==============================================================================
|
||||
** Copyright (C) 2024-2027 WingSummer
|
||||
**
|
||||
** Permission is hereby granted, free of charge, to any person obtaining a copy
|
||||
** of this software and associated documentation files (the "Software"), to deal
|
||||
** in the Software without restriction, including without limitation the rights
|
||||
** to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
||||
** copies of the Software, and to permit persons to whom the Software is
|
||||
** furnished to do so.
|
||||
**
|
||||
** THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
||||
** IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
||||
** FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
||||
** AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
||||
** LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
||||
** OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
|
||||
** THE SOFTWARE.
|
||||
** =============================================================================
|
||||
*/
|
||||
|
||||
#include "qchecklist.h"
|
||||
|
||||
QCheckList::QCheckList(QWidget *parent) : QComboBox(parent) {
|
||||
m_model = new QStandardItemModel(this);
|
||||
setModel(m_model);
|
||||
|
||||
setEditable(true);
|
||||
|
||||
auto le = lineEdit();
|
||||
le->setReadOnly(true);
|
||||
le->installEventFilter(this);
|
||||
setItemDelegate(new QCheckListStyledItemDelegate(this));
|
||||
|
||||
connect(le, &QLineEdit::selectionChanged, le, &QLineEdit::deselect);
|
||||
connect(le, &QLineEdit::textChanged, this, &QCheckList::updateText);
|
||||
connect(view(), &QAbstractItemView::pressed, this,
|
||||
&QCheckList::on_itemPressed);
|
||||
connect(m_model, &QStandardItemModel::dataChanged, this,
|
||||
&QCheckList::on_modelDataChanged);
|
||||
}
|
||||
|
||||
void QCheckList::setAllCheckedText(const QString &text) {
|
||||
m_allCheckedText = text;
|
||||
updateText();
|
||||
}
|
||||
|
||||
void QCheckList::setUnknownlyCheckedText(const QString &text) {
|
||||
m_unknownlyCheckedText = text;
|
||||
updateText();
|
||||
}
|
||||
|
||||
QStandardItem *QCheckList::addCheckItem(const QString &label,
|
||||
const QVariant &data,
|
||||
const Qt::CheckState checkState) {
|
||||
QStandardItem *item = new QStandardItem(label);
|
||||
item->setCheckState(checkState);
|
||||
item->setData(data);
|
||||
item->setFlags(Qt::ItemIsUserCheckable | Qt::ItemIsEnabled);
|
||||
|
||||
m_model->appendRow(item);
|
||||
|
||||
updateText();
|
||||
|
||||
return item;
|
||||
}
|
||||
|
||||
int QCheckList::globalCheckState() {
|
||||
int nbRows = m_model->rowCount(), nbChecked = 0, nbUnchecked = 0;
|
||||
|
||||
if (nbRows == 0) {
|
||||
return StateUnknown;
|
||||
}
|
||||
|
||||
for (int i = 0; i < nbRows; i++) {
|
||||
if (m_model->item(i)->checkState() == Qt::Checked) {
|
||||
nbChecked++;
|
||||
} else if (m_model->item(i)->checkState() == Qt::Unchecked) {
|
||||
nbUnchecked++;
|
||||
} else {
|
||||
return StateUnknown;
|
||||
}
|
||||
}
|
||||
|
||||
return nbChecked == nbRows ? Qt::Checked
|
||||
: nbUnchecked == nbRows ? Qt::Unchecked
|
||||
: Qt::PartiallyChecked;
|
||||
}
|
||||
|
||||
bool QCheckList::eventFilter(QObject *_object, QEvent *_event) {
|
||||
if (_object == lineEdit() && _event->type() == QEvent::MouseButtonPress) {
|
||||
showPopup();
|
||||
return true;
|
||||
}
|
||||
|
||||
return false;
|
||||
}
|
||||
|
||||
void QCheckList::updateText() {
|
||||
QString text;
|
||||
auto le = lineEdit();
|
||||
le->blockSignals(true);
|
||||
|
||||
switch (globalCheckState()) {
|
||||
case Qt::Checked:
|
||||
text = m_allCheckedText;
|
||||
break;
|
||||
|
||||
case Qt::Unchecked:
|
||||
text = m_noneCheckedText;
|
||||
break;
|
||||
|
||||
case Qt::PartiallyChecked:
|
||||
for (int i = 0; i < m_model->rowCount(); i++) {
|
||||
if (m_model->item(i)->checkState() == Qt::Checked) {
|
||||
if (!text.isEmpty()) {
|
||||
text += QStringLiteral(" | ");
|
||||
}
|
||||
|
||||
text += m_model->item(i)->text();
|
||||
}
|
||||
}
|
||||
break;
|
||||
|
||||
default:
|
||||
text = m_unknownlyCheckedText;
|
||||
}
|
||||
|
||||
le->setText(text);
|
||||
le->blockSignals(false);
|
||||
}
|
||||
|
||||
void QCheckList::on_modelDataChanged() {
|
||||
updateText();
|
||||
emit globalCheckStateChanged(globalCheckState());
|
||||
}
|
||||
|
||||
void QCheckList::on_itemPressed(const QModelIndex &index) {
|
||||
QStandardItem *item = m_model->itemFromIndex(index);
|
||||
|
||||
if (item->checkState() == Qt::Checked) {
|
||||
item->setCheckState(Qt::Unchecked);
|
||||
} else {
|
||||
item->setCheckState(Qt::Checked);
|
||||
}
|
||||
}
|
||||
|
||||
void QCheckList::setNoneCheckedText(const QString &text) {
|
||||
m_noneCheckedText = text;
|
||||
updateText();
|
||||
}
|
|
@ -0,0 +1,115 @@
|
|||
/*==============================================================================
|
||||
** Copyright (C) 2024-2027 WingSummer
|
||||
**
|
||||
** Permission is hereby granted, free of charge, to any person obtaining a copy
|
||||
** of this software and associated documentation files (the "Software"), to deal
|
||||
** in the Software without restriction, including without limitation the rights
|
||||
** to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
||||
** copies of the Software, and to permit persons to whom the Software is
|
||||
** furnished to do so.
|
||||
**
|
||||
** THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
||||
** IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
||||
** FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
||||
** AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
||||
** LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
||||
** OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
|
||||
** THE SOFTWARE.
|
||||
** =============================================================================
|
||||
*/
|
||||
|
||||
#ifndef QCHECKLIST_H
|
||||
#define QCHECKLIST_H
|
||||
|
||||
#include <QComboBox>
|
||||
#include <QEvent>
|
||||
#include <QLineEdit>
|
||||
#include <QListView>
|
||||
#include <QStandardItemModel>
|
||||
#include <QStyledItemDelegate>
|
||||
#include <QWidget>
|
||||
|
||||
class QCheckListStyledItemDelegate : public QStyledItemDelegate {
|
||||
public:
|
||||
QCheckListStyledItemDelegate(QObject *parent = 0)
|
||||
: QStyledItemDelegate(parent) {}
|
||||
|
||||
void paint(QPainter *painter_, const QStyleOptionViewItem &option_,
|
||||
const QModelIndex &index_) const {
|
||||
QStyleOptionViewItem &refToNonConstOption =
|
||||
const_cast<QStyleOptionViewItem &>(option_);
|
||||
refToNonConstOption.showDecorationSelected = false;
|
||||
QStyledItemDelegate::paint(painter_, refToNonConstOption, index_);
|
||||
}
|
||||
};
|
||||
|
||||
/**
|
||||
* @brief QComboBox with support of checkboxes
|
||||
* http://stackoverflow.com/questions/8422760/combobox-of-checkboxes
|
||||
*/
|
||||
class QCheckList : public QComboBox {
|
||||
Q_OBJECT
|
||||
public:
|
||||
/**
|
||||
* @brief Additional value to Qt::CheckState when some checkboxes are
|
||||
* Qt::PartiallyChecked
|
||||
*/
|
||||
static const int StateUnknown = 3;
|
||||
|
||||
private:
|
||||
QStandardItemModel *m_model;
|
||||
/**
|
||||
* @brief Text displayed when no item is checked
|
||||
*/
|
||||
QString m_noneCheckedText;
|
||||
/**
|
||||
* @brief Text displayed when all items are checked
|
||||
*/
|
||||
QString m_allCheckedText;
|
||||
/**
|
||||
* @brief Text displayed when some items are partially checked
|
||||
*/
|
||||
QString m_unknownlyCheckedText;
|
||||
|
||||
signals:
|
||||
void globalCheckStateChanged(int);
|
||||
|
||||
public:
|
||||
explicit QCheckList(QWidget *parent = nullptr);
|
||||
|
||||
void setAllCheckedText(const QString &text);
|
||||
|
||||
void setNoneCheckedText(const QString &text);
|
||||
|
||||
void setUnknownlyCheckedText(const QString &text);
|
||||
|
||||
/**
|
||||
* @brief Adds a item to the checklist (setChecklist must have been called)
|
||||
* @return the new QStandardItem
|
||||
*/
|
||||
QStandardItem *addCheckItem(const QString &label, const QVariant &data,
|
||||
const Qt::CheckState checkState);
|
||||
|
||||
/**
|
||||
* @brief Computes the global state of the checklist :
|
||||
* - if there is no item: StateUnknown
|
||||
* - if there is at least one item partially checked: StateUnknown
|
||||
* - if all items are checked: Qt::Checked
|
||||
* - if no item is checked: Qt::Unchecked
|
||||
* - else: Qt::PartiallyChecked
|
||||
*/
|
||||
int globalCheckState();
|
||||
|
||||
protected:
|
||||
bool eventFilter(QObject *_object, QEvent *_event);
|
||||
|
||||
private:
|
||||
void updateText();
|
||||
|
||||
private slots:
|
||||
void on_modelDataChanged();
|
||||
|
||||
void on_itemPressed(const QModelIndex &index);
|
||||
};
|
||||
|
||||
#endif // QCHECKLIST_H
|
|
@ -0,0 +1,149 @@
|
|||
/*==============================================================================
|
||||
** Copyright (C) 2024-2027 WingSummer
|
||||
**
|
||||
** Permission is hereby granted, free of charge, to any person obtaining a copy
|
||||
** of this software and associated documentation files (the "Software"), to deal
|
||||
** in the Software without restriction, including without limitation the rights
|
||||
** to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
||||
** copies of the Software, and to permit persons to whom the Software is
|
||||
** furnished to do so.
|
||||
**
|
||||
** THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
||||
** IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
||||
** FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
||||
** AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
||||
** LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
||||
** OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
|
||||
** THE SOFTWARE.
|
||||
** =============================================================================
|
||||
*/
|
||||
|
||||
#include "readertestform.h"
|
||||
#include "ui_readertestform.h"
|
||||
|
||||
#include <QStringBuilder>
|
||||
|
||||
ReaderTestForm::ReaderTestForm(WingHex::IWingPlugin *plg, QTextBrowser *br,
|
||||
QWidget *parent)
|
||||
: QWidget(parent), ui(new Ui::ReaderTestForm), _plg(plg), _br(br) {
|
||||
ui->setupUi(this);
|
||||
ui->sbOffset->setRange(0, INT_MAX);
|
||||
}
|
||||
|
||||
ReaderTestForm::~ReaderTestForm() { delete ui; }
|
||||
|
||||
void ReaderTestForm::on_btnReadInt8_clicked() {
|
||||
auto v = emit _plg->reader.readInt8(ui->sbOffset->value());
|
||||
_br->append(QStringLiteral("[ReadInt8] ") + QString::number(v));
|
||||
}
|
||||
|
||||
void ReaderTestForm::on_btnReadInt16_clicked() {
|
||||
auto v = emit _plg->reader.readInt16(ui->sbOffset->value());
|
||||
_br->append(QStringLiteral("[ReadInt16] ") + QString::number(v));
|
||||
}
|
||||
|
||||
void ReaderTestForm::on_btnReadInt32_clicked() {
|
||||
auto v = emit _plg->reader.readInt32(ui->sbOffset->value());
|
||||
_br->append(QStringLiteral("[ReadInt32] ") + QString::number(v));
|
||||
}
|
||||
|
||||
void ReaderTestForm::on_btnReadInt64_clicked() {
|
||||
auto v = emit _plg->reader.readInt64(ui->sbOffset->value());
|
||||
_br->append(QStringLiteral("[ReadInt64] ") + QString::number(v));
|
||||
}
|
||||
|
||||
void ReaderTestForm::on_btnReadFloat_clicked() {
|
||||
auto v = emit _plg->reader.readFloat(ui->sbOffset->value());
|
||||
_br->append(QStringLiteral("[ReadFloat] ") + QString::number(v));
|
||||
}
|
||||
|
||||
void ReaderTestForm::on_btnReadDouble_clicked() {
|
||||
auto v = emit _plg->reader.readDouble(ui->sbOffset->value());
|
||||
_br->append(QStringLiteral("[ReadDouble] ") + QString::number(v));
|
||||
}
|
||||
|
||||
void ReaderTestForm::on_btnReadString_clicked() {
|
||||
auto v = emit _plg->reader.readString(ui->sbOffset->value());
|
||||
_br->append(QStringLiteral("[ReadString] ") + v);
|
||||
}
|
||||
|
||||
void ReaderTestForm::on_btnReadByteArray_clicked() {
|
||||
auto v =
|
||||
emit _plg->reader.readBytes(ui->sbOffset->value(), ui->sbLen->value());
|
||||
_br->append(QStringLiteral("[ReadByteArray] ") + v.toHex(' '));
|
||||
}
|
||||
|
||||
void ReaderTestForm::on_btnStatus_clicked() {
|
||||
static auto lf = QStringLiteral("\n");
|
||||
static auto strue = QStringLiteral("true");
|
||||
static auto sfalse = QStringLiteral("false");
|
||||
_br->clear();
|
||||
_br->append(QStringLiteral("[Status]") % lf %
|
||||
QStringLiteral("getSupportedEncodings: ") %
|
||||
(emit _plg->reader.getSupportedEncodings().join(';')) % lf %
|
||||
QStringLiteral("currentEncoding: ") %
|
||||
emit _plg->reader.currentEncoding() % lf %
|
||||
QStringLiteral("isCurrentDocEditing: ") %
|
||||
(emit _plg->reader.isCurrentDocEditing() ? strue : sfalse) %
|
||||
lf % QStringLiteral("currentDocFilename: ") %
|
||||
emit _plg->reader.currentDocFilename() % lf %
|
||||
QStringLiteral("isReadOnly: ") %
|
||||
(emit _plg->reader.isReadOnly() ? strue : sfalse) % lf %
|
||||
QStringLiteral("isKeepSize: ") %
|
||||
(emit _plg->reader.isKeepSize() ? strue : sfalse) % lf %
|
||||
QStringLiteral("isLocked: ") %
|
||||
(emit _plg->reader.isLocked() ? strue : sfalse) % lf %
|
||||
QStringLiteral("isModified: ") %
|
||||
(emit _plg->reader.isModified() ? strue : sfalse) % lf %
|
||||
QStringLiteral("stringVisible: ") %
|
||||
(emit _plg->reader.stringVisible() ? strue : sfalse) % lf %
|
||||
QStringLiteral("addressVisible: ") %
|
||||
(emit _plg->reader.addressVisible() ? strue : sfalse) % lf %
|
||||
QStringLiteral("headerVisible: ") %
|
||||
(emit _plg->reader.headerVisible() ? strue : sfalse) % lf %
|
||||
QStringLiteral("addressBase: ") % QStringLiteral("0x") %
|
||||
QString::number(emit _plg->reader.addressBase(), 16).toUpper() %
|
||||
lf % QStringLiteral("documentLines: ") %
|
||||
QString::number(emit _plg->reader.documentLines()) % lf %
|
||||
QStringLiteral("documentBytes: ") %
|
||||
QString::number(emit _plg->reader.documentBytes()) % lf %
|
||||
QStringLiteral("currentPos: ") %
|
||||
getPrintableHexPosition(emit _plg->reader.currentPos()) % lf %
|
||||
QStringLiteral("currentRow: ") %
|
||||
QString::number(emit _plg->reader.currentRow()) % lf %
|
||||
QStringLiteral("currentColumn: ") %
|
||||
QString::number(emit _plg->reader.currentColumn()) % lf %
|
||||
QStringLiteral("currentOffset: ") %
|
||||
QString::number(emit _plg->reader.currentOffset()) % lf %
|
||||
QStringLiteral("selectedLength: ") %
|
||||
QString::number(emit _plg->reader.selectedLength()));
|
||||
|
||||
_br->append(QStringLiteral("[Selection]"));
|
||||
auto total = emit _plg->reader.selectionCount();
|
||||
_br->append(QStringLiteral("selectionCount: ") % QString::number(total));
|
||||
for (decltype(total) i = 0; i < total; ++i) {
|
||||
_br->append(QStringLiteral("{ ") % QString::number(i) %
|
||||
QStringLiteral(" }"));
|
||||
_br->append(
|
||||
QStringLiteral("selectionStart: ") %
|
||||
getPrintableHexPosition(emit _plg->reader.selectionStart(i)) % lf %
|
||||
QStringLiteral("selectionEnd: ") %
|
||||
getPrintableHexPosition(emit _plg->reader.selectionEnd(i)) % lf %
|
||||
QStringLiteral("selectionLength: ") %
|
||||
QString::number(emit _plg->reader.selectionLength(i)) % lf %
|
||||
QStringLiteral("selectedBytes: ") %
|
||||
(emit _plg->reader.selectedBytes(i)).toHex(' '));
|
||||
}
|
||||
|
||||
_br->append(QStringLiteral("[Selections]"));
|
||||
_br->append((emit _plg->reader.selectionBytes()).join('\n').toHex(' '));
|
||||
}
|
||||
|
||||
QString
|
||||
ReaderTestForm::getPrintableHexPosition(const WingHex::HexPosition &pos) {
|
||||
return QStringLiteral("WingHex::HexPosition { line = ") %
|
||||
QString::number(pos.line) % QStringLiteral(", column = ") %
|
||||
QString::number(pos.column) % QStringLiteral(", lineWidth = ") %
|
||||
QString::number(pos.lineWidth) % QStringLiteral(", nibbleindex = ") %
|
||||
QString::number(pos.nibbleindex) % QStringLiteral(" }");
|
||||
}
|
|
@ -0,0 +1,70 @@
|
|||
/*==============================================================================
|
||||
** Copyright (C) 2024-2027 WingSummer
|
||||
**
|
||||
** Permission is hereby granted, free of charge, to any person obtaining a copy
|
||||
** of this software and associated documentation files (the "Software"), to deal
|
||||
** in the Software without restriction, including without limitation the rights
|
||||
** to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
||||
** copies of the Software, and to permit persons to whom the Software is
|
||||
** furnished to do so.
|
||||
**
|
||||
** THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
||||
** IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
||||
** FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
||||
** AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
||||
** LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
||||
** OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
|
||||
** THE SOFTWARE.
|
||||
** =============================================================================
|
||||
*/
|
||||
|
||||
#ifndef READERTESTFORM_H
|
||||
#define READERTESTFORM_H
|
||||
|
||||
#include <QTextBrowser>
|
||||
#include <QWidget>
|
||||
|
||||
#include "iwingplugin.h"
|
||||
|
||||
namespace Ui {
|
||||
class ReaderTestForm;
|
||||
}
|
||||
|
||||
class ReaderTestForm : public QWidget {
|
||||
Q_OBJECT
|
||||
|
||||
public:
|
||||
explicit ReaderTestForm(WingHex::IWingPlugin *plg, QTextBrowser *br,
|
||||
QWidget *parent = nullptr);
|
||||
~ReaderTestForm();
|
||||
|
||||
private slots:
|
||||
void on_btnReadInt8_clicked();
|
||||
|
||||
void on_btnReadInt16_clicked();
|
||||
|
||||
void on_btnReadInt32_clicked();
|
||||
|
||||
void on_btnReadInt64_clicked();
|
||||
|
||||
void on_btnReadFloat_clicked();
|
||||
|
||||
void on_btnReadDouble_clicked();
|
||||
|
||||
void on_btnReadString_clicked();
|
||||
|
||||
void on_btnReadByteArray_clicked();
|
||||
|
||||
void on_btnStatus_clicked();
|
||||
|
||||
private:
|
||||
QString getPrintableHexPosition(const WingHex::HexPosition &pos);
|
||||
|
||||
private:
|
||||
Ui::ReaderTestForm *ui;
|
||||
|
||||
WingHex::IWingPlugin *_plg;
|
||||
QTextBrowser *_br;
|
||||
};
|
||||
|
||||
#endif // READERTESTFORM_H
|
|
@ -0,0 +1,203 @@
|
|||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<ui version="4.0">
|
||||
<class>ReaderTestForm</class>
|
||||
<widget class="QWidget" name="ReaderTestForm">
|
||||
<property name="geometry">
|
||||
<rect>
|
||||
<x>0</x>
|
||||
<y>0</y>
|
||||
<width>457</width>
|
||||
<height>243</height>
|
||||
</rect>
|
||||
</property>
|
||||
<property name="windowTitle">
|
||||
<string notr="true"/>
|
||||
</property>
|
||||
<layout class="QVBoxLayout" name="verticalLayout">
|
||||
<item>
|
||||
<layout class="QFormLayout" name="formLayout">
|
||||
<item row="0" column="0">
|
||||
<widget class="QLabel" name="label_4">
|
||||
<property name="text">
|
||||
<string>Offset</string>
|
||||
</property>
|
||||
</widget>
|
||||
</item>
|
||||
<item row="0" column="1">
|
||||
<widget class="QSpinBox" name="sbOffset"/>
|
||||
</item>
|
||||
<item row="1" column="1">
|
||||
<widget class="QSpinBox" name="sbLen">
|
||||
<property name="minimum">
|
||||
<number>1</number>
|
||||
</property>
|
||||
<property name="maximum">
|
||||
<number>100</number>
|
||||
</property>
|
||||
<property name="value">
|
||||
<number>10</number>
|
||||
</property>
|
||||
</widget>
|
||||
</item>
|
||||
<item row="1" column="0">
|
||||
<widget class="QLabel" name="label_5">
|
||||
<property name="toolTip">
|
||||
<string>ValidWhenByteArray</string>
|
||||
</property>
|
||||
<property name="text">
|
||||
<string>MaxLength</string>
|
||||
</property>
|
||||
</widget>
|
||||
</item>
|
||||
</layout>
|
||||
</item>
|
||||
<item>
|
||||
<widget class="QGroupBox" name="groupBox">
|
||||
<property name="minimumSize">
|
||||
<size>
|
||||
<width>0</width>
|
||||
<height>150</height>
|
||||
</size>
|
||||
</property>
|
||||
<property name="title">
|
||||
<string>Type</string>
|
||||
</property>
|
||||
<layout class="QGridLayout" name="gridLayout" rowminimumheight="50,50,50">
|
||||
<property name="sizeConstraint">
|
||||
<enum>QLayout::SetMinAndMaxSize</enum>
|
||||
</property>
|
||||
<item row="0" column="0">
|
||||
<widget class="QPushButton" name="btnReadInt8">
|
||||
<property name="sizePolicy">
|
||||
<sizepolicy hsizetype="Minimum" vsizetype="Preferred">
|
||||
<horstretch>0</horstretch>
|
||||
<verstretch>0</verstretch>
|
||||
</sizepolicy>
|
||||
</property>
|
||||
<property name="text">
|
||||
<string notr="true">Int8</string>
|
||||
</property>
|
||||
</widget>
|
||||
</item>
|
||||
<item row="0" column="1">
|
||||
<widget class="QPushButton" name="btnReadInt16">
|
||||
<property name="sizePolicy">
|
||||
<sizepolicy hsizetype="Minimum" vsizetype="Preferred">
|
||||
<horstretch>0</horstretch>
|
||||
<verstretch>0</verstretch>
|
||||
</sizepolicy>
|
||||
</property>
|
||||
<property name="text">
|
||||
<string notr="true">Int16</string>
|
||||
</property>
|
||||
</widget>
|
||||
</item>
|
||||
<item row="0" column="2">
|
||||
<widget class="QPushButton" name="btnReadInt32">
|
||||
<property name="sizePolicy">
|
||||
<sizepolicy hsizetype="Minimum" vsizetype="Preferred">
|
||||
<horstretch>0</horstretch>
|
||||
<verstretch>0</verstretch>
|
||||
</sizepolicy>
|
||||
</property>
|
||||
<property name="text">
|
||||
<string notr="true">Int32</string>
|
||||
</property>
|
||||
</widget>
|
||||
</item>
|
||||
<item row="1" column="0">
|
||||
<widget class="QPushButton" name="btnReadInt64">
|
||||
<property name="sizePolicy">
|
||||
<sizepolicy hsizetype="Minimum" vsizetype="Preferred">
|
||||
<horstretch>0</horstretch>
|
||||
<verstretch>0</verstretch>
|
||||
</sizepolicy>
|
||||
</property>
|
||||
<property name="text">
|
||||
<string notr="true">Int64</string>
|
||||
</property>
|
||||
</widget>
|
||||
</item>
|
||||
<item row="1" column="1">
|
||||
<widget class="QPushButton" name="btnReadFloat">
|
||||
<property name="sizePolicy">
|
||||
<sizepolicy hsizetype="Minimum" vsizetype="Preferred">
|
||||
<horstretch>0</horstretch>
|
||||
<verstretch>0</verstretch>
|
||||
</sizepolicy>
|
||||
</property>
|
||||
<property name="text">
|
||||
<string notr="true">Float</string>
|
||||
</property>
|
||||
</widget>
|
||||
</item>
|
||||
<item row="1" column="2">
|
||||
<widget class="QPushButton" name="btnReadDouble">
|
||||
<property name="sizePolicy">
|
||||
<sizepolicy hsizetype="Minimum" vsizetype="Preferred">
|
||||
<horstretch>0</horstretch>
|
||||
<verstretch>0</verstretch>
|
||||
</sizepolicy>
|
||||
</property>
|
||||
<property name="text">
|
||||
<string notr="true">Double</string>
|
||||
</property>
|
||||
</widget>
|
||||
</item>
|
||||
<item row="2" column="0">
|
||||
<widget class="QPushButton" name="btnReadString">
|
||||
<property name="sizePolicy">
|
||||
<sizepolicy hsizetype="Minimum" vsizetype="Preferred">
|
||||
<horstretch>0</horstretch>
|
||||
<verstretch>0</verstretch>
|
||||
</sizepolicy>
|
||||
</property>
|
||||
<property name="text">
|
||||
<string notr="true">String</string>
|
||||
</property>
|
||||
</widget>
|
||||
</item>
|
||||
<item row="2" column="2">
|
||||
<widget class="QPushButton" name="btnReadByteArray">
|
||||
<property name="sizePolicy">
|
||||
<sizepolicy hsizetype="Minimum" vsizetype="Preferred">
|
||||
<horstretch>0</horstretch>
|
||||
<verstretch>0</verstretch>
|
||||
</sizepolicy>
|
||||
</property>
|
||||
<property name="text">
|
||||
<string notr="true">ByteArray</string>
|
||||
</property>
|
||||
</widget>
|
||||
</item>
|
||||
<item row="2" column="1">
|
||||
<widget class="QLabel" name="label">
|
||||
<property name="text">
|
||||
<string notr="true">WingSummer</string>
|
||||
</property>
|
||||
<property name="alignment">
|
||||
<set>Qt::AlignCenter</set>
|
||||
</property>
|
||||
</widget>
|
||||
</item>
|
||||
</layout>
|
||||
</widget>
|
||||
</item>
|
||||
<item>
|
||||
<widget class="QPushButton" name="btnStatus">
|
||||
<property name="minimumSize">
|
||||
<size>
|
||||
<width>0</width>
|
||||
<height>25</height>
|
||||
</size>
|
||||
</property>
|
||||
<property name="text">
|
||||
<string>Status</string>
|
||||
</property>
|
||||
</widget>
|
||||
</item>
|
||||
</layout>
|
||||
</widget>
|
||||
<resources/>
|
||||
<connections/>
|
||||
</ui>
|
|
@ -21,14 +21,41 @@
|
|||
#include "testform.h"
|
||||
#include "ui_testform.h"
|
||||
|
||||
#include "ctltestform.h"
|
||||
#include "readertestform.h"
|
||||
#include "testtablemodel.h"
|
||||
|
||||
#include <QAbstractTableModel>
|
||||
#include <QFileSystemModel>
|
||||
#include <QMetaEnum>
|
||||
#include <QScrollArea>
|
||||
#include <QStandardItemModel>
|
||||
|
||||
TestForm::TestForm(WingHex::IWingPlugin *plg, QWidget *parent)
|
||||
: QWidget(parent), ui(new Ui::TestForm), _plg(plg) {
|
||||
ui->setupUi(this);
|
||||
|
||||
ui->teDataVisual->setAcceptRichText(false);
|
||||
|
||||
ui->saReader->widget()->layout()->addWidget(
|
||||
new ReaderTestForm(_plg, ui->tbReaderLogger, this));
|
||||
ui->saCtl->widget()->layout()->addWidget(
|
||||
new CtlTestForm(_plg, ui->tbCtlLogger, this));
|
||||
|
||||
ui->spltReader->setSizes({300, 150});
|
||||
ui->spltCtl->setSizes({300, 150});
|
||||
|
||||
initLogCombo();
|
||||
initStyleCombo();
|
||||
initMsgBoxBtnCombo();
|
||||
initMsgBoxCheckedBtnCombo();
|
||||
initMsgBoxIconCombo();
|
||||
initFileDialogOps();
|
||||
initFileHandleListWidget();
|
||||
|
||||
_click = std::bind(&TestForm::onDVClicked, this, std::placeholders::_1);
|
||||
_dblclick =
|
||||
std::bind(&TestForm::onDVDoubleClicked, this, std::placeholders::_1);
|
||||
}
|
||||
|
||||
TestForm::~TestForm() { delete ui; }
|
||||
|
@ -44,13 +71,100 @@ void TestForm::initStyleCombo() {
|
|||
auto style = this->style();
|
||||
auto e = QMetaEnum::fromType<QStyle::StandardPixmap>();
|
||||
for (int i = 0; i < QStyle::StandardPixmap::NStandardPixmap; ++i) {
|
||||
auto icon = style->standardIcon(QStyle::StandardPixmap(i));
|
||||
auto ee = QStyle::StandardPixmap(i);
|
||||
auto icon = style->standardIcon(ee);
|
||||
if (!icon.isNull()) {
|
||||
ui->cbToastIcon->addItem(icon, e.key(i));
|
||||
ui->cbToastIcon->addItem(icon, e.key(i), style->standardPixmap(ee));
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
void TestForm::initMsgBoxCheckedBtnCombo() {
|
||||
// Qt declared that QMessageBox::StandardButton and
|
||||
// QDialogButtonBox::StandardButton shoud be kept in sync
|
||||
auto e = QMetaEnum::fromType<QDialogButtonBox::StandardButtons>();
|
||||
ui->cbMsgButtons->setNoneCheckedText(
|
||||
e.valueToKey(QDialogButtonBox::StandardButton::NoButton));
|
||||
ui->cbMsgButtons->setAllCheckedText(QStringLiteral("ALL_BUTTONS"));
|
||||
ui->cbMsgButtons->setUnknownlyCheckedText(
|
||||
QStringLiteral("UNKNOWN_BUTTONS"));
|
||||
for (int i = 0; i < e.keyCount(); ++i) {
|
||||
if (e.value(i) != QDialogButtonBox::StandardButton::NoButton) {
|
||||
ui->cbMsgButtons->addCheckItem(e.key(i), e.value(i), Qt::Unchecked);
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
void TestForm::initMsgBoxBtnCombo() {
|
||||
// Qt declared that QMessageBox::StandardButton and
|
||||
// QDialogButtonBox::StandardButton shoud be kept in sync
|
||||
auto e = QMetaEnum::fromType<QDialogButtonBox::StandardButtons>();
|
||||
for (int i = 0; i < e.keyCount(); ++i) {
|
||||
ui->cbMsgDefButton->addItem(e.key(i), e.value(i));
|
||||
}
|
||||
}
|
||||
|
||||
void TestForm::initMsgBoxIconCombo() {
|
||||
auto e = QMetaEnum::fromType<QMessageBox::Icon>();
|
||||
for (int i = 0; i < e.keyCount(); ++i) {
|
||||
ui->cbMsgIcon->addItem(e.key(i), e.value(i));
|
||||
}
|
||||
}
|
||||
|
||||
void TestForm::initFileDialogOps() {
|
||||
auto e = QMetaEnum::fromType<QFileDialog::Option>();
|
||||
ui->cbFileDialogOptions->setNoneCheckedText(QStringLiteral("NO_OPTION"));
|
||||
ui->cbFileDialogOptions->setAllCheckedText(QStringLiteral("ALL_OPTIONS"));
|
||||
ui->cbFileDialogOptions->setUnknownlyCheckedText(
|
||||
QStringLiteral("UNKNOWN_OPTIONS"));
|
||||
|
||||
for (int i = 0; i < e.keyCount(); ++i) {
|
||||
ui->cbFileDialogOptions->addCheckItem(e.key(i), e.value(i),
|
||||
Qt::Unchecked);
|
||||
}
|
||||
}
|
||||
|
||||
void TestForm::initFileHandleListWidget() {
|
||||
auto item = new QListWidgetItem(QStringLiteral("HexEditor_Current (-1)"));
|
||||
item->setData(Qt::UserRole, int(-1));
|
||||
ui->lwHandle->addItem(item);
|
||||
}
|
||||
|
||||
QMessageBox::StandardButtons TestForm::getMsgButtons() const {
|
||||
QMessageBox::StandardButtons buttons =
|
||||
QMessageBox::StandardButton::NoButton;
|
||||
for (int i = 0; i < ui->cbMsgButtons->count(); ++i) {
|
||||
if (ui->cbMsgButtons->itemData(i, Qt::CheckStateRole)
|
||||
.value<Qt::CheckState>() == Qt::Checked) {
|
||||
buttons.setFlag(QMessageBox::StandardButton(
|
||||
ui->cbMsgButtons->itemData(i, Qt::UserRole + 1).toInt()));
|
||||
}
|
||||
}
|
||||
return buttons;
|
||||
}
|
||||
|
||||
QFileDialog::Options TestForm::getFileDialogOptions() const {
|
||||
QFileDialog::Options options;
|
||||
for (int i = 0; i < ui->cbFileDialogOptions->count(); ++i) {
|
||||
if (ui->cbFileDialogOptions->itemData(i, Qt::CheckStateRole)
|
||||
.value<Qt::CheckState>() == Qt::Checked) {
|
||||
options.setFlag(QFileDialog::Option(
|
||||
ui->cbMsgButtons->itemData(i, Qt::UserRole + 1).toInt()));
|
||||
}
|
||||
}
|
||||
return options;
|
||||
}
|
||||
|
||||
void TestForm::onDVClicked(const QModelIndex &index) {
|
||||
emit _plg->warn(QStringLiteral("[Test - Click] ") +
|
||||
index.model()->data(index).toString());
|
||||
}
|
||||
|
||||
void TestForm::onDVDoubleClicked(const QModelIndex &index) {
|
||||
emit _plg->msgbox.warning(this, QStringLiteral("Test - DoubleClick"),
|
||||
index.model()->data(index).toString());
|
||||
}
|
||||
|
||||
void TestForm::on_btnSendLog_clicked() {
|
||||
auto txt = ui->leLogText->text();
|
||||
switch (Level(ui->cbLogLevel->currentIndex())) {
|
||||
|
@ -74,4 +188,343 @@ void TestForm::on_btnSendLog_clicked() {
|
|||
}
|
||||
}
|
||||
|
||||
void TestForm::on_btnSendToast_clicked() {}
|
||||
void TestForm::on_btnSendToast_clicked() {
|
||||
auto idx = ui->cbToastIcon->currentIndex();
|
||||
Q_ASSERT(idx >= 0);
|
||||
auto icon = ui->cbToastIcon->itemData(idx).value<QPixmap>();
|
||||
emit _plg->toast(icon, ui->leToastText->text());
|
||||
}
|
||||
|
||||
void TestForm::on_btnAboutQt_clicked() {
|
||||
emit _plg->msgbox.aboutQt(this, ui->leAboutTitle->text());
|
||||
}
|
||||
|
||||
void TestForm::on_btnQuestion_clicked() {
|
||||
emit _plg->msgbox.question(
|
||||
this, ui->leMsgTitle->text(), ui->leMsgText->text(), getMsgButtons(),
|
||||
QMessageBox::StandardButton(ui->cbMsgDefButton->currentData().toInt()));
|
||||
}
|
||||
|
||||
void TestForm::on_btnWarning_clicked() {
|
||||
emit _plg->msgbox.warning(
|
||||
this, ui->leMsgTitle->text(), ui->leMsgText->text(), getMsgButtons(),
|
||||
QMessageBox::StandardButton(ui->cbMsgDefButton->currentData().toInt()));
|
||||
}
|
||||
|
||||
void TestForm::on_btnCritical_clicked() {
|
||||
emit _plg->msgbox.critical(
|
||||
this, ui->leMsgTitle->text(), ui->leMsgText->text(), getMsgButtons(),
|
||||
QMessageBox::StandardButton(ui->cbMsgDefButton->currentData().toInt()));
|
||||
}
|
||||
|
||||
void TestForm::on_btnAbout_clicked() {
|
||||
emit _plg->msgbox.about(this, ui->leMsgTitle->text(),
|
||||
ui->leMsgText->text());
|
||||
}
|
||||
|
||||
void TestForm::on_btnMsgBox_clicked() {
|
||||
emit _plg->msgbox.msgbox(
|
||||
this, ui->cbMsgIcon->currentData().value<QMessageBox::Icon>(),
|
||||
ui->leMsgTitle->text(), ui->leMsgText->text(), getMsgButtons(),
|
||||
QMessageBox::StandardButton(ui->cbMsgDefButton->currentData().toInt()));
|
||||
}
|
||||
|
||||
void TestForm::on_btnText_clicked() {
|
||||
bool ok = false;
|
||||
auto ret = emit _plg->inputbox.getText(
|
||||
this, ui->leInputTitle->text(), ui->leInputLabel->text(),
|
||||
QLineEdit::Normal, __FUNCTION__, &ok);
|
||||
ui->tbInputLogger->append(
|
||||
QStringLiteral("[getText] ( ") %
|
||||
(ok ? QStringLiteral("true") : QStringLiteral("false")) %
|
||||
QStringLiteral(" ) ") % ret);
|
||||
}
|
||||
|
||||
void TestForm::on_btnMultiLineText_clicked() {
|
||||
bool ok = false;
|
||||
auto ret = emit _plg->inputbox.getMultiLineText(
|
||||
this, ui->leInputTitle->text(), ui->leInputLabel->text(), __FUNCTION__,
|
||||
&ok);
|
||||
ui->tbInputLogger->append(
|
||||
QStringLiteral("[getText] ( ") %
|
||||
(ok ? QStringLiteral("true") : QStringLiteral("false")) %
|
||||
QStringLiteral(" ) ") % ret);
|
||||
}
|
||||
|
||||
void TestForm::on_btnItem_clicked() {
|
||||
QStringList l;
|
||||
for (int i = 0; i < WingHex::SDKVERSION; ++i) {
|
||||
l.append(QStringLiteral("WingSummer WingHex2 - %1").arg(i));
|
||||
}
|
||||
bool ok = false;
|
||||
auto ret =
|
||||
emit _plg->inputbox.getItem(this, ui->leInputTitle->text(),
|
||||
ui->leInputLabel->text(), l, 0, true, &ok);
|
||||
ui->tbInputLogger->append(
|
||||
QStringLiteral("[getItem] ( ") %
|
||||
(ok ? QStringLiteral("true") : QStringLiteral("false")) %
|
||||
QStringLiteral(" ) ") % ret);
|
||||
}
|
||||
|
||||
void TestForm::on_btnInt_clicked() {
|
||||
bool ok = false;
|
||||
auto ret = emit _plg->inputbox.getInt(this, ui->leInputTitle->text(),
|
||||
ui->leInputLabel->text(), 0, 0,
|
||||
WingHex::SDKVERSION, 1, &ok);
|
||||
ui->tbInputLogger->append(
|
||||
QStringLiteral("[getInt] ( ") %
|
||||
(ok ? QStringLiteral("true") : QStringLiteral("false")) %
|
||||
QStringLiteral(" ) ") % QString::number(ret));
|
||||
}
|
||||
|
||||
void TestForm::on_btnDouble_clicked() {
|
||||
bool ok = false;
|
||||
auto ret = emit _plg->inputbox.getDouble(
|
||||
this, ui->leInputTitle->text(), ui->leInputLabel->text(),
|
||||
QLineEdit::Normal, -double(WingHex::SDKVERSION), 0.0,
|
||||
double(WingHex::SDKVERSION), &ok);
|
||||
ui->tbInputLogger->append(
|
||||
QStringLiteral("[getDouble] ( ") %
|
||||
(ok ? QStringLiteral("true") : QStringLiteral("false")) %
|
||||
QStringLiteral(" ) ") % QString::number(ret));
|
||||
}
|
||||
|
||||
void TestForm::on_btnExistingDirectory_clicked() {
|
||||
auto ret = emit _plg->filedlg.getExistingDirectory(
|
||||
this, ui->leFileCaption->text(), qApp->applicationDirPath(),
|
||||
getFileDialogOptions());
|
||||
ui->tbFileLogger->append(QStringLiteral("[getExistingDirectory] ") % ret);
|
||||
}
|
||||
|
||||
void TestForm::on_btnOpenFileName_clicked() {
|
||||
auto ret = emit _plg->filedlg.getOpenFileName(
|
||||
this, ui->leFileCaption->text(), qApp->applicationDirPath(),
|
||||
ui->leFileFilter->text(), nullptr, getFileDialogOptions());
|
||||
ui->tbFileLogger->append(QStringLiteral("[getOpenFileName] ") % ret);
|
||||
}
|
||||
|
||||
void TestForm::on_btnOpenFileNames_clicked() {
|
||||
auto ret = emit _plg->filedlg.getOpenFileNames(
|
||||
this, ui->leFileCaption->text(), qApp->applicationDirPath(),
|
||||
ui->leFileFilter->text(), nullptr, getFileDialogOptions());
|
||||
ui->tbFileLogger->append(QStringLiteral("[getOpenFileName] ") %
|
||||
ret.join(';'));
|
||||
}
|
||||
|
||||
void TestForm::on_btnSaveFileName_clicked() {
|
||||
auto ret = emit _plg->filedlg.getSaveFileName(
|
||||
this, ui->leFileCaption->text(), qApp->applicationDirPath(),
|
||||
ui->leFileFilter->text(), nullptr, getFileDialogOptions());
|
||||
ui->tbFileLogger->append(QStringLiteral("[getSaveFileName] ") % ret);
|
||||
}
|
||||
|
||||
void TestForm::on_btnGetColor_clicked() {
|
||||
auto ret = emit _plg->colordlg.getColor(ui->leColorCaption->text(), this);
|
||||
if (ret.isValid()) {
|
||||
ui->wColor->setStyleSheet(QStringLiteral("background-color:") +
|
||||
ret.name());
|
||||
} else {
|
||||
ui->wColor->setStyleSheet({});
|
||||
}
|
||||
}
|
||||
|
||||
void TestForm::on_btnText_2_clicked() {
|
||||
emit _plg->visual.updateText(ui->teDataVisual->toPlainText());
|
||||
}
|
||||
|
||||
void TestForm::on_btnTextList_clicked() {
|
||||
auto txts = ui->teDataVisual->toPlainText().split('\n');
|
||||
emit _plg->visual.updateTextList(txts, _click, _dblclick);
|
||||
}
|
||||
|
||||
void TestForm::on_btnTextTree_clicked() {
|
||||
auto ret = emit _plg->visual.updateTextTree(ui->teDataVisual->toPlainText(),
|
||||
_click, _dblclick);
|
||||
if (!ret) {
|
||||
emit _plg->msgbox.critical(this, QStringLiteral("Test"),
|
||||
tr("UpdateTextTreeError"));
|
||||
}
|
||||
}
|
||||
|
||||
void TestForm::on_btnTextTable_clicked() {
|
||||
auto ret = emit _plg->visual.updateTextTable(
|
||||
ui->teDataVisual->toPlainText(),
|
||||
{WingHex::WINGSUMMER, WingHex::WINGSUMMER}, {}, _click, _dblclick);
|
||||
if (!ret) {
|
||||
emit _plg->msgbox.critical(this, QStringLiteral("Test"),
|
||||
tr("UpdateTextTreeError"));
|
||||
}
|
||||
}
|
||||
|
||||
void TestForm::on_btnTextListByModel_clicked() {
|
||||
auto model = new QStringListModel;
|
||||
QStringList buffer;
|
||||
for (int i = 0; i < WingHex::SDKVERSION; ++i) {
|
||||
buffer.append(WingHex::WINGSUMMER % QString::number(i));
|
||||
}
|
||||
model->setStringList(buffer);
|
||||
auto ret =
|
||||
emit _plg->visual.updateTextListByModel(model, _click, _dblclick);
|
||||
if (!ret) {
|
||||
emit _plg->msgbox.critical(this, QStringLiteral("Test"),
|
||||
tr("UpdateTextListByModelError"));
|
||||
}
|
||||
}
|
||||
|
||||
void TestForm::on_btnTextTableByModel_clicked() {
|
||||
auto model = new TestTableModel;
|
||||
auto ret =
|
||||
emit _plg->visual.updateTextTableByModel(model, _click, _dblclick);
|
||||
if (!ret) {
|
||||
emit _plg->msgbox.critical(this, QStringLiteral("Test"),
|
||||
tr("UpdateTextTableByModelError"));
|
||||
}
|
||||
}
|
||||
|
||||
void TestForm::on_btnTextTreeByModel_clicked() {
|
||||
auto model = new QFileSystemModel;
|
||||
model->setRootPath(QDir::currentPath());
|
||||
auto ret =
|
||||
emit _plg->visual.updateTextTreeByModel(model, _click, _dblclick);
|
||||
if (!ret) {
|
||||
emit _plg->msgbox.critical(this, QStringLiteral("Test"),
|
||||
tr("UpdateTextTreeByModelError"));
|
||||
}
|
||||
}
|
||||
|
||||
void TestForm::on_btnStatusVisible_clicked() {
|
||||
if (ui->rbLockedFile->isChecked()) {
|
||||
Q_UNUSED(emit _plg->controller.setLockedFile(true));
|
||||
} else if (ui->rbAddressVisible->isChecked()) {
|
||||
Q_UNUSED(emit _plg->controller.setAddressVisible(true));
|
||||
} else if (ui->rbHeaderVisible->isChecked()) {
|
||||
Q_UNUSED(emit _plg->controller.setHeaderVisible(true));
|
||||
} else if (ui->rbKeepSize->isChecked()) {
|
||||
Q_UNUSED(emit _plg->controller.setKeepSize(true));
|
||||
} else if (ui->rbStringVisible->isChecked()) {
|
||||
Q_UNUSED(emit _plg->controller.setStringVisible(true));
|
||||
}
|
||||
}
|
||||
|
||||
void TestForm::on_btnStatusInvisible_clicked() {
|
||||
if (ui->rbLockedFile->isChecked()) {
|
||||
Q_UNUSED(emit _plg->controller.setLockedFile(false));
|
||||
} else if (ui->rbAddressVisible->isChecked()) {
|
||||
Q_UNUSED(emit _plg->controller.setAddressVisible(false));
|
||||
} else if (ui->rbHeaderVisible->isChecked()) {
|
||||
Q_UNUSED(emit _plg->controller.setHeaderVisible(false));
|
||||
} else if (ui->rbKeepSize->isChecked()) {
|
||||
Q_UNUSED(emit _plg->controller.setKeepSize(false));
|
||||
} else if (ui->rbStringVisible->isChecked()) {
|
||||
Q_UNUSED(emit _plg->controller.setStringVisible(false));
|
||||
}
|
||||
}
|
||||
|
||||
void TestForm::on_btnSwitch_clicked() {
|
||||
auto item = ui->lwHandle->currentItem();
|
||||
auto handle = item->data(Qt::UserRole).toInt();
|
||||
auto ret = emit _plg->controller.switchDocument(handle);
|
||||
if (!ret) {
|
||||
}
|
||||
}
|
||||
|
||||
void TestForm::on_btnNewFile_clicked() {
|
||||
auto h = emit _plg->controller.newFile();
|
||||
if (h < 0) {
|
||||
auto e = QMetaEnum::fromType<WingHex::ErrFile>();
|
||||
emit _plg->msgbox.critical(this, QStringLiteral("Error"),
|
||||
e.valueToKey(h));
|
||||
} else {
|
||||
auto item = new QListWidgetItem(QStringLiteral("NewFile (%1)").arg(h));
|
||||
item->setData(Qt::UserRole, h);
|
||||
ui->lwHandle->addItem(item);
|
||||
}
|
||||
}
|
||||
|
||||
void TestForm::on_btnOpenFile_clicked() {
|
||||
auto filename =
|
||||
emit _plg->filedlg.getOpenFileName(this, QStringLiteral("Test"));
|
||||
if (filename.isEmpty()) {
|
||||
return;
|
||||
}
|
||||
|
||||
auto h = emit _plg->controller.openFile(filename);
|
||||
if (h < 0) {
|
||||
auto e = QMetaEnum::fromType<WingHex::ErrFile>();
|
||||
emit _plg->msgbox.critical(this, QStringLiteral("Error"),
|
||||
e.valueToKey(h));
|
||||
} else {
|
||||
auto item = new QListWidgetItem(QStringLiteral("%1 (%2)")
|
||||
.arg(QFileInfo(filename).fileName())
|
||||
.arg(h));
|
||||
item->setData(Qt::UserRole, h);
|
||||
ui->lwHandle->addItem(item);
|
||||
}
|
||||
}
|
||||
|
||||
void TestForm::on_btnOpenRegionFile_clicked() {
|
||||
auto filename =
|
||||
emit _plg->filedlg.getOpenFileName(this, QStringLiteral("Test"));
|
||||
if (filename.isEmpty()) {
|
||||
return;
|
||||
}
|
||||
|
||||
auto h = emit _plg->controller.openWorkSpace(filename);
|
||||
if (h < 0) {
|
||||
auto e = QMetaEnum::fromType<WingHex::ErrFile>();
|
||||
emit _plg->msgbox.critical(this, QStringLiteral("Error"),
|
||||
e.valueToKey(h));
|
||||
} else {
|
||||
auto item = new QListWidgetItem(QStringLiteral("WS - %1 (%2)")
|
||||
.arg(QFileInfo(filename).fileName())
|
||||
.arg(h));
|
||||
item->setData(Qt::UserRole, h);
|
||||
ui->lwHandle->addItem(item);
|
||||
}
|
||||
}
|
||||
|
||||
void TestForm::on_btnOpenWorkSpace_clicked() {}
|
||||
|
||||
void TestForm::on_btnOpenDriver_clicked() {
|
||||
auto drivers = emit _plg->reader.getStorageDrivers();
|
||||
bool ok;
|
||||
auto dr = emit _plg->inputbox.getItem(this, QStringLiteral("Test"),
|
||||
tr("Choose"), drivers, 0, false, &ok);
|
||||
if (!ok) {
|
||||
return;
|
||||
}
|
||||
auto h = emit _plg->controller.openDriver(dr);
|
||||
if (h < 0) {
|
||||
auto e = QMetaEnum::fromType<WingHex::ErrFile>();
|
||||
emit _plg->msgbox.critical(this, QStringLiteral("Error"),
|
||||
e.valueToKey(h));
|
||||
} else {
|
||||
auto item =
|
||||
new QListWidgetItem(QStringLiteral("%1 (%2)").arg(dr).arg(h));
|
||||
item->setData(Qt::UserRole, h);
|
||||
ui->lwHandle->addItem(item);
|
||||
}
|
||||
}
|
||||
|
||||
void TestForm::on_btnSaveFile_clicked() {}
|
||||
|
||||
void TestForm::on_btnSaveAsFile_clicked() {}
|
||||
|
||||
void TestForm::on_btnExportFile_clicked() {}
|
||||
|
||||
void TestForm::on_btnCloseFile_clicked() {
|
||||
auto item = ui->lwHandle->currentItem();
|
||||
auto handle = item->data(Qt::UserRole).toInt();
|
||||
auto ret = emit _plg->controller.closeFile(handle);
|
||||
|
||||
if (ret == WingHex::ErrFile::Success) {
|
||||
if (handle >= 0) {
|
||||
ui->lwHandle->removeItemWidget(item);
|
||||
delete item;
|
||||
}
|
||||
} else {
|
||||
auto e = QMetaEnum::fromType<WingHex::ErrFile>();
|
||||
emit _plg->msgbox.critical(this, QStringLiteral("Error"),
|
||||
e.valueToKey(ret));
|
||||
}
|
||||
}
|
||||
|
|
|
@ -55,14 +55,106 @@ private slots:
|
|||
|
||||
void on_btnSendToast_clicked();
|
||||
|
||||
void on_btnAboutQt_clicked();
|
||||
|
||||
void on_btnQuestion_clicked();
|
||||
|
||||
void on_btnWarning_clicked();
|
||||
|
||||
void on_btnCritical_clicked();
|
||||
|
||||
void on_btnAbout_clicked();
|
||||
|
||||
void on_btnMsgBox_clicked();
|
||||
|
||||
void on_btnText_clicked();
|
||||
|
||||
void on_btnMultiLineText_clicked();
|
||||
|
||||
void on_btnItem_clicked();
|
||||
|
||||
void on_btnInt_clicked();
|
||||
|
||||
void on_btnDouble_clicked();
|
||||
|
||||
void on_btnExistingDirectory_clicked();
|
||||
|
||||
void on_btnOpenFileName_clicked();
|
||||
|
||||
void on_btnOpenFileNames_clicked();
|
||||
|
||||
void on_btnSaveFileName_clicked();
|
||||
|
||||
void on_btnGetColor_clicked();
|
||||
|
||||
void on_btnText_2_clicked();
|
||||
|
||||
void on_btnTextList_clicked();
|
||||
|
||||
void on_btnTextTree_clicked();
|
||||
|
||||
void on_btnTextTable_clicked();
|
||||
|
||||
void on_btnTextListByModel_clicked();
|
||||
|
||||
void on_btnTextTableByModel_clicked();
|
||||
|
||||
void on_btnTextTreeByModel_clicked();
|
||||
|
||||
void on_btnStatusVisible_clicked();
|
||||
|
||||
void on_btnStatusInvisible_clicked();
|
||||
|
||||
void on_btnSwitch_clicked();
|
||||
|
||||
void on_btnNewFile_clicked();
|
||||
|
||||
void on_btnOpenFile_clicked();
|
||||
|
||||
void on_btnOpenRegionFile_clicked();
|
||||
|
||||
void on_btnOpenWorkSpace_clicked();
|
||||
|
||||
void on_btnOpenDriver_clicked();
|
||||
|
||||
void on_btnSaveFile_clicked();
|
||||
|
||||
void on_btnSaveAsFile_clicked();
|
||||
|
||||
void on_btnExportFile_clicked();
|
||||
|
||||
void on_btnCloseFile_clicked();
|
||||
|
||||
private:
|
||||
void initLogCombo();
|
||||
|
||||
void initStyleCombo();
|
||||
|
||||
void initMsgBoxCheckedBtnCombo();
|
||||
|
||||
void initMsgBoxBtnCombo();
|
||||
|
||||
void initMsgBoxIconCombo();
|
||||
|
||||
void initFileDialogOps();
|
||||
|
||||
void initFileHandleListWidget();
|
||||
|
||||
private:
|
||||
QMessageBox::StandardButtons getMsgButtons() const;
|
||||
|
||||
QFileDialog::Options getFileDialogOptions() const;
|
||||
|
||||
void onDVClicked(const QModelIndex &index);
|
||||
|
||||
void onDVDoubleClicked(const QModelIndex &index);
|
||||
|
||||
private:
|
||||
Ui::TestForm *ui;
|
||||
|
||||
WingHex::WingPlugin::DataVisual::ClickedCallBack _click;
|
||||
WingHex::WingPlugin::DataVisual::DoubleClickedCallBack _dblclick;
|
||||
|
||||
WingHex::IWingPlugin *_plg;
|
||||
};
|
||||
|
||||
|
|
File diff suppressed because it is too large
Load Diff
|
@ -20,6 +20,9 @@
|
|||
|
||||
#include "testplugin.h"
|
||||
#include "testform.h"
|
||||
#include "testpluginpage.h"
|
||||
#include "testsettingpage.h"
|
||||
#include "testwingeditorviewwidget.h"
|
||||
|
||||
TestPlugin::TestPlugin() : puid(QStringLiteral("TestPlugin2")) {
|
||||
// 在构造函数中,所有的 API 都无法调用。插件的翻译文件也不会自动加载。
|
||||
|
@ -28,6 +31,25 @@ TestPlugin::TestPlugin() : puid(QStringLiteral("TestPlugin2")) {
|
|||
// 插件的语言文件会在初始化前自动加载,如果初始化失败则会被卸载
|
||||
// 初始化会传递一个配置类,插件系统会统一管理放到统一的地方,使用 INI 保存
|
||||
// 你可以自行管理,但不建议,统一管理方便使用者备份和转移插件配置
|
||||
|
||||
{
|
||||
WingHex::IWingPlugin::ScriptFnInfo info;
|
||||
info.fn =
|
||||
std::bind(QOverload<const QVariantList &>::of(&TestPlugin::test_a),
|
||||
this, std::placeholders::_1);
|
||||
info.ret = MetaType::Void;
|
||||
_scriptInfo.insert(QStringLiteral("test_a"), info);
|
||||
}
|
||||
|
||||
{
|
||||
WingHex::IWingPlugin::ScriptFnInfo info;
|
||||
info.fn =
|
||||
std::bind(QOverload<const QVariantList &>::of(&TestPlugin::test_b),
|
||||
this, std::placeholders::_1);
|
||||
info.ret = MetaType::Void;
|
||||
info.params.append(qMakePair(MetaType::String, QStringLiteral("info")));
|
||||
_scriptInfo.insert(QStringLiteral("test_b"), info);
|
||||
}
|
||||
}
|
||||
|
||||
TestPlugin::~TestPlugin() {}
|
||||
|
@ -43,6 +65,11 @@ bool TestPlugin::init(const std::unique_ptr<QSettings> &set) {
|
|||
|
||||
// 和日志与 UI 相关的接口此时可用,剩余的 API 初始化成功才可用
|
||||
_tform = emit createDialog(new TestForm(this));
|
||||
if (_tform == nullptr) {
|
||||
return false;
|
||||
}
|
||||
_tform->setWindowFlag(Qt::WindowStaysOnTopHint);
|
||||
_tform->setMaximumHeight(500);
|
||||
|
||||
using TBInfo = WingHex::WingRibbonToolBoxInfo;
|
||||
TBInfo::RibbonCatagories cats;
|
||||
|
@ -96,6 +123,50 @@ bool TestPlugin::init(const std::unique_ptr<QSettings> &set) {
|
|||
_rtbinfo.append(rtinfo);
|
||||
}
|
||||
|
||||
{
|
||||
auto sp = new TestSettingPage(QStringLiteral("Test1"),
|
||||
QStringLiteral("This is a Test1"));
|
||||
_setpages.insert(sp, true);
|
||||
}
|
||||
|
||||
{
|
||||
auto sp = new TestSettingPage(QStringLiteral("Test2"),
|
||||
QStringLiteral("This is a Test2"));
|
||||
_setpages.insert(sp, false);
|
||||
}
|
||||
|
||||
{
|
||||
WingHex::WingDockWidgetInfo info;
|
||||
auto lbl = new QLabel(QStringLiteral("DockTest1"));
|
||||
lbl->setAlignment(Qt::AlignCenter);
|
||||
info.widget = lbl;
|
||||
info.widgetName = QStringLiteral("DockTest1");
|
||||
info.area = Qt::LeftDockWidgetArea;
|
||||
_winfo.append(info);
|
||||
}
|
||||
|
||||
{
|
||||
auto ev = new TestWingEditorViewWidget;
|
||||
_evws.append(ev);
|
||||
}
|
||||
|
||||
{
|
||||
auto pp = new TestPluginPage;
|
||||
_plgps.append(pp);
|
||||
}
|
||||
|
||||
_tmenu = new QMenu(QStringLiteral("TestPlugin"));
|
||||
auto micon = QIcon(QStringLiteral(":/images/TestPlugin/images/btn.png"));
|
||||
_tmenu->setIcon(micon);
|
||||
for (int i = 0; i < 5; ++i) {
|
||||
auto a = new QAction(
|
||||
micon, QStringLiteral("Test - ") + QString::number(i), _tmenu);
|
||||
connect(a, &QAction::triggered, this, [this, a]() {
|
||||
emit msgbox.information(nullptr, QStringLiteral("Test"), a->text());
|
||||
});
|
||||
_tmenu->addAction(a);
|
||||
}
|
||||
|
||||
return true;
|
||||
}
|
||||
|
||||
|
@ -103,6 +174,15 @@ void TestPlugin::unload(std::unique_ptr<QSettings> &set) {
|
|||
// 设个数字,那就是 5 测试一下配置是否正常工作
|
||||
set->setValue("Test", 5);
|
||||
|
||||
for (auto p = _setpages.constKeyValueBegin();
|
||||
p != _setpages.constKeyValueEnd(); ++p) {
|
||||
p->first->deleteLater();
|
||||
}
|
||||
|
||||
for (auto &item : _winfo) {
|
||||
item.widget->deleteLater();
|
||||
}
|
||||
|
||||
_tform->close();
|
||||
_tform->deleteLater();
|
||||
}
|
||||
|
@ -118,7 +198,7 @@ const QString TestPlugin::pluginComment() const {
|
|||
}
|
||||
|
||||
QList<WingHex::WingDockWidgetInfo> TestPlugin::registeredDockWidgets() const {
|
||||
return {};
|
||||
return _winfo;
|
||||
}
|
||||
|
||||
QMenu *TestPlugin::registeredHexContextMenu() const { return _tmenu; }
|
||||
|
@ -129,19 +209,41 @@ TestPlugin::registeredRibbonTools() const {
|
|||
}
|
||||
|
||||
QHash<WingHex::SettingPage *, bool> TestPlugin::registeredSettingPages() const {
|
||||
return {};
|
||||
return _setpages;
|
||||
}
|
||||
|
||||
QList<WingHex::PluginPage *> TestPlugin::registeredPages() const { return {}; }
|
||||
QList<WingHex::PluginPage *> TestPlugin::registeredPages() const {
|
||||
return _plgps;
|
||||
}
|
||||
|
||||
QList<WingHex::WingEditorViewWidget *>
|
||||
TestPlugin::registeredEditorViewWidgets() const {
|
||||
return {};
|
||||
return _evws;
|
||||
}
|
||||
|
||||
QString TestPlugin::getPuid() const { return puid; }
|
||||
|
||||
QHash<QString, WingHex::IWingPlugin::ScriptFnInfo>
|
||||
TestPlugin::registeredScriptFn() {
|
||||
QVariant TestPlugin::test_a(const QVariantList &) {
|
||||
test_a();
|
||||
return {};
|
||||
}
|
||||
|
||||
QVariant TestPlugin::test_b(const QVariantList ¶ms) {
|
||||
if (params.isEmpty()) {
|
||||
return {};
|
||||
}
|
||||
auto arg0 = params.first().toString();
|
||||
test_b(arg0);
|
||||
return {};
|
||||
}
|
||||
|
||||
void TestPlugin::test_a() { emit debug(__FUNCTION__); }
|
||||
|
||||
void TestPlugin::test_b(const QString &a) {
|
||||
emit warn(__FUNCTION__ + QStringLiteral(" : ") % a);
|
||||
}
|
||||
|
||||
QHash<QString, WingHex::IWingPlugin::ScriptFnInfo>
|
||||
TestPlugin::registeredScriptFn() {
|
||||
return _scriptInfo;
|
||||
}
|
||||
|
|
|
@ -71,12 +71,24 @@ public:
|
|||
private:
|
||||
QString getPuid() const;
|
||||
|
||||
QVariant test_a(const QVariantList &);
|
||||
QVariant test_b(const QVariantList ¶ms);
|
||||
|
||||
private:
|
||||
void test_a();
|
||||
void test_b(const QString &a);
|
||||
|
||||
private:
|
||||
QDialog *_tform = nullptr;
|
||||
QMenu *_tmenu = nullptr;
|
||||
const QString puid;
|
||||
|
||||
QHash<QString, WingHex::IWingPlugin::ScriptFnInfo> _scriptInfo;
|
||||
QList<WingHex::WingDockWidgetInfo> _winfo;
|
||||
QList<WingHex::WingRibbonToolBoxInfo> _rtbinfo;
|
||||
QHash<WingHex::SettingPage *, bool> _setpages;
|
||||
QList<WingHex::WingEditorViewWidget *> _evws;
|
||||
QList<WingHex::PluginPage *> _plgps;
|
||||
};
|
||||
|
||||
#endif // TESTPLUGIN_H
|
||||
|
|
|
@ -0,0 +1,18 @@
|
|||
#include "testpluginpage.h"
|
||||
|
||||
#include <QVBoxLayout>
|
||||
|
||||
TestPluginPage::TestPluginPage(QWidget *parent) : WingHex::PluginPage(parent) {
|
||||
auto layout = new QVBoxLayout(this);
|
||||
_lbl = new QLabel(QStringLiteral("TestPluginPage"), this);
|
||||
_lbl->setAlignment(Qt::AlignCenter);
|
||||
layout->addWidget(_lbl);
|
||||
}
|
||||
|
||||
QIcon TestPluginPage::categoryIcon() const {
|
||||
return QIcon(QStringLiteral(":/images/TestPlugin/images/btn.png"));
|
||||
}
|
||||
|
||||
QString TestPluginPage::name() const { return tr("TestPluginPage"); }
|
||||
|
||||
QString TestPluginPage::id() const { return QStringLiteral("TestPluginPage"); }
|
|
@ -0,0 +1,23 @@
|
|||
#ifndef TESTPLUGINPAGE_H
|
||||
#define TESTPLUGINPAGE_H
|
||||
|
||||
#include "settingpage.h"
|
||||
|
||||
#include <QLabel>
|
||||
|
||||
class TestPluginPage : public WingHex::PluginPage {
|
||||
Q_OBJECT
|
||||
public:
|
||||
explicit TestPluginPage(QWidget *parent = nullptr);
|
||||
|
||||
// PageBase interface
|
||||
public:
|
||||
virtual QIcon categoryIcon() const override;
|
||||
virtual QString name() const override;
|
||||
virtual QString id() const override;
|
||||
|
||||
private:
|
||||
QLabel *_lbl = nullptr;
|
||||
};
|
||||
|
||||
#endif // TESTPLUGINPAGE_H
|
|
@ -0,0 +1,26 @@
|
|||
#include "testsettingpage.h"
|
||||
|
||||
#include <QVBoxLayout>
|
||||
|
||||
TestSettingPage::TestSettingPage(const QString &id, const QString &content,
|
||||
QWidget *parent)
|
||||
: WingHex::SettingPage(parent), _id(id) {
|
||||
auto layout = new QVBoxLayout(this);
|
||||
_lbl = new QLabel(content, this);
|
||||
_lbl->setAlignment(Qt::AlignCenter);
|
||||
layout->addWidget(_lbl);
|
||||
}
|
||||
|
||||
QIcon TestSettingPage::categoryIcon() const {
|
||||
return QIcon(QStringLiteral(":/images/TestPlugin/images/btn.png"));
|
||||
}
|
||||
|
||||
QString TestSettingPage::name() const { return _id; }
|
||||
|
||||
QString TestSettingPage::id() const { return _id; }
|
||||
|
||||
void TestSettingPage::apply() {}
|
||||
|
||||
void TestSettingPage::reset() {}
|
||||
|
||||
void TestSettingPage::cancel() {}
|
|
@ -0,0 +1,32 @@
|
|||
#ifndef TESTSETTINGPAGE_H
|
||||
#define TESTSETTINGPAGE_H
|
||||
|
||||
#include "settingpage.h"
|
||||
|
||||
#include <QLabel>
|
||||
|
||||
class TestSettingPage : public WingHex::SettingPage {
|
||||
Q_OBJECT
|
||||
public:
|
||||
explicit TestSettingPage(const QString &id, const QString &content,
|
||||
QWidget *parent = nullptr);
|
||||
|
||||
// PageBase interface
|
||||
public:
|
||||
virtual QIcon categoryIcon() const override;
|
||||
virtual QString name() const override;
|
||||
virtual QString id() const override;
|
||||
|
||||
// SettingPage interface
|
||||
public:
|
||||
virtual void apply() override;
|
||||
virtual void reset() override;
|
||||
virtual void cancel() override;
|
||||
|
||||
private:
|
||||
QLabel *_lbl = nullptr;
|
||||
|
||||
QString _id;
|
||||
};
|
||||
|
||||
#endif // TESTSETTINGPAGE_H
|
|
@ -0,0 +1,36 @@
|
|||
#include "testtablemodel.h"
|
||||
|
||||
#include "iwingplugin.h"
|
||||
|
||||
TestTableModel::TestTableModel(QObject *parent) : QAbstractTableModel(parent) {}
|
||||
|
||||
int TestTableModel::rowCount(const QModelIndex &parent) const {
|
||||
Q_UNUSED(parent);
|
||||
return WingHex::SDKVERSION;
|
||||
}
|
||||
|
||||
int TestTableModel::columnCount(const QModelIndex &parent) const {
|
||||
Q_UNUSED(parent);
|
||||
return 5;
|
||||
}
|
||||
|
||||
QVariant TestTableModel::data(const QModelIndex &index, int role) const {
|
||||
switch (role) {
|
||||
case Qt::DisplayRole:
|
||||
case Qt::ToolTipRole: {
|
||||
return QStringLiteral("(%1, %2)").arg(index.row()).arg(index.column());
|
||||
}
|
||||
case Qt::TextAlignmentRole:
|
||||
return Qt::AlignCenter;
|
||||
}
|
||||
return QVariant();
|
||||
}
|
||||
|
||||
QVariant TestTableModel::headerData(int section, Qt::Orientation orientation,
|
||||
int role) const {
|
||||
Q_UNUSED(orientation);
|
||||
if (role == Qt::DisplayRole) {
|
||||
return section + 1;
|
||||
}
|
||||
return QVariant();
|
||||
}
|
|
@ -0,0 +1,21 @@
|
|||
#ifndef TESTTABLEMODEL_H
|
||||
#define TESTTABLEMODEL_H
|
||||
|
||||
#include <QAbstractTableModel>
|
||||
|
||||
class TestTableModel : public QAbstractTableModel {
|
||||
Q_OBJECT
|
||||
public:
|
||||
explicit TestTableModel(QObject *parent = nullptr);
|
||||
|
||||
// QAbstractItemModel interface
|
||||
public:
|
||||
virtual int rowCount(const QModelIndex &parent) const override;
|
||||
virtual int columnCount(const QModelIndex &parent) const override;
|
||||
virtual QVariant data(const QModelIndex &index, int role) const override;
|
||||
|
||||
virtual QVariant headerData(int section, Qt::Orientation orientation,
|
||||
int role) const override;
|
||||
};
|
||||
|
||||
#endif // TESTTABLEMODEL_H
|
|
@ -0,0 +1,29 @@
|
|||
#include "testwingeditorviewwidget.h"
|
||||
|
||||
#include <QVBoxLayout>
|
||||
|
||||
TestWingEditorViewWidget::TestWingEditorViewWidget(QWidget *parent)
|
||||
: WingHex::WingEditorViewWidget(parent) {
|
||||
auto layout = new QVBoxLayout(this);
|
||||
auto lbl = new QLabel(QStringLiteral("TestWingEditorView"), this);
|
||||
lbl->setAlignment(Qt::AlignCenter);
|
||||
layout->addWidget(lbl);
|
||||
}
|
||||
|
||||
QIcon TestWingEditorViewWidget::icon() const {
|
||||
return QIcon(QStringLiteral(":/images/TestPlugin/images/btn.png"));
|
||||
}
|
||||
|
||||
QString TestWingEditorViewWidget::name() const {
|
||||
return tr("TestWingEditorView");
|
||||
}
|
||||
|
||||
QString TestWingEditorViewWidget::id() const {
|
||||
return QStringLiteral("TestWingEditorView");
|
||||
}
|
||||
|
||||
void TestWingEditorViewWidget::toggled(bool isVisible) {}
|
||||
|
||||
WingHex::WingEditorViewWidget *TestWingEditorViewWidget::clone() {
|
||||
return nullptr;
|
||||
}
|
|
@ -0,0 +1,27 @@
|
|||
#ifndef TESTWINGEDITORVIEWWIDGET_H
|
||||
#define TESTWINGEDITORVIEWWIDGET_H
|
||||
|
||||
#include "iwingplugin.h"
|
||||
|
||||
#include <QLabel>
|
||||
|
||||
class TestWingEditorViewWidget : public WingHex::WingEditorViewWidget {
|
||||
Q_OBJECT
|
||||
public:
|
||||
explicit TestWingEditorViewWidget(QWidget *parent = nullptr);
|
||||
|
||||
// WingEditorViewWidget interface
|
||||
public:
|
||||
virtual QIcon icon() const override;
|
||||
virtual QString name() const override;
|
||||
virtual QString id() const override;
|
||||
|
||||
public slots:
|
||||
virtual void toggled(bool isVisible) override;
|
||||
virtual WingHex::WingEditorViewWidget *clone() override;
|
||||
|
||||
private:
|
||||
QLabel *_lbl = nullptr;
|
||||
};
|
||||
|
||||
#endif // TESTWINGEDITORVIEWWIDGET_H
|
|
@ -74,7 +74,7 @@ BEGIN
|
|||
VALUE "LegalCopyright", "AGPL-3.0"
|
||||
VALUE "OriginalFilename", "WingHexExplorer2.exe"
|
||||
VALUE "ProductName", "羽云十六进制编辑器2"
|
||||
VALUE "ProductVersion", "1.0.0"
|
||||
VALUE "ProductVersion", "2.0.0"
|
||||
END
|
||||
END
|
||||
BLOCK "VarFileInfo"
|
||||
|
|
Binary file not shown.
After Width: | Height: | Size: 2.6 KiB |
File diff suppressed because it is too large
Load Diff
|
@ -1,7 +1,6 @@
|
|||
#!/usr/bin/env bash
|
||||
|
||||
SCRIPT_DIR="/opt/WingHexExplorer2"
|
||||
cd "$SCRIPT_DIR" || exit 1
|
||||
|
||||
ABS_PATHS=()
|
||||
|
||||
|
@ -10,10 +9,12 @@ for path in "$@"; do
|
|||
abs_path=$(realpath "$path" 2>/dev/null)
|
||||
|
||||
if [ -z "$abs_path" ]; then
|
||||
abs_path=$(readlink -f "$path" 2>/dev/null || echo "$path")
|
||||
abs_path="$path"
|
||||
fi
|
||||
|
||||
ABS_PATHS+=("$abs_path")
|
||||
done
|
||||
|
||||
cd "$SCRIPT_DIR" || exit 1
|
||||
|
||||
env LD_LIBRARY_PATH="$SCRIPT_DIR/lib" "$SCRIPT_DIR/WingHexExplorer2" "${ABS_PATHS[@]}"
|
||||
|
|
|
@ -102,6 +102,7 @@
|
|||
<file>images/unlock.png</file>
|
||||
<file>images/unover.png</file>
|
||||
<file>images/unsaved.png</file>
|
||||
<file>images/update.png</file>
|
||||
<file>images/viewtxt.png</file>
|
||||
<file>images/wiki.png</file>
|
||||
<file>images/win.png</file>
|
||||
|
|
|
@ -19,6 +19,8 @@
|
|||
|
||||
#include <QFont>
|
||||
|
||||
#include "QConsoleWidget/QConsoleWidget.h"
|
||||
#include "QConsoleWidget/commandhistorymanager.h"
|
||||
#include "angelscript.h"
|
||||
#include "clangformatmanager.h"
|
||||
#include "dbghelper.h"
|
||||
|
@ -35,11 +37,11 @@
|
|||
AppManager *AppManager::_instance = nullptr;
|
||||
|
||||
AppManager::AppManager(int &argc, char *argv[])
|
||||
: SingleApplication(argc, argv, true) {
|
||||
: QtSingleApplication(argc, argv) {
|
||||
ASSERT_SINGLETON;
|
||||
|
||||
auto args = arguments();
|
||||
if (isSecondary()) {
|
||||
if (this->isRunning()) {
|
||||
QByteArray buffer;
|
||||
QDataStream out(&buffer, QIODevice::WriteOnly);
|
||||
if (args.size() > 1) {
|
||||
|
@ -83,22 +85,18 @@ AppManager::AppManager(int &argc, char *argv[])
|
|||
ClangFormatManager::instance();
|
||||
}
|
||||
|
||||
auto cmdlist = CommandHistoryManager::load();
|
||||
auto &his = QConsoleWidget::history();
|
||||
for (auto &cmd : cmdlist) {
|
||||
his.add(cmd);
|
||||
}
|
||||
|
||||
_w = new MainWindow(splash);
|
||||
|
||||
connect(this, &SingleApplication::instanceStarted, this, [this] {
|
||||
Q_ASSERT(_w);
|
||||
if (!_w->isEnabled()) {
|
||||
return;
|
||||
}
|
||||
_w->show();
|
||||
_w->activateWindow();
|
||||
_w->raise();
|
||||
});
|
||||
|
||||
connect(this, &SingleApplication::receivedMessage, this,
|
||||
[this](quint32 instanceId, QByteArray message) {
|
||||
Q_UNUSED(instanceId);
|
||||
setActivationWindow(_w);
|
||||
|
||||
connect(this, &QtSingleApplication::messageReceived, this,
|
||||
[this](QByteArray message) {
|
||||
Q_ASSERT(_w);
|
||||
if (!_w->isEnabled()) {
|
||||
return;
|
||||
|
@ -111,8 +109,6 @@ AppManager::AppManager(int &argc, char *argv[])
|
|||
openFile(param);
|
||||
}
|
||||
_w->show();
|
||||
_w->activateWindow();
|
||||
_w->raise();
|
||||
});
|
||||
|
||||
if (splash)
|
||||
|
@ -132,6 +128,7 @@ AppManager::AppManager(int &argc, char *argv[])
|
|||
|
||||
AppManager::~AppManager() {
|
||||
ClangFormatManager::instance().save();
|
||||
CommandHistoryManager::save(QConsoleWidget::history().strings_);
|
||||
|
||||
_w->deleteLater();
|
||||
_w = nullptr;
|
||||
|
|
|
@ -18,10 +18,10 @@
|
|||
#ifndef APPMANAGER_H
|
||||
#define APPMANAGER_H
|
||||
|
||||
#include "SingleApplication/singleapplication.h"
|
||||
#include "dialog/mainwindow.h"
|
||||
#include "qtsingleapplication/src/qtsingleapplication.h"
|
||||
|
||||
class AppManager : public SingleApplication {
|
||||
class AppManager : public QtSingleApplication {
|
||||
Q_OBJECT
|
||||
public:
|
||||
explicit AppManager(int &argc, char *argv[]);
|
||||
|
|
|
@ -16,6 +16,7 @@
|
|||
*/
|
||||
|
||||
#include "asdebugger.h"
|
||||
#include "define.h"
|
||||
|
||||
#include <QApplication>
|
||||
#include <QFileInfo>
|
||||
|
@ -82,7 +83,7 @@ void asDebugger::lineCallback(asIScriptContext *ctx) {
|
|||
// for(auto i = 0; i < 5 ; i++) this line will break twice at first
|
||||
if (ctx->GetUserData() == nullptr) {
|
||||
auto dbgContext = new ContextDbgInfo;
|
||||
ctx->SetUserData(dbgContext);
|
||||
ctx->SetUserData(dbgContext, AsUserDataType::UserData_ContextDbgInfo);
|
||||
} else {
|
||||
auto dbgContext =
|
||||
reinterpret_cast<ContextDbgInfo *>(ctx->GetUserData());
|
||||
|
@ -455,6 +456,12 @@ asDebugger::GCStatistic asDebugger::gcStatistics() {
|
|||
|
||||
void asDebugger::runDebugAction(DebugAction action) { m_action = action; }
|
||||
|
||||
void asDebugger::deleteDbgContextInfo(void *info) {
|
||||
if (info) {
|
||||
delete reinterpret_cast<ContextDbgInfo *>(info);
|
||||
}
|
||||
}
|
||||
|
||||
asDebugger::DebugAction asDebugger::currentState() const { return m_action; }
|
||||
|
||||
void asDebugger::setEngine(asIScriptEngine *engine) {
|
||||
|
|
|
@ -118,6 +118,8 @@ public:
|
|||
|
||||
DebugAction currentState() const;
|
||||
|
||||
static void deleteDbgContextInfo(void *info);
|
||||
|
||||
private:
|
||||
QVector<VariablesInfo> globalVariables(asIScriptContext *ctx);
|
||||
QVector<VariablesInfo> localVariables(asIScriptContext *ctx);
|
||||
|
|
|
@ -21,6 +21,7 @@
|
|||
#include <QDir>
|
||||
#include <QRegularExpression>
|
||||
|
||||
#include "settingmanager.h"
|
||||
#include "utilities.h"
|
||||
|
||||
#define INFOLOG(msg) "<font color=\"green\">" + msg + "</font>"
|
||||
|
@ -41,6 +42,15 @@ Logger::Logger(QObject *parent)
|
|||
QDir logDir;
|
||||
logDir.mkpath(logPath);
|
||||
logDir.setPath(logPath);
|
||||
|
||||
// clean up log files if too much
|
||||
auto logs = logDir.entryInfoList({"*.log"}, QDir::Files, QDir::Time);
|
||||
auto total = logs.size();
|
||||
for (decltype(total) i = SettingManager::instance().logCount() - 1;
|
||||
i < total; ++i) {
|
||||
QFile::remove(logs.at(i).absoluteFilePath());
|
||||
}
|
||||
|
||||
auto path = logDir.absoluteFilePath(newFileName);
|
||||
_file = QSharedPointer<QFile>(new QFile(path));
|
||||
if (_file->open(QIODevice::WriteOnly | QIODevice::Text)) {
|
||||
|
@ -48,11 +58,12 @@ Logger::Logger(QObject *parent)
|
|||
}
|
||||
|
||||
connect(this, &Logger::log, this, [this](const QString &message) {
|
||||
static QRegularExpression exp("<[^>]*>");
|
||||
auto str = message;
|
||||
*_stream << str.remove(QRegularExpression("<[^>]*>")) << Qt::endl;
|
||||
*_stream << str.remove(exp) << Qt::endl;
|
||||
});
|
||||
|
||||
if (qEnvironmentVariableIntValue("debug")) {
|
||||
if (qEnvironmentVariableIntValue("WING_DEBUG")) {
|
||||
setLogLevel(Level::q4DEBUG);
|
||||
} else {
|
||||
#ifdef QT_DEBUG
|
||||
|
|
|
@ -27,6 +27,7 @@
|
|||
#include "AngelScript/sdk/add_on/scriptmath/scriptmathcomplex.h"
|
||||
#include "AngelScript/sdk/add_on/weakref/weakref.h"
|
||||
#include "class/asbuilder.h"
|
||||
#include "define.h"
|
||||
#include "plugin/pluginsystem.h"
|
||||
#include "scriptaddon/scriptcolor.h"
|
||||
#include "scriptaddon/scriptjson.h"
|
||||
|
@ -71,6 +72,14 @@ bool ScriptMachine::configureEngine(asIScriptEngine *engine) {
|
|||
return false;
|
||||
}
|
||||
|
||||
engine->SetContextUserDataCleanupCallback(
|
||||
&ScriptMachine::cleanUpDbgContext,
|
||||
AsUserDataType::UserData_ContextDbgInfo);
|
||||
|
||||
engine->SetFunctionUserDataCleanupCallback(
|
||||
&ScriptMachine::cleanUpPluginSysIDFunction,
|
||||
AsUserDataType::UserData_PluginFn);
|
||||
|
||||
RegisterScriptArray(engine, false);
|
||||
RegisterQString(engine);
|
||||
RegisterScriptRegex(engine);
|
||||
|
@ -430,6 +439,18 @@ void ScriptMachine::messageCallback(const asSMessageInfo *msg, void *param) {
|
|||
emit ins->onOutput(t, info);
|
||||
}
|
||||
|
||||
void ScriptMachine::cleanUpDbgContext(asIScriptContext *context) {
|
||||
auto dbgContext =
|
||||
context->GetUserData(AsUserDataType::UserData_ContextDbgInfo);
|
||||
asDebugger::deleteDbgContextInfo(dbgContext);
|
||||
}
|
||||
|
||||
void ScriptMachine::cleanUpPluginSysIDFunction(asIScriptFunction *fn) {
|
||||
// do nothing
|
||||
// UserData_API is readonly and it will delete later by its allocator
|
||||
// UserData_PluginFn is just an id, not a valid pointer to data
|
||||
}
|
||||
|
||||
asITypeInfo *ScriptMachine::typeInfo(RegisteredType type) const {
|
||||
if (type < RegisteredType::tMAXCOUNT && type >= 0) {
|
||||
return _rtypes.at(type);
|
||||
|
|
|
@ -123,6 +123,10 @@ private:
|
|||
private:
|
||||
static void messageCallback(const asSMessageInfo *msg, void *param);
|
||||
|
||||
static void cleanUpDbgContext(asIScriptContext *context);
|
||||
|
||||
static void cleanUpPluginSysIDFunction(asIScriptFunction *fn);
|
||||
|
||||
static asIScriptContext *requestContextCallback(asIScriptEngine *engine,
|
||||
void *param);
|
||||
static void returnContextCallback(asIScriptEngine *engine,
|
||||
|
|
|
@ -69,6 +69,8 @@ Q_GLOBAL_STATIC_WITH_ARGS(QString, OTHER_USE_NATIVE_TITLEBAR,
|
|||
("sys.nativeTitleBar"))
|
||||
Q_GLOBAL_STATIC_WITH_ARGS(QString, OTHER_DONT_USE_SPLASH, ("sys.dontUseSplash"))
|
||||
Q_GLOBAL_STATIC_WITH_ARGS(QString, OTHER_LOG_LEVEL, ("sys.loglevel"))
|
||||
Q_GLOBAL_STATIC_WITH_ARGS(QString, OTHER_LOG_COUNT, ("sys.logCount"))
|
||||
Q_GLOBAL_STATIC_WITH_ARGS(QString, OTHER_CHECK_UPDATE, ("sys.checkUpdate"))
|
||||
|
||||
Q_GLOBAL_STATIC_WITH_ARGS(QString, CODEEDIT_FONT, ("codeedit.font"))
|
||||
Q_GLOBAL_STATIC_WITH_ARGS(QString, CODEEDIT_FONT_SIZE, ("codeedit.fontsize"))
|
||||
|
@ -143,9 +145,13 @@ void SettingManager::load() {
|
|||
#endif
|
||||
READ_CONFIG_INT_POSITIVE(m_logLevel, OTHER_LOG_LEVEL,
|
||||
Logger::defaultLevel());
|
||||
READ_CONFIG_BOOL(m_checkUpdate, OTHER_CHECK_UPDATE, false);
|
||||
m_logLevel =
|
||||
qBound(int(Logger::LEVEL_BEGIN), m_logLevel, int(Logger::LEVEL_LAST));
|
||||
|
||||
READ_CONFIG_INT_POSITIVE(m_logCount, OTHER_LOG_COUNT, 20);
|
||||
m_logCount = qBound(qsizetype(20), m_logCount, qsizetype(100));
|
||||
|
||||
m_editorEncoding =
|
||||
READ_CONFIG(EDITOR_ENCODING, QStringLiteral("ASCII")).toString();
|
||||
auto encodings = Utilities::getEncodings();
|
||||
|
@ -204,6 +210,18 @@ QVariantList SettingManager::getVarList(
|
|||
return varlist;
|
||||
}
|
||||
|
||||
qsizetype SettingManager::logCount() const { return m_logCount; }
|
||||
|
||||
void SettingManager::setLogCount(qsizetype newLogCount) {
|
||||
m_logCount = newLogCount;
|
||||
}
|
||||
|
||||
bool SettingManager::checkUpdate() const { return m_checkUpdate; }
|
||||
|
||||
void SettingManager::setCheckUpdate(bool newCheckUpdate) {
|
||||
m_checkUpdate = newCheckUpdate;
|
||||
}
|
||||
|
||||
bool SettingManager::dontUseSplash() const { return m_dontUseSplash; }
|
||||
|
||||
void SettingManager::setDontUseSplash(bool newDontUseSplash) {
|
||||
|
@ -491,7 +509,9 @@ void SettingManager::save(SETTINGS cat) {
|
|||
WRITE_CONFIG_SET(OTHER_USE_NATIVE_TITLEBAR, m_useNativeTitleBar);
|
||||
#endif
|
||||
WRITE_CONFIG_SET(OTHER_DONT_USE_SPLASH, m_dontUseSplash);
|
||||
WRITE_CONFIG_SET(OTHER_CHECK_UPDATE, m_checkUpdate);
|
||||
WRITE_CONFIG_SET(OTHER_LOG_LEVEL, m_logLevel);
|
||||
WRITE_CONFIG_SET(OTHER_LOG_COUNT, m_logCount);
|
||||
}
|
||||
if (cat.testFlag(SETTING::CODEEDIT)) {
|
||||
saveCodeEditorConfig();
|
||||
|
@ -533,7 +553,9 @@ void SettingManager::reset(SETTINGS cat) {
|
|||
WRITE_CONFIG_SET(OTHER_USE_NATIVE_TITLEBAR, false);
|
||||
#endif
|
||||
WRITE_CONFIG_SET(OTHER_DONT_USE_SPLASH, false);
|
||||
WRITE_CONFIG_SET(OTHER_CHECK_UPDATE, false);
|
||||
WRITE_CONFIG_SET(OTHER_LOG_LEVEL, Logger::defaultLevel());
|
||||
WRITE_CONFIG_SET(OTHER_LOG_COUNT, 20);
|
||||
}
|
||||
load();
|
||||
}
|
||||
|
|
|
@ -73,7 +73,9 @@ private:
|
|||
OTHER_USESYS_FILEDIALOG = 1u << 24,
|
||||
OTHER_USE_NATIVE_TITLEBAR = 1u << 25,
|
||||
OTHER_DONT_USE_SPLASH = 1u << 26,
|
||||
OTHER_LOG_LEVEL = 1u << 27
|
||||
OTHER_LOG_LEVEL = 1u << 27,
|
||||
OTHER_CHECK_UPDATE = 1u << 28,
|
||||
OTHER_LOG_COUNT = 1u << 29,
|
||||
};
|
||||
Q_DECLARE_FLAGS(SETTING_ITEMS, SETTING_ITEM)
|
||||
|
||||
|
@ -168,6 +170,12 @@ public:
|
|||
bool dontUseSplash() const;
|
||||
void setDontUseSplash(bool newDontUseSplash);
|
||||
|
||||
bool checkUpdate() const;
|
||||
void setCheckUpdate(bool newCheckUpdate);
|
||||
|
||||
qsizetype logCount() const;
|
||||
void setLogCount(qsizetype newLogCount);
|
||||
|
||||
signals:
|
||||
void sigEditorfontSizeChanged(int v);
|
||||
void sigDecodeStrlimitChanged(int v);
|
||||
|
@ -223,7 +231,9 @@ private:
|
|||
bool m_dontUseSplash = false;
|
||||
bool m_useNativeFileDialog = true;
|
||||
bool m_useNativeTitleBar = false;
|
||||
bool m_checkUpdate = false;
|
||||
int m_logLevel = 0;
|
||||
qsizetype m_logCount = 20;
|
||||
|
||||
private:
|
||||
QFont _defaultFont;
|
||||
|
|
|
@ -23,6 +23,7 @@
|
|||
#include "class/scriptmachine.h"
|
||||
#include "class/wingfiledialog.h"
|
||||
#include "class/winginputdialog.h"
|
||||
#include "define.h"
|
||||
#include "scriptaddon/scriptqdictionary.h"
|
||||
|
||||
#include <QJsonDocument>
|
||||
|
@ -80,8 +81,8 @@ const QString WingAngelAPI::pluginComment() const {
|
|||
|
||||
void WingAngelAPI::registerScriptFns(const QString &ns,
|
||||
const QHash<QString, ScriptFnInfo> &rfns) {
|
||||
Q_ASSERT(ns.isEmpty());
|
||||
if (rfns.empty()) {
|
||||
Q_ASSERT(!ns.isEmpty());
|
||||
if (rfns.isEmpty()) {
|
||||
return;
|
||||
}
|
||||
|
||||
|
@ -508,27 +509,6 @@ void WingAngelAPI::installHexReaderAPI(asIScriptEngine *engine) {
|
|||
engine, std::bind(&WingHex::WingPlugin::Reader::isModified, reader),
|
||||
"bool isModified()");
|
||||
|
||||
registerAPI<bool(void)>(
|
||||
engine, std::bind(&WingHex::WingPlugin::Reader::isEmpty, reader),
|
||||
"bool isEmpty()");
|
||||
|
||||
registerAPI<bool(void)>(
|
||||
engine, std::bind(&WingHex::WingPlugin::Reader::atEnd, reader),
|
||||
"bool atEnd()");
|
||||
|
||||
registerAPI<bool(void)>(
|
||||
engine, std::bind(&WingHex::WingPlugin::Reader::canUndo, reader),
|
||||
"bool canUndo()");
|
||||
|
||||
registerAPI<bool(void)>(
|
||||
engine, std::bind(&WingHex::WingPlugin::Reader::canRedo, reader),
|
||||
"bool canRedo()");
|
||||
|
||||
registerAPI<bool(bool)>(engine,
|
||||
std::bind(&WingHex::WingPlugin::Reader::copy,
|
||||
reader, std::placeholders::_1),
|
||||
"bool copy(bool hex = false)");
|
||||
|
||||
registerAPI<qsizetype(void)>(
|
||||
engine, std::bind(&WingHex::WingPlugin::Reader::documentLines, reader),
|
||||
QSIZETYPE_WRAP("documentLines()"));
|
||||
|
@ -662,16 +642,6 @@ void WingAngelAPI::installHexReaderAPI(asIScriptEngine *engine) {
|
|||
"array<" QSIZETYPE ">@ findAllBytes(" QSIZETYPE " begin, " QSIZETYPE
|
||||
" end, array<byte> &in b)");
|
||||
|
||||
registerAPI<qsizetype(void)>(
|
||||
engine,
|
||||
std::bind(&WingHex::WingPlugin::Reader::documentLastLine, reader),
|
||||
QSIZETYPE_WRAP("documentLastLine()"));
|
||||
|
||||
registerAPI<qsizetype(void)>(
|
||||
engine,
|
||||
std::bind(&WingHex::WingPlugin::Reader::documentLastColumn, reader),
|
||||
QSIZETYPE_WRAP("documentLastColumn()"));
|
||||
|
||||
registerAPI<bool(qsizetype)>(
|
||||
engine,
|
||||
std::bind(&WingHex::WingPlugin::Reader::lineHasMetadata, reader,
|
||||
|
@ -707,6 +677,10 @@ void WingAngelAPI::installHexReaderAPI(asIScriptEngine *engine) {
|
|||
std::bind(&WingAngelAPI::_HexReader_getSupportedEncodings, this),
|
||||
"array<string>@ getSupportedEncodings()");
|
||||
|
||||
registerAPI<CScriptArray *()>(
|
||||
engine, std::bind(&WingAngelAPI::_HexReader_getStorageDrivers, this),
|
||||
"array<string>@ getStorageDrivers()");
|
||||
|
||||
registerAPI<QString()>(
|
||||
engine,
|
||||
std::bind(&WingHex::WingPlugin::Reader::currentEncoding, reader),
|
||||
|
@ -782,24 +756,6 @@ void WingAngelAPI::installHexControllerAPI(asIScriptEngine *engine) {
|
|||
std::placeholders::_2),
|
||||
"bool append(? &in obj)");
|
||||
|
||||
registerAPI<bool()>(engine,
|
||||
std::bind(&WingHex::WingPlugin::Controller::undo, ctl),
|
||||
"bool undo()");
|
||||
|
||||
registerAPI<bool()>(engine,
|
||||
std::bind(&WingHex::WingPlugin::Controller::redo, ctl),
|
||||
"bool redo()");
|
||||
|
||||
registerAPI<bool(bool)>(engine,
|
||||
std::bind(&WingHex::WingPlugin::Controller::cut,
|
||||
ctl, std::placeholders::_1),
|
||||
"bool cut(bool hex = false)");
|
||||
|
||||
registerAPI<bool(bool)>(engine,
|
||||
std::bind(&WingHex::WingPlugin::Controller::paste,
|
||||
ctl, std::placeholders::_1),
|
||||
"bool paste(bool hex = false)");
|
||||
|
||||
registerAPI<bool(qsizetype, qint8)>(
|
||||
engine,
|
||||
std::bind(&WingHex::WingPlugin::Controller::writeInt8, ctl,
|
||||
|
@ -955,8 +911,9 @@ void WingAngelAPI::installHexControllerAPI(asIScriptEngine *engine) {
|
|||
"bool remove(" QSIZETYPE " offset, " QSIZETYPE " len)");
|
||||
|
||||
registerAPI<bool()>(
|
||||
engine, std::bind(&WingHex::WingPlugin::Controller::removeAll, ctl),
|
||||
"bool removeAll()");
|
||||
engine,
|
||||
std::bind(&WingHex::WingPlugin::Controller::removeAllBytes, ctl),
|
||||
"bool removeAllBytes()");
|
||||
|
||||
registerAPI<bool(qsizetype, qsizetype, int, bool)>(
|
||||
engine,
|
||||
|
@ -1122,43 +1079,6 @@ void WingAngelAPI::installHexControllerAPI(asIScriptEngine *engine) {
|
|||
std::placeholders::_1),
|
||||
"bool saveCurrentFile(bool ignoreMd5 = false)");
|
||||
|
||||
registerAPI<bool()>(
|
||||
engine, std::bind(&WingHex::WingPlugin::Controller::exportFileGUI, ctl),
|
||||
"bool exportFileGUI()");
|
||||
|
||||
registerAPI<bool()>(
|
||||
engine, std::bind(&WingHex::WingPlugin::Controller::saveAsFileGUI, ctl),
|
||||
"bool saveAsFileGUI()");
|
||||
|
||||
registerAPI<bool()>(
|
||||
engine, std::bind(&WingHex::WingPlugin::Controller::openFileGUI, ctl),
|
||||
"bool openFileGUI()");
|
||||
|
||||
registerAPI<bool()>(
|
||||
engine,
|
||||
std::bind(&WingHex::WingPlugin::Controller::openRegionFileGUI, ctl),
|
||||
"bool openRegionFileGUI()");
|
||||
|
||||
registerAPI<bool()>(
|
||||
engine, std::bind(&WingHex::WingPlugin::Controller::openDriverGUI, ctl),
|
||||
"bool openDriverGUI()");
|
||||
|
||||
registerAPI<bool()>(
|
||||
engine, std::bind(&WingHex::WingPlugin::Controller::findGUI, ctl),
|
||||
"bool findGUI()");
|
||||
|
||||
registerAPI<bool()>(
|
||||
engine, std::bind(&WingHex::WingPlugin::Controller::gotoGUI, ctl),
|
||||
"bool gotoGUI()");
|
||||
|
||||
registerAPI<bool()>(
|
||||
engine, std::bind(&WingHex::WingPlugin::Controller::fillGUI, ctl),
|
||||
"bool fillGUI()");
|
||||
|
||||
registerAPI<bool()>(
|
||||
engine, std::bind(&WingHex::WingPlugin::Controller::fillZeroGUI, ctl),
|
||||
"bool fillZeroGUI()");
|
||||
|
||||
registerAPI<bool(qsizetype, const QString &)>(
|
||||
engine,
|
||||
std::bind(&WingHex::WingPlugin::Controller::addBookMark, ctl,
|
||||
|
@ -1193,6 +1113,11 @@ void WingAngelAPI::installHexControllerAPI(asIScriptEngine *engine) {
|
|||
std::placeholders::_1),
|
||||
"bool setCurrentEncoding(string &in encoding)");
|
||||
|
||||
registerAPI<void()>(
|
||||
engine,
|
||||
std::bind(&WingHex::WingPlugin::Controller::closeAllPluginFiles, ctl),
|
||||
"bool closeAllPluginFiles()");
|
||||
|
||||
engine->SetDefaultNamespace("");
|
||||
}
|
||||
|
||||
|
@ -1218,7 +1143,9 @@ void WingAngelAPI::installDataVisualAPI(asIScriptEngine *engine, int stringID) {
|
|||
registerAPI<bool(const QString &)>(
|
||||
engine,
|
||||
std::bind(&WingHex::WingPlugin::DataVisual::updateTextTree, datavis,
|
||||
std::placeholders::_1),
|
||||
std::placeholders::_1,
|
||||
WingHex::WingPlugin::DataVisual::ClickedCallBack(),
|
||||
WingHex::WingPlugin::DataVisual::DoubleClickedCallBack()),
|
||||
"bool updateTextTree(string &in json)");
|
||||
|
||||
registerAPI<bool(const QString &, const CScriptArray &,
|
||||
|
@ -1246,14 +1173,17 @@ void WingAngelAPI::installScriptFns(asIScriptEngine *engine) {
|
|||
p++) {
|
||||
auto sig = p->first;
|
||||
auto id = p->second;
|
||||
WrapperFn fn = std::bind(&WingAngelAPI::script_call, this, engine,
|
||||
id, std::placeholders::_1);
|
||||
_sfn_wraps[engine][id] = fn;
|
||||
auto r = engine->RegisterGlobalFunction(
|
||||
sig.toUtf8(), asMETHOD(WrapperFn, operator()), asCALL_GENERIC,
|
||||
&_sfn_wraps[engine][id]);
|
||||
Q_ASSERT(r >= 0);
|
||||
Q_UNUSED(r);
|
||||
sig.toUtf8(), asFUNCTION(script_call), asCALL_GENERIC);
|
||||
if (r >= 0) {
|
||||
// r is the AngelScript function ID
|
||||
auto fn = engine->GetFunctionById(r);
|
||||
fn->SetUserData(this, AsUserDataType::UserData_API);
|
||||
fn->SetUserData(reinterpret_cast<void *>(id),
|
||||
AsUserDataType::UserData_PluginFn);
|
||||
} else {
|
||||
emit warn(tr("RegisterScriptFnInvalidSig:") + sig);
|
||||
}
|
||||
}
|
||||
|
||||
engine->SetDefaultNamespace("");
|
||||
|
@ -1409,26 +1339,29 @@ bool WingAngelAPI::write2Ref(qsizetype offset, void *ref, int typeId) {
|
|||
if (typeId == asTYPEID_VOID)
|
||||
return false;
|
||||
else if (typeId == asTYPEID_BOOL)
|
||||
emit controller.writeInt8(offset,
|
||||
*reinterpret_cast<bool *>(ref) ? 1 : 0);
|
||||
return emit controller.writeInt8(
|
||||
offset, *reinterpret_cast<bool *>(ref) ? 1 : 0);
|
||||
else if (typeId == asTYPEID_INT8 || typeId == asTYPEID_UINT8)
|
||||
emit controller.writeInt8(offset, *reinterpret_cast<qint8 *>(ref));
|
||||
return emit controller.writeInt8(offset,
|
||||
*reinterpret_cast<qint8 *>(ref));
|
||||
else if (typeId == asTYPEID_INT16 || typeId == asTYPEID_UINT16)
|
||||
emit controller.writeInt16(offset,
|
||||
*reinterpret_cast<qint16 *>(ref));
|
||||
return emit controller.writeInt16(offset,
|
||||
*reinterpret_cast<qint16 *>(ref));
|
||||
else if (typeId == asTYPEID_INT32 || typeId == asTYPEID_UINT32)
|
||||
emit controller.writeInt32(offset,
|
||||
*reinterpret_cast<qint32 *>(ref));
|
||||
return emit controller.writeInt32(offset,
|
||||
*reinterpret_cast<qint32 *>(ref));
|
||||
else if (typeId == asTYPEID_INT64 || typeId == asTYPEID_UINT64)
|
||||
emit controller.writeInt64(offset,
|
||||
*reinterpret_cast<qint64 *>(ref));
|
||||
return emit controller.writeInt64(offset,
|
||||
*reinterpret_cast<qint64 *>(ref));
|
||||
else if (typeId == asTYPEID_FLOAT)
|
||||
emit controller.writeFloat(offset, *reinterpret_cast<float *>(ref));
|
||||
return emit controller.writeFloat(offset,
|
||||
*reinterpret_cast<float *>(ref));
|
||||
else if (typeId == asTYPEID_DOUBLE)
|
||||
emit controller.writeDouble(offset,
|
||||
*reinterpret_cast<double *>(ref));
|
||||
return emit controller.writeDouble(
|
||||
offset, *reinterpret_cast<double *>(ref));
|
||||
else if ((typeId & asTYPEID_MASK_OBJECT) == 0)
|
||||
emit controller.writeInt32(offset, *reinterpret_cast<int *>(ref));
|
||||
return emit controller.writeInt32(offset,
|
||||
*reinterpret_cast<int *>(ref));
|
||||
else if (typeId & asTYPEID_SCRIPTOBJECT) {
|
||||
// Dereference handles, so we can see what it points to
|
||||
void *value = ref;
|
||||
|
@ -1463,7 +1396,7 @@ bool WingAngelAPI::write2Ref(qsizetype offset, void *ref, int typeId) {
|
|||
if (value) {
|
||||
// only string supported
|
||||
if (type->GetTypeId() == (typeId & ~asTYPEID_OBJHANDLE)) {
|
||||
emit controller.writeString(
|
||||
return emit controller.writeString(
|
||||
offset, *reinterpret_cast<QString *>(value));
|
||||
}
|
||||
}
|
||||
|
@ -1483,27 +1416,29 @@ bool WingAngelAPI::insert2Ref(qsizetype offset, void *ref, int typeId) {
|
|||
if (typeId == asTYPEID_VOID)
|
||||
return false;
|
||||
else if (typeId == asTYPEID_BOOL)
|
||||
emit controller.insertInt8(offset,
|
||||
*reinterpret_cast<bool *>(ref) ? 1 : 0);
|
||||
return emit controller.insertInt8(
|
||||
offset, *reinterpret_cast<bool *>(ref) ? 1 : 0);
|
||||
else if (typeId == asTYPEID_INT8 || typeId == asTYPEID_UINT8)
|
||||
emit controller.insertInt8(offset, *reinterpret_cast<qint8 *>(ref));
|
||||
return emit controller.insertInt8(offset,
|
||||
*reinterpret_cast<qint8 *>(ref));
|
||||
else if (typeId == asTYPEID_INT16 || typeId == asTYPEID_UINT16)
|
||||
emit controller.insertInt16(offset,
|
||||
*reinterpret_cast<qint16 *>(ref));
|
||||
return emit controller.insertInt16(
|
||||
offset, *reinterpret_cast<qint16 *>(ref));
|
||||
else if (typeId == asTYPEID_INT32 || typeId == asTYPEID_UINT32)
|
||||
emit controller.insertInt32(offset,
|
||||
*reinterpret_cast<qint32 *>(ref));
|
||||
return emit controller.insertInt32(
|
||||
offset, *reinterpret_cast<qint32 *>(ref));
|
||||
else if (typeId == asTYPEID_INT64 || typeId == asTYPEID_UINT64)
|
||||
emit controller.insertInt64(offset,
|
||||
*reinterpret_cast<qint64 *>(ref));
|
||||
return emit controller.insertInt64(
|
||||
offset, *reinterpret_cast<qint64 *>(ref));
|
||||
else if (typeId == asTYPEID_FLOAT)
|
||||
emit controller.insertFloat(offset,
|
||||
*reinterpret_cast<float *>(ref));
|
||||
return emit controller.insertFloat(offset,
|
||||
*reinterpret_cast<float *>(ref));
|
||||
else if (typeId == asTYPEID_DOUBLE)
|
||||
emit controller.insertDouble(offset,
|
||||
*reinterpret_cast<double *>(ref));
|
||||
return emit controller.insertDouble(
|
||||
offset, *reinterpret_cast<double *>(ref));
|
||||
else if ((typeId & asTYPEID_MASK_OBJECT) == 0)
|
||||
emit controller.insertInt32(offset, *reinterpret_cast<int *>(ref));
|
||||
return emit controller.insertInt32(offset,
|
||||
*reinterpret_cast<int *>(ref));
|
||||
else if (typeId & asTYPEID_SCRIPTOBJECT) {
|
||||
// Dereference handles, so we can see what it points to
|
||||
void *value = ref;
|
||||
|
@ -1538,7 +1473,7 @@ bool WingAngelAPI::insert2Ref(qsizetype offset, void *ref, int typeId) {
|
|||
if (value) {
|
||||
// TODO support other type, now only string
|
||||
if (type->GetTypeId() == (typeId & ~asTYPEID_OBJHANDLE)) {
|
||||
emit controller.insertString(
|
||||
return emit controller.insertString(
|
||||
offset, *reinterpret_cast<QString *>(value));
|
||||
}
|
||||
}
|
||||
|
@ -1558,21 +1493,26 @@ bool WingAngelAPI::append2Ref(void *ref, int typeId) {
|
|||
if (typeId == asTYPEID_VOID)
|
||||
return false;
|
||||
else if (typeId == asTYPEID_BOOL)
|
||||
emit controller.appendInt8(*reinterpret_cast<bool *>(ref) ? 1 : 0);
|
||||
return emit controller.appendInt8(
|
||||
*reinterpret_cast<bool *>(ref) ? 1 : 0);
|
||||
else if (typeId == asTYPEID_INT8 || typeId == asTYPEID_UINT8)
|
||||
emit controller.appendInt8(*reinterpret_cast<qint8 *>(ref));
|
||||
return emit controller.appendInt8(*reinterpret_cast<qint8 *>(ref));
|
||||
else if (typeId == asTYPEID_INT16 || typeId == asTYPEID_UINT16)
|
||||
emit controller.appendInt16(*reinterpret_cast<qint16 *>(ref));
|
||||
return emit controller.appendInt16(
|
||||
*reinterpret_cast<qint16 *>(ref));
|
||||
else if (typeId == asTYPEID_INT32 || typeId == asTYPEID_UINT32)
|
||||
emit controller.appendInt32(*reinterpret_cast<qint32 *>(ref));
|
||||
return emit controller.appendInt32(
|
||||
*reinterpret_cast<qint32 *>(ref));
|
||||
else if (typeId == asTYPEID_INT64 || typeId == asTYPEID_UINT64)
|
||||
emit controller.appendInt64(*reinterpret_cast<qint64 *>(ref));
|
||||
return emit controller.appendInt64(
|
||||
*reinterpret_cast<qint64 *>(ref));
|
||||
else if (typeId == asTYPEID_FLOAT)
|
||||
emit controller.appendFloat(*reinterpret_cast<float *>(ref));
|
||||
return emit controller.appendFloat(*reinterpret_cast<float *>(ref));
|
||||
else if (typeId == asTYPEID_DOUBLE)
|
||||
emit controller.appendDouble(*reinterpret_cast<double *>(ref));
|
||||
return emit controller.appendDouble(
|
||||
*reinterpret_cast<double *>(ref));
|
||||
else if ((typeId & asTYPEID_MASK_OBJECT) == 0)
|
||||
emit controller.appendInt32(*reinterpret_cast<int *>(ref));
|
||||
return emit controller.appendInt32(*reinterpret_cast<int *>(ref));
|
||||
else if (typeId & asTYPEID_SCRIPTOBJECT) {
|
||||
// Dereference handles, so we can see what it points to
|
||||
void *value = ref;
|
||||
|
@ -1603,7 +1543,7 @@ bool WingAngelAPI::append2Ref(void *ref, int typeId) {
|
|||
if (value) {
|
||||
// only string supported
|
||||
if (type->GetTypeId() == (typeId & ~asTYPEID_OBJHANDLE)) {
|
||||
emit controller.appendString(
|
||||
return emit controller.appendString(
|
||||
*reinterpret_cast<QString *>(value));
|
||||
}
|
||||
}
|
||||
|
@ -1711,9 +1651,11 @@ void WingAngelAPI::qvariantCastOp(
|
|||
}
|
||||
};
|
||||
#if QT_VERSION < QT_VERSION_CHECK(6, 0, 0)
|
||||
auto type = QMetaType::Type(var.userType());
|
||||
auto type =
|
||||
var.isNull() ? QMetaType::Type::Void : QMetaType::Type(var.userType());
|
||||
#else
|
||||
auto type = QMetaType::Type(var.typeId());
|
||||
auto type =
|
||||
var.isNull() ? QMetaType::Type::Void : QMetaType::Type(var.typeId());
|
||||
#endif
|
||||
switch (type) {
|
||||
case QMetaType::Type::Bool:
|
||||
|
@ -1821,11 +1763,11 @@ void WingAngelAPI::qvariantCastOp(
|
|||
case QMetaType::QColor:
|
||||
fn(new QColor(var.value<QColor>()), type);
|
||||
break;
|
||||
case QMetaType::Void:
|
||||
break;
|
||||
default:
|
||||
Logger::critical(tr("NotSupportedQMetaType:") + QMetaType(type).name());
|
||||
break;
|
||||
case QMetaType::Void:
|
||||
break;
|
||||
}
|
||||
}
|
||||
|
||||
|
@ -1982,10 +1924,18 @@ bool WingAngelAPI::isTempBuffered(QMetaType::Type type) {
|
|||
}
|
||||
}
|
||||
|
||||
void WingAngelAPI::script_call(asIScriptEngine *engine, qsizetype id,
|
||||
asIScriptGeneric *gen) {
|
||||
Q_ASSERT(id >= 0 && id < _sfns.size());
|
||||
if (id < 0 || id >= _sfns.size()) {
|
||||
void WingAngelAPI::script_call(asIScriptGeneric *gen) {
|
||||
auto fn = gen->GetFunction();
|
||||
|
||||
auto p = reinterpret_cast<WingAngelAPI *>(
|
||||
fn->GetUserData(AsUserDataType::UserData_API));
|
||||
auto id = reinterpret_cast<qsizetype>(
|
||||
fn->GetUserData(AsUserDataType::UserData_PluginFn));
|
||||
auto engine = fn->GetEngine();
|
||||
|
||||
Q_ASSERT(p);
|
||||
Q_ASSERT(id >= 0 && id < p->_sfns.size());
|
||||
if (id < 0 || id >= p->_sfns.size()) {
|
||||
return;
|
||||
}
|
||||
|
||||
|
@ -1998,7 +1948,7 @@ void WingAngelAPI::script_call(asIScriptEngine *engine, qsizetype id,
|
|||
params.append(obj);
|
||||
}
|
||||
|
||||
auto ret = _sfns.at(id).fn(params);
|
||||
auto ret = p->_sfns.at(id).fn(params);
|
||||
auto op = [](asIScriptGeneric *gen, void *addr, QMetaType::Type type) {
|
||||
auto b = isTempBuffered(type);
|
||||
if (b) {
|
||||
|
@ -2221,6 +2171,12 @@ CScriptArray *WingAngelAPI::_HexReader_getSupportedEncodings() {
|
|||
"array<string>");
|
||||
}
|
||||
|
||||
CScriptArray *WingAngelAPI::_HexReader_getStorageDrivers() {
|
||||
return retarrayWrapperFunction(
|
||||
[this]() -> QStringList { return emit reader.getStorageDrivers(); },
|
||||
"array<string>");
|
||||
}
|
||||
|
||||
bool WingAngelAPI::_HexController_writeBytes(qsizetype offset,
|
||||
const CScriptArray &ba) {
|
||||
// If called from the script, there will always be an active
|
||||
|
|
|
@ -122,8 +122,7 @@ private:
|
|||
|
||||
static bool isTempBuffered(QMetaType::Type type);
|
||||
|
||||
void script_call(asIScriptEngine *engine, qsizetype id,
|
||||
asIScriptGeneric *gen);
|
||||
static void script_call(asIScriptGeneric *gen);
|
||||
|
||||
private:
|
||||
QString _InputBox_getItem(int stringID, const QString &title,
|
||||
|
@ -163,6 +162,8 @@ private:
|
|||
|
||||
CScriptArray *_HexReader_getSupportedEncodings();
|
||||
|
||||
CScriptArray *_HexReader_getStorageDrivers();
|
||||
|
||||
bool _HexController_writeBytes(qsizetype offset, const CScriptArray &ba);
|
||||
|
||||
bool _HexController_insertBytes(qsizetype offset, const CScriptArray &ba);
|
||||
|
@ -178,7 +179,6 @@ private:
|
|||
private:
|
||||
std::vector<std::any> _fnbuffer;
|
||||
QVector<IWingPlugin::ScriptFnInfo> _sfns;
|
||||
QHash<asIScriptEngine *, std::vector<WrapperFn>> _sfn_wraps;
|
||||
|
||||
QHash<QString, QHash<QString, qsizetype>> _rfns;
|
||||
};
|
||||
|
|
|
@ -0,0 +1,159 @@
|
|||
#include "wingupdater.h"
|
||||
|
||||
#include "languagemanager.h"
|
||||
|
||||
#include <QEventLoop>
|
||||
#include <QNetworkAccessManager>
|
||||
#include <QNetworkReply>
|
||||
#include <QNetworkRequest>
|
||||
#include <QRegularExpression>
|
||||
|
||||
bool WingUpdater::checkUpdate(bool *ok) {
|
||||
QNetworkAccessManager manager;
|
||||
QUrl url;
|
||||
|
||||
// Github is not easy to access for Chinese people,
|
||||
// Gitee mirror instead
|
||||
#if QT_VERSION > QT_VERSION_CHECK(6, 0, 0)
|
||||
if (LanguageManager::instance().defaultLocale().territory() ==
|
||||
#else
|
||||
if (LanguageManager::instance().defaultLocale().country() ==
|
||||
#endif
|
||||
QLocale::China) {
|
||||
url =
|
||||
QUrl(QStringLiteral("https://gitee.com/wing-cloud/WingHexExplorer2/"
|
||||
"raw/updater/WINGHEX_VERSION"));
|
||||
} else {
|
||||
url = QUrl(QStringLiteral(
|
||||
"https://raw.githubusercontent.com/Wing-summer/WingHexExplorer2/"
|
||||
"updater/WINGHEX_VERSION"));
|
||||
}
|
||||
|
||||
QNetworkRequest request(url);
|
||||
|
||||
#ifdef Q_OS_WIN
|
||||
request.setRawHeader(
|
||||
"User-Agent",
|
||||
"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, "
|
||||
"like Gecko) Chrome/91.0.4472.124 Safari/537.36 Edg/91.0.864.59");
|
||||
#else
|
||||
request.setRawHeader(
|
||||
"User-Agent",
|
||||
"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, "
|
||||
"like Gecko) Chrome/91.0.4472.124 Safari/537.36 Edg/91.0.864.59");
|
||||
#endif
|
||||
|
||||
QEventLoop loop;
|
||||
|
||||
auto *reply = manager.get(request);
|
||||
QObject::connect(reply, &QNetworkReply::finished, &loop, &QEventLoop::quit);
|
||||
loop.exec();
|
||||
|
||||
if (reply->error() == QNetworkReply::NoError) {
|
||||
// Successfully received the response
|
||||
auto version = reply->readAll();
|
||||
if (ok) {
|
||||
*ok = true;
|
||||
}
|
||||
auto ret = versionCompare(version);
|
||||
return ret;
|
||||
} else {
|
||||
// Handle errors
|
||||
if (ok) {
|
||||
*ok = false;
|
||||
}
|
||||
}
|
||||
|
||||
reply->deleteLater();
|
||||
|
||||
return true;
|
||||
}
|
||||
|
||||
bool WingUpdater::versionCompare(const QString &version) {
|
||||
return compareVersions(WINGHEX_VERSION, version) >= 0;
|
||||
}
|
||||
|
||||
int WingUpdater::compareVersions(const QString &version1,
|
||||
const QString &version2) {
|
||||
// Extract main version and beta part
|
||||
QString main1, beta1;
|
||||
parseVersion(version1, main1, beta1);
|
||||
QString main2, beta2;
|
||||
parseVersion(version2, main2, beta2);
|
||||
|
||||
// Compare main version
|
||||
int mainComparison = compareMainVersions(main1, main2);
|
||||
if (mainComparison != 0) {
|
||||
return mainComparison;
|
||||
}
|
||||
|
||||
// Compare beta part
|
||||
return compareBetaVersions(beta1, beta2);
|
||||
}
|
||||
|
||||
void WingUpdater::parseVersion(const QString &version, QString &mainPart,
|
||||
QString &betaPart) {
|
||||
static QRegularExpression regex(R"((.*?)(-beta(\d*)?)?$)");
|
||||
QRegularExpressionMatch match = regex.match(version);
|
||||
|
||||
if (match.hasMatch()) {
|
||||
mainPart = match.captured(1);
|
||||
betaPart = match.captured(2); // Full beta string, e.g., "-beta2"
|
||||
} else {
|
||||
mainPart = version;
|
||||
betaPart.clear();
|
||||
}
|
||||
}
|
||||
|
||||
int WingUpdater::compareMainVersions(const QString &main1,
|
||||
const QString &main2) {
|
||||
QStringList parts1 = main1.split('.', Qt::SkipEmptyParts);
|
||||
QStringList parts2 = main2.split('.', Qt::SkipEmptyParts);
|
||||
|
||||
int maxParts = qMax(parts1.size(), parts2.size());
|
||||
for (int i = 0; i < maxParts; ++i) {
|
||||
int v1 = i < parts1.size() ? parts1[i].toInt() : 0;
|
||||
int v2 = i < parts2.size() ? parts2[i].toInt() : 0;
|
||||
|
||||
if (v1 < v2)
|
||||
return -1;
|
||||
else if (v1 > v2)
|
||||
return 1;
|
||||
}
|
||||
return 0;
|
||||
}
|
||||
|
||||
int WingUpdater::compareBetaVersions(const QString &beta1,
|
||||
const QString &beta2) {
|
||||
if (beta1.isEmpty() && beta2.isEmpty()) {
|
||||
return 0; // Both are not beta versions
|
||||
}
|
||||
if (beta1.isEmpty()) {
|
||||
return 1; // Non-beta is greater
|
||||
}
|
||||
if (beta2.isEmpty()) {
|
||||
return -1; // Beta is less
|
||||
}
|
||||
|
||||
// Extract numeric beta suffix
|
||||
int betaNum1 = extractBetaNumber(beta1);
|
||||
int betaNum2 = extractBetaNumber(beta2);
|
||||
|
||||
if (betaNum1 < betaNum2) {
|
||||
return -1;
|
||||
} else if (betaNum1 > betaNum2) {
|
||||
return 1;
|
||||
}
|
||||
return 0; // Both beta versions are equal
|
||||
}
|
||||
|
||||
int WingUpdater::extractBetaNumber(const QString &beta) {
|
||||
static QRegularExpression regex(R"(-beta(\d*))");
|
||||
QRegularExpressionMatch match = regex.match(beta);
|
||||
|
||||
if (match.hasMatch()) {
|
||||
QString number = match.captured(1);
|
||||
return number.isEmpty() ? 0 : number.toInt();
|
||||
}
|
||||
return 0; // No numeric suffix
|
||||
}
|
|
@ -0,0 +1,27 @@
|
|||
#ifndef WINGUPDATER_H
|
||||
#define WINGUPDATER_H
|
||||
|
||||
#include <QString>
|
||||
|
||||
class WingUpdater {
|
||||
public:
|
||||
static bool checkUpdate(bool *ok = nullptr);
|
||||
|
||||
private:
|
||||
static bool versionCompare(const QString &version);
|
||||
|
||||
static int compareVersions(const QString &version1,
|
||||
const QString &version2);
|
||||
|
||||
private:
|
||||
static void parseVersion(const QString &version, QString &mainPart,
|
||||
QString &betaPart);
|
||||
|
||||
static int compareMainVersions(const QString &main1, const QString &main2);
|
||||
|
||||
static int compareBetaVersions(const QString &beta1, const QString &beta2);
|
||||
|
||||
static int extractBetaNumber(const QString &beta);
|
||||
};
|
||||
|
||||
#endif // WINGUPDATER_H
|
|
@ -4,7 +4,7 @@
|
|||
* [Qt-Advanced-Docking-System](https://github.com/githubuser0xFFFF/Qt-Advanced-Docking-System) (LGPL)
|
||||
* [QCodeEditor2](https://sourceforge.net/projects/edyuk) (GPL, **FORK**)
|
||||
* [QWingRibbon](https://github.com/martijnkoopman/Qt-Ribbon-Widget) (LGPL, **FORK**)
|
||||
* [SingleApplication](https://github.com/itay-grudev/SingleApplication) (MIT)
|
||||
* [QtSingleApplication](https://github.com/qtproject/qt-solutions/tree/master/qtsingleapplication) (BSD-3-Clause)
|
||||
* [QPathEdit](https://github.com/Skycoder42/QPathEdit) (MIT)
|
||||
* [QWindowKit](https://github.com/stdware/qwindowkit) (Apache v2.0)
|
||||
* [AngelScript](https://github.com/codecat/angelscript-mirror) (zlib license)
|
||||
|
|
|
@ -35,7 +35,8 @@
|
|||
constexpr qsizetype FILEMAXBUFFER = 0x6400000; // 100MB
|
||||
constexpr auto CLONE_LIMIT = 5;
|
||||
|
||||
EditorView::EditorView(QWidget *parent) : ads::CDockWidget(QString(), parent) {
|
||||
EditorView::EditorView(QWidget *parent)
|
||||
: ads::CDockWidget(nullptr, QString(), parent) {
|
||||
this->setFeatures(
|
||||
CDockWidget::DockWidgetFocusable | CDockWidget::DockWidgetMovable |
|
||||
CDockWidget::DockWidgetClosable | CDockWidget::DockWidgetPinnable |
|
||||
|
@ -134,25 +135,37 @@ EditorView::~EditorView() {}
|
|||
void EditorView::registerView(WingEditorViewWidget *view) {
|
||||
Q_ASSERT(view);
|
||||
m_others << view;
|
||||
m_stack->addWidget(view);
|
||||
}
|
||||
|
||||
void EditorView::switchView(qsizetype index) {
|
||||
if (index < 0) {
|
||||
m_stack->setCurrentWidget(m_hex);
|
||||
m_stack->setCurrentWidget(m_hexContainer);
|
||||
} else {
|
||||
m_stack->setCurrentWidget(m_others.at(index));
|
||||
}
|
||||
emit viewChanged(index);
|
||||
}
|
||||
|
||||
void EditorView::switchView(WingEditorViewWidget *w) {
|
||||
if (w) {
|
||||
if (m_others.contains(w)) {
|
||||
m_stack->setCurrentWidget(w);
|
||||
emit viewChanged(m_others.indexOf(w));
|
||||
}
|
||||
} else {
|
||||
m_stack->setCurrentWidget(m_hexContainer);
|
||||
emit viewChanged(-1);
|
||||
}
|
||||
}
|
||||
|
||||
void EditorView::registerQMenu(QMenu *menu) {
|
||||
if (menu == nullptr) {
|
||||
return;
|
||||
}
|
||||
static bool hasRegistered = false;
|
||||
if (!hasRegistered) {
|
||||
if (!_hasRegistered) {
|
||||
m_menu->addSeparator();
|
||||
hasRegistered = true;
|
||||
_hasRegistered = true;
|
||||
}
|
||||
m_menu->addMenu(menu);
|
||||
}
|
||||
|
@ -265,16 +278,16 @@ ErrFile EditorView::openFile(const QString &filename, const QString &encoding) {
|
|||
}
|
||||
|
||||
m_docType = DocumentType::File;
|
||||
m_fileName = info.fileName();
|
||||
m_fileName = info.absoluteFilePath();
|
||||
m_isNewFile = false;
|
||||
p->setDocSaved();
|
||||
|
||||
this->setWindowTitle(m_fileName);
|
||||
this->setWindowTitle(info.fileName());
|
||||
connectDocSavedFlag(this);
|
||||
|
||||
auto tab = this->tabWidget();
|
||||
tab->setIcon(Utilities::getIconFromFile(style(), filename));
|
||||
tab->setToolTip(filename);
|
||||
tab->setIcon(Utilities::getIconFromFile(style(), m_fileName));
|
||||
tab->setToolTip(m_fileName);
|
||||
}
|
||||
|
||||
return ErrFile::Success;
|
||||
|
@ -314,6 +327,7 @@ ErrFile EditorView::openWorkSpace(const QString &filename,
|
|||
|
||||
m_docType = DocumentType::File;
|
||||
m_isWorkSpace = true;
|
||||
|
||||
this->tabWidget()->setIcon(ICONRES(QStringLiteral("pro")));
|
||||
|
||||
return ret;
|
||||
|
@ -352,15 +366,15 @@ ErrFile EditorView::openRegionFile(QString filename, qsizetype start,
|
|||
}
|
||||
|
||||
p->setDocSaved();
|
||||
m_fileName = info.fileName();
|
||||
m_fileName = info.absoluteFilePath();
|
||||
m_isNewFile = false;
|
||||
|
||||
this->setWindowTitle(m_fileName);
|
||||
this->setWindowTitle(info.fileName());
|
||||
connectDocSavedFlag(this);
|
||||
|
||||
auto tab = this->tabWidget();
|
||||
tab->setIcon(Utilities::getIconFromFile(style(), filename));
|
||||
tab->setToolTip(filename);
|
||||
tab->setIcon(Utilities::getIconFromFile(style(), m_fileName));
|
||||
tab->setToolTip(m_fileName);
|
||||
}
|
||||
|
||||
return ErrFile::Success;
|
||||
|
@ -466,7 +480,7 @@ ErrFile EditorView::save(const QString &workSpaceName, const QString &path,
|
|||
file.close();
|
||||
|
||||
if (!isExport) {
|
||||
m_fileName = QFileInfo(fileName).fileName();
|
||||
m_fileName = QFileInfo(fileName).absoluteFilePath();
|
||||
doc->setDocSaved();
|
||||
}
|
||||
|
||||
|
@ -602,13 +616,15 @@ EditorView *EditorView::clone() {
|
|||
ev->m_cloneParent = this;
|
||||
ev->m_hex->setDocument(doc, ev->m_hex->cursor());
|
||||
|
||||
ev->m_fileName = this->m_fileName + QStringLiteral(" : ") +
|
||||
QString::number(cloneIndex + 1);
|
||||
ev->m_fileName = this->m_fileName;
|
||||
|
||||
if (doc->isDocSaved()) {
|
||||
ev->setWindowTitle(ev->m_fileName);
|
||||
ev->setWindowTitle(QFileInfo(ev->m_fileName).fileName() +
|
||||
QStringLiteral(" : ") +
|
||||
QString::number(cloneIndex + 1));
|
||||
} else {
|
||||
ev->setWindowTitle(QStringLiteral("* ") + m_fileName);
|
||||
ev->setWindowTitle(QStringLiteral("* ") +
|
||||
QFileInfo(m_fileName).fileName());
|
||||
}
|
||||
|
||||
ev->setIcon(this->icon());
|
||||
|
|
|
@ -89,6 +89,7 @@ public slots:
|
|||
|
||||
void registerView(WingHex::WingEditorViewWidget *view);
|
||||
void switchView(qsizetype index);
|
||||
void switchView(WingEditorViewWidget *w);
|
||||
void registerQMenu(QMenu *menu);
|
||||
|
||||
FindError find(const QByteArray &data, const FindDialog::Result &result);
|
||||
|
@ -165,6 +166,7 @@ private:
|
|||
QStackedWidget *m_stack = nullptr;
|
||||
GotoWidget *m_goto = nullptr;
|
||||
QWidget *m_hexContainer = nullptr;
|
||||
bool _hasRegistered = false;
|
||||
|
||||
QHexView *m_hex = nullptr;
|
||||
QMenu *m_menu = nullptr;
|
||||
|
|
|
@ -28,7 +28,7 @@
|
|||
#include "class/clangformatmanager.h"
|
||||
|
||||
ScriptEditor::ScriptEditor(QWidget *parent)
|
||||
: ads::CDockWidget(QString(), parent) {
|
||||
: ads::CDockWidget(nullptr, QString(), parent) {
|
||||
this->setFeatures(
|
||||
CDockWidget::DockWidgetFocusable | CDockWidget::DockWidgetMovable |
|
||||
CDockWidget::DockWidgetClosable | CDockWidget::DockWidgetPinnable |
|
||||
|
|
|
@ -8,4 +8,12 @@ enum class CrashCode : int {
|
|||
GenericCallNotSupported
|
||||
};
|
||||
|
||||
namespace AsUserDataType {
|
||||
enum AsUserDataType {
|
||||
UserData_ContextDbgInfo,
|
||||
UserData_API,
|
||||
UserData_PluginFn,
|
||||
};
|
||||
}
|
||||
|
||||
#endif // DEFINE_H
|
||||
|
|
|
@ -42,6 +42,7 @@ ColorPickerDialog::ColorPickerDialog(QWidget *parent)
|
|||
|
||||
_oldColor.setHsv(180, 255, 255);
|
||||
updateColor(_oldColor);
|
||||
_color = _oldColor;
|
||||
|
||||
_dialog = new FramelessDialogBase(parent);
|
||||
_dialog->buildUpContent(this);
|
||||
|
|
|
@ -34,6 +34,7 @@
|
|||
#include "class/wingfiledialog.h"
|
||||
#include "class/winginputdialog.h"
|
||||
#include "class/wingmessagebox.h"
|
||||
#include "class/wingupdater.h"
|
||||
#include "control/toast.h"
|
||||
#include "driverselectordialog.h"
|
||||
#include "encodingdialog.h"
|
||||
|
@ -103,7 +104,6 @@ MainWindow::MainWindow(SplashDialog *splash) : FramelessMainWindow() {
|
|||
if (splash)
|
||||
splash->setInfoText(tr("SetupDocking"));
|
||||
buildUpDockSystem(cw);
|
||||
_defaultLayout = m_dock->saveState();
|
||||
|
||||
layout->addWidget(m_dock, 1);
|
||||
|
||||
|
@ -219,6 +219,8 @@ MainWindow::MainWindow(SplashDialog *splash) : FramelessMainWindow() {
|
|||
// load saved docking layout
|
||||
if (splash)
|
||||
splash->setInfoText(tr("SetupDockingLayout"));
|
||||
|
||||
_defaultLayout = m_dock->saveState();
|
||||
m_dock->restoreState(set.dockLayout());
|
||||
|
||||
m_lastusedpath = set.lastUsedPath();
|
||||
|
@ -285,6 +287,26 @@ void MainWindow::buildUpRibbonBar() {
|
|||
app->openFile(f);
|
||||
}
|
||||
});
|
||||
|
||||
// check update if set
|
||||
if (set.checkUpdate()) {
|
||||
ExecAsync<int>(
|
||||
[]() -> int {
|
||||
bool ok = false;
|
||||
auto newest = WingUpdater::checkUpdate(&ok);
|
||||
if (ok) {
|
||||
return newest ? 1 : 0;
|
||||
} else {
|
||||
return -1;
|
||||
}
|
||||
},
|
||||
[this](int status) {
|
||||
if (status == 0) {
|
||||
WingMessageBox::warning(this, qAppName(),
|
||||
tr("OlderVersion"));
|
||||
}
|
||||
});
|
||||
}
|
||||
}
|
||||
|
||||
void MainWindow::buildUpDockSystem(QWidget *container) {
|
||||
|
@ -347,7 +369,7 @@ void MainWindow::buildUpDockSystem(QWidget *container) {
|
|||
qApp->processEvents();
|
||||
|
||||
CDockWidget *CentralDockWidget =
|
||||
new CDockWidget(QStringLiteral("CentralWidget"));
|
||||
m_dock->createDockWidget(QStringLiteral("CentralWidget"));
|
||||
CentralDockWidget->setWidget(label);
|
||||
CentralDockWidget->setFeature(ads::CDockWidget::DockWidgetFocusable, false);
|
||||
CentralDockWidget->setFeature(ads::CDockWidget::NoTab, true);
|
||||
|
@ -750,17 +772,55 @@ MainWindow::buildUpVisualDataDock(ads::CDockManager *dock,
|
|||
using namespace ads;
|
||||
|
||||
m_infolist = new QListView(this);
|
||||
m_infolist->setEditTriggers(QListView::EditTrigger::NoEditTriggers);
|
||||
connect(m_infolist, &QListView::clicked, this,
|
||||
[this](const QModelIndex &index) {
|
||||
if (m_infoclickfn) {
|
||||
m_infoclickfn(index);
|
||||
}
|
||||
});
|
||||
connect(m_infolist, &QListView::doubleClicked, this,
|
||||
[this](const QModelIndex &index) {
|
||||
if (m_infodblclickfn) {
|
||||
m_infodblclickfn(index);
|
||||
}
|
||||
});
|
||||
auto dw = buildDockWidget(dock, QStringLiteral("DVList"), tr("DVList"),
|
||||
m_infolist);
|
||||
auto ar = dock->addDockWidget(area, dw, areaw);
|
||||
|
||||
m_infotree = new QTreeView(this);
|
||||
|
||||
m_infotree->setEditTriggers(QTreeView::EditTrigger::NoEditTriggers);
|
||||
connect(m_infotree, &QTreeView::clicked, this,
|
||||
[this](const QModelIndex &index) {
|
||||
if (m_infotreeclickfn) {
|
||||
m_infotreeclickfn(index);
|
||||
}
|
||||
});
|
||||
connect(m_infotree, &QTreeView::doubleClicked, this,
|
||||
[this](const QModelIndex &index) {
|
||||
if (m_infotreedblclickfn) {
|
||||
m_infotreedblclickfn(index);
|
||||
}
|
||||
});
|
||||
dw = buildDockWidget(dock, QStringLiteral("DVTree"), tr("DVTree"),
|
||||
m_infotree);
|
||||
dock->addDockWidget(CenterDockWidgetArea, dw, ar);
|
||||
|
||||
m_infotable = new QTableView(this);
|
||||
m_infotable->setEditTriggers(QTableView::EditTrigger::NoEditTriggers);
|
||||
connect(m_infotable, &QTableView::clicked, this,
|
||||
[this](const QModelIndex &index) {
|
||||
if (m_infotableclickfn) {
|
||||
m_infotableclickfn(index);
|
||||
}
|
||||
});
|
||||
connect(m_infotable, &QTableView::doubleClicked, this,
|
||||
[this](const QModelIndex &index) {
|
||||
if (m_infotabledblclickfn) {
|
||||
m_infotabledblclickfn(index);
|
||||
}
|
||||
});
|
||||
dw = buildDockWidget(dock, QStringLiteral("DVTable"), tr("DVTable"),
|
||||
m_infotable);
|
||||
dock->addDockWidget(CenterDockWidgetArea, dw, ar);
|
||||
|
@ -1252,6 +1312,9 @@ RibbonTabContent *MainWindow::buildAboutPage(RibbonTabContent *tab) {
|
|||
addPannelAction(pannel, QStringLiteral("qt"), tr("AboutQT"),
|
||||
[this] { WingMessageBox::aboutQt(this); });
|
||||
|
||||
addPannelAction(pannel, QStringLiteral("update"), tr("CheckUpdate"),
|
||||
&MainWindow::on_update);
|
||||
|
||||
return tab;
|
||||
}
|
||||
|
||||
|
@ -1359,7 +1422,7 @@ void MainWindow::installPluginEditorWidgets() {
|
|||
QHash<QString, IWingPlugin *> names;
|
||||
auto &log = Logger::instance();
|
||||
|
||||
auto menu = m_toolBtneditors.value(EDITOR_WINS);
|
||||
auto menu = m_toolBtneditors.value(EDITOR_WINS)->menu();
|
||||
for (auto p = m_editorViewWidgets.begin(); p != m_editorViewWidgets.end();
|
||||
++p) {
|
||||
for (auto &w : p.value()) {
|
||||
|
@ -1372,12 +1435,12 @@ void MainWindow::installPluginEditorWidgets() {
|
|||
continue;
|
||||
}
|
||||
|
||||
menu->addAction(newAction(w->icon(), w->name(), [this] {
|
||||
menu->addAction(newAction(w->icon(), w->name(), [this, w] {
|
||||
auto editor = currentEditor();
|
||||
if (editor == nullptr) {
|
||||
return;
|
||||
}
|
||||
editor->switchView(m_editorViewWidgets.size());
|
||||
editor->switchView(w);
|
||||
}));
|
||||
|
||||
names.insert(w->id(), p.key());
|
||||
|
@ -2339,16 +2402,19 @@ void MainWindow::on_locChanged() {
|
|||
|
||||
// 如果不超过 10KB (默认)那么解码,防止太多卡死
|
||||
if (buffer.length() <= 1024 * _decstrlim) {
|
||||
auto encname = hexeditor->renderer()->encoding();
|
||||
if (encname == QStringLiteral("ASCII")) {
|
||||
encname = QStringLiteral("ISO-8859-1");
|
||||
}
|
||||
|
||||
#if QT_VERSION >= QT_VERSION_CHECK(6, 0, 0)
|
||||
auto enc = QStringConverter::encodingForName(
|
||||
hexeditor->renderer()->encoding().toUtf8());
|
||||
auto enc = QStringConverter::encodingForName(encname.toUtf8());
|
||||
Q_ASSERT(enc.has_value());
|
||||
QStringDecoder dec(enc.value());
|
||||
|
||||
m_txtDecode->insertPlainText(dec.decode(b));
|
||||
#else
|
||||
auto enc = QTextCodec::codecForName(
|
||||
hexeditor->renderer()->encoding().toUtf8());
|
||||
auto enc = QTextCodec::codecForName(encname.toUtf8());
|
||||
auto dec = enc->makeDecoder();
|
||||
m_txtDecode->setText(dec->toUnicode(b));
|
||||
#endif
|
||||
|
@ -2453,6 +2519,30 @@ void MainWindow::on_wiki() {
|
|||
QUrl(QStringLiteral("https://www.cnblogs.com/wingsummer/p/18286419")));
|
||||
}
|
||||
|
||||
void MainWindow::on_update() {
|
||||
ExecAsync<int>(
|
||||
[]() -> int {
|
||||
bool ok = false;
|
||||
auto newest = WingUpdater::checkUpdate(&ok);
|
||||
if (ok) {
|
||||
return newest ? 1 : 0;
|
||||
} else {
|
||||
return -1;
|
||||
}
|
||||
},
|
||||
[this](int status) {
|
||||
if (status < 0) {
|
||||
WingMessageBox::critical(this, qAppName(), tr("BadNetwork"));
|
||||
} else if (status == 0) {
|
||||
WingMessageBox::warning(this, qAppName(), tr("OlderVersion"));
|
||||
} else {
|
||||
WingMessageBox::information(this, qAppName(),
|
||||
tr("NewestVersion"));
|
||||
}
|
||||
},
|
||||
tr("CheckingUpdate"));
|
||||
}
|
||||
|
||||
QString MainWindow::saveLog() {
|
||||
QDir ndir(Utilities::getAppDataPath());
|
||||
ndir.mkpath(QStringLiteral("log")); // 确保日志存放目录存在
|
||||
|
@ -2476,7 +2566,7 @@ ads::CDockWidget *MainWindow::buildDockWidget(ads::CDockManager *dock,
|
|||
QWidget *content,
|
||||
ToolButtonIndex index) {
|
||||
using namespace ads;
|
||||
auto dw = new CDockWidget(displayName, dock);
|
||||
auto dw = dock->createDockWidget(displayName, dock);
|
||||
dw->setObjectName(widgetName);
|
||||
dw->setFeatures(CDockWidget::DockWidgetMovable |
|
||||
CDockWidget::DockWidgetClosable |
|
||||
|
@ -2734,10 +2824,10 @@ void MainWindow::openFiles(const QStringList &files) {
|
|||
|
||||
ErrFile MainWindow::openFile(const QString &file, EditorView **editor) {
|
||||
auto e = findEditorView(file);
|
||||
if (editor) {
|
||||
*editor = e;
|
||||
}
|
||||
if (e) {
|
||||
if (editor) {
|
||||
*editor = e;
|
||||
}
|
||||
return ErrFile::AlreadyOpened;
|
||||
}
|
||||
|
||||
|
@ -2759,16 +2849,19 @@ ErrFile MainWindow::openFile(const QString &file, EditorView **editor) {
|
|||
|
||||
m_views.insert(ev, QString());
|
||||
registerEditorView(ev);
|
||||
if (editor) {
|
||||
*editor = ev;
|
||||
}
|
||||
m_dock->addDockWidget(ads::CenterDockWidgetArea, ev, editorViewArea());
|
||||
return ErrFile::Success;
|
||||
}
|
||||
|
||||
ErrFile MainWindow::openDriver(const QString &driver, EditorView **editor) {
|
||||
auto e = findEditorView(driver);
|
||||
if (editor) {
|
||||
*editor = e;
|
||||
}
|
||||
if (e) {
|
||||
if (editor) {
|
||||
*editor = e;
|
||||
}
|
||||
return ErrFile::AlreadyOpened;
|
||||
}
|
||||
|
||||
|
@ -2787,16 +2880,20 @@ ErrFile MainWindow::openDriver(const QString &driver, EditorView **editor) {
|
|||
|
||||
m_views.insert(ev, QString());
|
||||
registerEditorView(ev);
|
||||
if (editor) {
|
||||
*editor = ev;
|
||||
}
|
||||
m_dock->addDockWidget(ads::CenterDockWidgetArea, ev, editorViewArea());
|
||||
return ErrFile::Success;
|
||||
}
|
||||
|
||||
ErrFile MainWindow::openWorkSpace(const QString &file, EditorView **editor) {
|
||||
auto e = findEditorView(file);
|
||||
if (editor) {
|
||||
*editor = e;
|
||||
}
|
||||
|
||||
if (e) {
|
||||
if (editor) {
|
||||
*editor = e;
|
||||
}
|
||||
return ErrFile::AlreadyOpened;
|
||||
}
|
||||
|
||||
|
@ -2818,6 +2915,9 @@ ErrFile MainWindow::openWorkSpace(const QString &file, EditorView **editor) {
|
|||
|
||||
m_views.insert(ev, file);
|
||||
registerEditorView(ev);
|
||||
if (editor) {
|
||||
*editor = ev;
|
||||
}
|
||||
m_dock->addDockWidget(ads::CenterDockWidgetArea, ev, editorViewArea());
|
||||
return ErrFile::Success;
|
||||
}
|
||||
|
@ -2825,10 +2925,10 @@ ErrFile MainWindow::openWorkSpace(const QString &file, EditorView **editor) {
|
|||
ErrFile MainWindow::openRegionFile(QString file, EditorView **editor,
|
||||
qsizetype start, qsizetype length) {
|
||||
auto e = findEditorView(file);
|
||||
if (editor) {
|
||||
*editor = e;
|
||||
}
|
||||
if (e) {
|
||||
if (editor) {
|
||||
*editor = e;
|
||||
}
|
||||
return ErrFile::AlreadyOpened;
|
||||
}
|
||||
|
||||
|
@ -2849,6 +2949,9 @@ ErrFile MainWindow::openRegionFile(QString file, EditorView **editor,
|
|||
}
|
||||
|
||||
registerEditorView(ev);
|
||||
if (editor) {
|
||||
*editor = ev;
|
||||
}
|
||||
m_dock->addDockWidget(ads::CenterDockWidgetArea, ev, editorViewArea());
|
||||
return ErrFile::Success;
|
||||
}
|
||||
|
|
|
@ -61,6 +61,10 @@ class MainWindow : public FramelessMainWindow {
|
|||
|
||||
friend class PluginSystem;
|
||||
|
||||
using ClickedCallBack = WingHex::WingPlugin::DataVisual::ClickedCallBack;
|
||||
using DblClickedCallBack =
|
||||
WingHex::WingPlugin::DataVisual::DoubleClickedCallBack;
|
||||
|
||||
public:
|
||||
explicit MainWindow(SplashDialog *splash);
|
||||
virtual ~MainWindow() override;
|
||||
|
@ -199,6 +203,7 @@ private slots:
|
|||
void on_about();
|
||||
void on_sponsor();
|
||||
void on_wiki();
|
||||
void on_update();
|
||||
|
||||
public:
|
||||
ErrFile openFile(const QString &file, EditorView **editor);
|
||||
|
@ -461,9 +466,17 @@ private:
|
|||
|
||||
// data visualization widgets
|
||||
QListView *m_infolist = nullptr;
|
||||
ClickedCallBack m_infoclickfn;
|
||||
DblClickedCallBack m_infodblclickfn;
|
||||
|
||||
QTreeView *m_infotree = nullptr;
|
||||
ClickedCallBack m_infotreeclickfn;
|
||||
DblClickedCallBack m_infotreedblclickfn;
|
||||
|
||||
QTableView *m_infotable = nullptr;
|
||||
QTextBrowser *m_infotxt = nullptr;
|
||||
ClickedCallBack m_infotableclickfn;
|
||||
DblClickedCallBack m_infotabledblclickfn;
|
||||
|
||||
QMap<ToolButtonIndex, QToolButton *> m_toolBtneditors;
|
||||
|
||||
|
|
|
@ -16,9 +16,9 @@
|
|||
*/
|
||||
|
||||
#include "scriptingdialog.h"
|
||||
#include "DockSplitter.h"
|
||||
#include "QWingRibbon/ribbontabcontent.h"
|
||||
#include "Qt-Advanced-Docking-System/src/DockAreaWidget.h"
|
||||
#include "Qt-Advanced-Docking-System/src/DockSplitter.h"
|
||||
#include "aboutsoftwaredialog.h"
|
||||
#include "class/langservice.h"
|
||||
#include "class/languagemanager.h"
|
||||
|
@ -679,7 +679,7 @@ void ScriptingDialog::buildUpDockSystem(QWidget *container) {
|
|||
label->setPicture(backimg);
|
||||
label->setAlignment(Qt::AlignCenter);
|
||||
CDockWidget *CentralDockWidget =
|
||||
new CDockWidget(QStringLiteral("CentralWidget"));
|
||||
m_dock->createDockWidget(QStringLiteral("CentralWidget"));
|
||||
CentralDockWidget->setWidget(label);
|
||||
CentralDockWidget->setFeature(ads::CDockWidget::DockWidgetFocusable, false);
|
||||
CentralDockWidget->setFeature(ads::CDockWidget::NoTab, true);
|
||||
|
@ -730,7 +730,7 @@ ads::CDockWidget *ScriptingDialog::buildDockWidget(ads::CDockManager *dock,
|
|||
QWidget *content,
|
||||
ToolButtonIndex index) {
|
||||
using namespace ads;
|
||||
auto dw = new CDockWidget(displayName, dock);
|
||||
auto dw = dock->createDockWidget(displayName, dock);
|
||||
dw->setObjectName(widgetName);
|
||||
dw->setFeatures(CDockWidget::DockWidgetMovable |
|
||||
CDockWidget::DockWidgetClosable |
|
||||
|
|
|
@ -49,10 +49,14 @@ void CheckSumModel::clearData() {
|
|||
}
|
||||
|
||||
int CheckSumModel::rowCount(const QModelIndex &parent) const {
|
||||
Q_UNUSED(parent);
|
||||
return _checkSumData.size();
|
||||
}
|
||||
|
||||
int CheckSumModel::columnCount(const QModelIndex &parent) const { return 1; }
|
||||
int CheckSumModel::columnCount(const QModelIndex &parent) const {
|
||||
Q_UNUSED(parent);
|
||||
return 1;
|
||||
}
|
||||
|
||||
QVariant CheckSumModel::data(const QModelIndex &index, int role) const {
|
||||
switch (role) {
|
||||
|
|
|
@ -23,6 +23,7 @@
|
|||
|
||||
#include "settingpage.h"
|
||||
|
||||
#include <functional>
|
||||
#include <memory>
|
||||
|
||||
#include <QCryptographicHash>
|
||||
|
@ -73,7 +74,9 @@ enum ErrFile : int {
|
|||
WorkSpaceUnSaved = -8,
|
||||
SourceFileChanged = -9,
|
||||
ClonedFile = -10,
|
||||
InvalidFormat = -11
|
||||
InvalidFormat = -11,
|
||||
TooManyOpenedFile = -12,
|
||||
NotAllowedInNoneGUIThread = -13
|
||||
};
|
||||
Q_ENUM_NS(ErrFile)
|
||||
|
||||
|
@ -95,7 +98,7 @@ struct HexPosition {
|
|||
quint8 lineWidth;
|
||||
int nibbleindex;
|
||||
|
||||
inline qsizetype offset() const {
|
||||
Q_REQUIRED_RESULT inline qsizetype offset() const {
|
||||
return static_cast<qsizetype>(line * lineWidth) + column;
|
||||
}
|
||||
inline qsizetype operator-(const HexPosition &rhs) const {
|
||||
|
@ -116,185 +119,176 @@ namespace WingPlugin {
|
|||
class Reader : public QObject {
|
||||
Q_OBJECT
|
||||
signals:
|
||||
bool isCurrentDocEditing();
|
||||
QString currentDocFilename();
|
||||
Q_REQUIRED_RESULT bool isCurrentDocEditing();
|
||||
Q_REQUIRED_RESULT QString currentDocFilename();
|
||||
|
||||
// document
|
||||
bool isReadOnly();
|
||||
bool isKeepSize();
|
||||
bool isLocked();
|
||||
qsizetype documentLines();
|
||||
qsizetype documentBytes();
|
||||
WingHex::HexPosition currentPos();
|
||||
qsizetype currentRow();
|
||||
qsizetype currentColumn();
|
||||
qsizetype currentOffset();
|
||||
qsizetype selectedLength();
|
||||
Q_REQUIRED_RESULT bool isReadOnly();
|
||||
Q_REQUIRED_RESULT bool isKeepSize();
|
||||
Q_REQUIRED_RESULT bool isLocked();
|
||||
Q_REQUIRED_RESULT qsizetype documentLines();
|
||||
Q_REQUIRED_RESULT qsizetype documentBytes();
|
||||
Q_REQUIRED_RESULT WingHex::HexPosition currentPos();
|
||||
Q_REQUIRED_RESULT qsizetype currentRow();
|
||||
Q_REQUIRED_RESULT qsizetype currentColumn();
|
||||
Q_REQUIRED_RESULT qsizetype currentOffset();
|
||||
Q_REQUIRED_RESULT qsizetype selectedLength();
|
||||
|
||||
QByteArray selectedBytes(qsizetype index);
|
||||
QByteArrayList selectionBytes();
|
||||
Q_REQUIRED_RESULT QByteArray selectedBytes(qsizetype index);
|
||||
Q_REQUIRED_RESULT QByteArrayList selectionBytes();
|
||||
|
||||
WingHex::HexPosition selectionStart(qsizetype index);
|
||||
WingHex::HexPosition selectionEnd(qsizetype index);
|
||||
qsizetype selectionLength(qsizetype index);
|
||||
qsizetype selectionCount();
|
||||
Q_REQUIRED_RESULT WingHex::HexPosition selectionStart(qsizetype index);
|
||||
Q_REQUIRED_RESULT WingHex::HexPosition selectionEnd(qsizetype index);
|
||||
Q_REQUIRED_RESULT qsizetype selectionLength(qsizetype index);
|
||||
Q_REQUIRED_RESULT qsizetype selectionCount();
|
||||
|
||||
bool stringVisible();
|
||||
bool addressVisible();
|
||||
bool headerVisible();
|
||||
quintptr addressBase();
|
||||
bool isModified();
|
||||
Q_REQUIRED_RESULT bool stringVisible();
|
||||
Q_REQUIRED_RESULT bool addressVisible();
|
||||
Q_REQUIRED_RESULT bool headerVisible();
|
||||
Q_REQUIRED_RESULT quintptr addressBase();
|
||||
Q_REQUIRED_RESULT bool isModified();
|
||||
|
||||
bool isEmpty();
|
||||
bool atEnd();
|
||||
bool canUndo();
|
||||
bool canRedo();
|
||||
|
||||
bool copy(bool hex = false);
|
||||
|
||||
qint8 readInt8(qsizetype offset);
|
||||
qint16 readInt16(qsizetype offset);
|
||||
qint32 readInt32(qsizetype offset);
|
||||
qint64 readInt64(qsizetype offset);
|
||||
float readFloat(qsizetype offset);
|
||||
double readDouble(qsizetype offset);
|
||||
QString readString(qsizetype offset, const QString &encoding = QString());
|
||||
QByteArray readBytes(qsizetype offset, qsizetype count);
|
||||
Q_REQUIRED_RESULT qint8 readInt8(qsizetype offset);
|
||||
Q_REQUIRED_RESULT qint16 readInt16(qsizetype offset);
|
||||
Q_REQUIRED_RESULT qint32 readInt32(qsizetype offset);
|
||||
Q_REQUIRED_RESULT qint64 readInt64(qsizetype offset);
|
||||
Q_REQUIRED_RESULT float readFloat(qsizetype offset);
|
||||
Q_REQUIRED_RESULT double readDouble(qsizetype offset);
|
||||
Q_REQUIRED_RESULT QString readString(qsizetype offset,
|
||||
const QString &encoding = QString());
|
||||
Q_REQUIRED_RESULT QByteArray readBytes(qsizetype offset, qsizetype count);
|
||||
|
||||
// an extension for AngelScript
|
||||
// void read(? &in); // this function can read bytes to input container
|
||||
|
||||
qsizetype searchForward(qsizetype begin, const QByteArray &ba);
|
||||
qsizetype searchBackward(qsizetype begin, const QByteArray &ba);
|
||||
QList<qsizetype> findAllBytes(qsizetype begin, qsizetype end,
|
||||
const QByteArray &b);
|
||||
|
||||
// render
|
||||
qsizetype documentLastLine();
|
||||
qsizetype documentLastColumn();
|
||||
Q_REQUIRED_RESULT qsizetype searchForward(qsizetype begin,
|
||||
const QByteArray &ba);
|
||||
Q_REQUIRED_RESULT qsizetype searchBackward(qsizetype begin,
|
||||
const QByteArray &ba);
|
||||
Q_REQUIRED_RESULT QList<qsizetype>
|
||||
findAllBytes(qsizetype begin, qsizetype end, const QByteArray &b);
|
||||
|
||||
// metadata
|
||||
bool lineHasMetadata(qsizetype line);
|
||||
Q_REQUIRED_RESULT bool lineHasMetadata(qsizetype line);
|
||||
|
||||
// bookmark
|
||||
bool lineHasBookMark(qsizetype line);
|
||||
QList<qsizetype> getsBookmarkPos(qsizetype line);
|
||||
QString bookMarkComment(qsizetype pos);
|
||||
bool existBookMark(qsizetype pos);
|
||||
Q_REQUIRED_RESULT bool lineHasBookMark(qsizetype line);
|
||||
Q_REQUIRED_RESULT QList<qsizetype> getsBookmarkPos(qsizetype line);
|
||||
Q_REQUIRED_RESULT QString bookMarkComment(qsizetype pos);
|
||||
Q_REQUIRED_RESULT bool existBookMark(qsizetype pos);
|
||||
|
||||
// extension
|
||||
QStringList getSupportedEncodings();
|
||||
QString currentEncoding();
|
||||
Q_REQUIRED_RESULT QStringList getSupportedEncodings();
|
||||
Q_REQUIRED_RESULT QStringList getStorageDrivers();
|
||||
Q_REQUIRED_RESULT QString currentEncoding();
|
||||
};
|
||||
|
||||
class Controller : public QObject {
|
||||
Q_OBJECT
|
||||
signals:
|
||||
// document
|
||||
bool switchDocument(int handle);
|
||||
bool raiseDocument(int handle);
|
||||
bool setLockedFile(bool b);
|
||||
bool setKeepSize(bool b);
|
||||
bool setStringVisible(bool b);
|
||||
bool setAddressVisible(bool b);
|
||||
bool setHeaderVisible(bool b);
|
||||
bool setAddressBase(quintptr base);
|
||||
Q_REQUIRED_RESULT bool switchDocument(int handle);
|
||||
Q_REQUIRED_RESULT bool raiseDocument(int handle);
|
||||
Q_REQUIRED_RESULT bool setLockedFile(bool b);
|
||||
Q_REQUIRED_RESULT bool setKeepSize(bool b);
|
||||
Q_REQUIRED_RESULT bool setStringVisible(bool b);
|
||||
Q_REQUIRED_RESULT bool setAddressVisible(bool b);
|
||||
Q_REQUIRED_RESULT bool setHeaderVisible(bool b);
|
||||
Q_REQUIRED_RESULT bool setAddressBase(quintptr base);
|
||||
|
||||
bool undo();
|
||||
bool redo();
|
||||
bool cut(bool hex = false);
|
||||
bool paste(bool hex = false);
|
||||
Q_REQUIRED_RESULT bool writeInt8(qsizetype offset, qint8 value);
|
||||
Q_REQUIRED_RESULT bool writeInt16(qsizetype offset, qint16 value);
|
||||
Q_REQUIRED_RESULT bool writeInt32(qsizetype offset, qint32 value);
|
||||
Q_REQUIRED_RESULT bool writeInt64(qsizetype offset, qint64 value);
|
||||
Q_REQUIRED_RESULT bool writeFloat(qsizetype offset, float value);
|
||||
Q_REQUIRED_RESULT bool writeDouble(qsizetype offset, double value);
|
||||
Q_REQUIRED_RESULT bool writeString(qsizetype offset, const QString &value,
|
||||
const QString &encoding = QString());
|
||||
Q_REQUIRED_RESULT bool writeBytes(qsizetype offset, const QByteArray &data);
|
||||
|
||||
bool writeInt8(qsizetype offset, qint8 value);
|
||||
bool writeInt16(qsizetype offset, qint16 value);
|
||||
bool writeInt32(qsizetype offset, qint32 value);
|
||||
bool writeInt64(qsizetype offset, qint64 value);
|
||||
bool writeFloat(qsizetype offset, float value);
|
||||
bool writeDouble(qsizetype offset, double value);
|
||||
bool writeString(qsizetype offset, const QString &value,
|
||||
const QString &encoding = QString());
|
||||
bool writeBytes(qsizetype offset, const QByteArray &data);
|
||||
Q_REQUIRED_RESULT bool insertInt8(qsizetype offset, qint8 value);
|
||||
Q_REQUIRED_RESULT bool insertInt16(qsizetype offset, qint16 value);
|
||||
Q_REQUIRED_RESULT bool insertInt32(qsizetype offset, qint32 value);
|
||||
Q_REQUIRED_RESULT bool insertInt64(qsizetype offset, qint64 value);
|
||||
Q_REQUIRED_RESULT bool insertFloat(qsizetype offset, float value);
|
||||
Q_REQUIRED_RESULT bool insertDouble(qsizetype offset, double value);
|
||||
Q_REQUIRED_RESULT bool insertString(qsizetype offset, const QString &value,
|
||||
const QString &encoding = QString());
|
||||
Q_REQUIRED_RESULT bool insertBytes(qsizetype offset,
|
||||
const QByteArray &data);
|
||||
|
||||
bool insertInt8(qsizetype offset, qint8 value);
|
||||
bool insertInt16(qsizetype offset, qint16 value);
|
||||
bool insertInt32(qsizetype offset, qint32 value);
|
||||
bool insertInt64(qsizetype offset, qint64 value);
|
||||
bool insertFloat(qsizetype offset, float value);
|
||||
bool insertDouble(qsizetype offset, double value);
|
||||
bool insertString(qsizetype offset, const QString &value,
|
||||
const QString &encoding = QString());
|
||||
bool insertBytes(qsizetype offset, const QByteArray &data);
|
||||
Q_REQUIRED_RESULT bool appendInt8(qint8 value);
|
||||
Q_REQUIRED_RESULT bool appendInt16(qint16 value);
|
||||
Q_REQUIRED_RESULT bool appendInt32(qint32 value);
|
||||
Q_REQUIRED_RESULT bool appendInt64(qint64 value);
|
||||
Q_REQUIRED_RESULT bool appendFloat(float value);
|
||||
Q_REQUIRED_RESULT bool appendDouble(double value);
|
||||
Q_REQUIRED_RESULT bool appendString(const QString &value,
|
||||
const QString &encoding = QString());
|
||||
Q_REQUIRED_RESULT bool appendBytes(const QByteArray &data);
|
||||
|
||||
bool appendInt8(qint8 value);
|
||||
bool appendInt16(qint16 value);
|
||||
bool appendInt32(qint32 value);
|
||||
bool appendInt64(qint64 value);
|
||||
bool appendFloat(float value);
|
||||
bool appendDouble(double value);
|
||||
bool appendString(const QString &value,
|
||||
const QString &encoding = QString());
|
||||
bool appendBytes(const QByteArray &data);
|
||||
|
||||
bool remove(qsizetype offset, qsizetype len);
|
||||
bool removeAll(); // extension
|
||||
Q_REQUIRED_RESULT bool remove(qsizetype offset, qsizetype len);
|
||||
Q_REQUIRED_RESULT bool removeAllBytes(); // extension
|
||||
|
||||
// cursor
|
||||
bool moveTo(qsizetype line, qsizetype column, int nibbleindex = 1,
|
||||
bool clearSelection = true);
|
||||
bool moveTo(qsizetype offset, bool clearSelection = true);
|
||||
bool select(qsizetype offset, qsizetype length,
|
||||
SelectionMode mode = SelectionMode::Add);
|
||||
bool setInsertionMode(bool isinsert);
|
||||
Q_REQUIRED_RESULT bool moveTo(qsizetype line, qsizetype column,
|
||||
int nibbleindex = 1,
|
||||
bool clearSelection = true);
|
||||
Q_REQUIRED_RESULT bool moveTo(qsizetype offset, bool clearSelection = true);
|
||||
Q_REQUIRED_RESULT bool select(qsizetype offset, qsizetype length,
|
||||
SelectionMode mode = SelectionMode::Add);
|
||||
Q_REQUIRED_RESULT bool setInsertionMode(bool isinsert);
|
||||
|
||||
// metadata
|
||||
bool foreground(qsizetype begin, qusizetype length, const QColor &fgcolor);
|
||||
bool background(qsizetype begin, qusizetype length, const QColor &bgcolor);
|
||||
bool comment(qsizetype begin, qusizetype length, const QString &comment);
|
||||
Q_REQUIRED_RESULT bool foreground(qsizetype begin, qusizetype length,
|
||||
const QColor &fgcolor);
|
||||
Q_REQUIRED_RESULT bool background(qsizetype begin, qusizetype length,
|
||||
const QColor &bgcolor);
|
||||
Q_REQUIRED_RESULT bool comment(qsizetype begin, qusizetype length,
|
||||
const QString &comment);
|
||||
|
||||
bool metadata(qsizetype begin, qusizetype length, const QColor &fgcolor,
|
||||
const QColor &bgcolor, const QString &comment);
|
||||
Q_REQUIRED_RESULT bool metadata(qsizetype begin, qusizetype length,
|
||||
const QColor &fgcolor,
|
||||
const QColor &bgcolor,
|
||||
const QString &comment);
|
||||
|
||||
bool removeMetadata(qsizetype offset);
|
||||
bool clearMetadata();
|
||||
bool setMetaVisible(bool b);
|
||||
bool setMetafgVisible(bool b);
|
||||
bool setMetabgVisible(bool b);
|
||||
bool setMetaCommentVisible(bool b);
|
||||
Q_REQUIRED_RESULT bool removeMetadata(qsizetype offset);
|
||||
Q_REQUIRED_RESULT bool clearMetadata();
|
||||
Q_REQUIRED_RESULT bool setMetaVisible(bool b);
|
||||
Q_REQUIRED_RESULT bool setMetafgVisible(bool b);
|
||||
Q_REQUIRED_RESULT bool setMetabgVisible(bool b);
|
||||
Q_REQUIRED_RESULT bool setMetaCommentVisible(bool b);
|
||||
|
||||
// mainwindow
|
||||
WingHex::ErrFile newFile();
|
||||
WingHex::ErrFile openFile(const QString &filename);
|
||||
WingHex::ErrFile openRegionFile(const QString &filename,
|
||||
qsizetype start = 0,
|
||||
qsizetype length = 1024);
|
||||
WingHex::ErrFile openDriver(const QString &driver);
|
||||
WingHex::ErrFile closeFile(int handle, bool force = false);
|
||||
WingHex::ErrFile saveFile(int handle, bool ignoreMd5 = false);
|
||||
WingHex::ErrFile exportFile(int handle, const QString &savename,
|
||||
bool ignoreMd5 = false);
|
||||
bool exportFileGUI();
|
||||
WingHex::ErrFile saveAsFile(int handle, const QString &savename,
|
||||
bool ignoreMd5 = false);
|
||||
bool saveAsFileGUI();
|
||||
WingHex::ErrFile closeCurrentFile(bool force = false);
|
||||
WingHex::ErrFile saveCurrentFile(bool ignoreMd5 = false);
|
||||
bool openFileGUI();
|
||||
bool openRegionFileGUI();
|
||||
bool openDriverGUI();
|
||||
bool findGUI();
|
||||
bool gotoGUI();
|
||||
bool fillGUI();
|
||||
bool fillZeroGUI();
|
||||
Q_REQUIRED_RESULT WingHex::ErrFile newFile();
|
||||
Q_REQUIRED_RESULT WingHex::ErrFile openFile(const QString &filename);
|
||||
Q_REQUIRED_RESULT WingHex::ErrFile openRegionFile(const QString &filename,
|
||||
qsizetype start = 0,
|
||||
qsizetype length = 1024);
|
||||
Q_REQUIRED_RESULT WingHex::ErrFile openDriver(const QString &driver);
|
||||
Q_REQUIRED_RESULT WingHex::ErrFile closeFile(int handle,
|
||||
bool force = false);
|
||||
Q_REQUIRED_RESULT WingHex::ErrFile saveFile(int handle,
|
||||
bool ignoreMd5 = false);
|
||||
Q_REQUIRED_RESULT WingHex::ErrFile
|
||||
exportFile(int handle, const QString &savename, bool ignoreMd5 = false);
|
||||
Q_REQUIRED_RESULT WingHex::ErrFile
|
||||
saveAsFile(int handle, const QString &savename, bool ignoreMd5 = false);
|
||||
Q_REQUIRED_RESULT WingHex::ErrFile closeCurrentFile(bool force = false);
|
||||
Q_REQUIRED_RESULT WingHex::ErrFile saveCurrentFile(bool ignoreMd5 = false);
|
||||
|
||||
// bookmark
|
||||
bool addBookMark(qsizetype pos, const QString &comment);
|
||||
bool modBookMark(qsizetype pos, const QString &comment);
|
||||
bool removeBookMark(qsizetype pos);
|
||||
bool clearBookMark();
|
||||
Q_REQUIRED_RESULT bool addBookMark(qsizetype pos, const QString &comment);
|
||||
Q_REQUIRED_RESULT bool modBookMark(qsizetype pos, const QString &comment);
|
||||
Q_REQUIRED_RESULT bool removeBookMark(qsizetype pos);
|
||||
Q_REQUIRED_RESULT bool clearBookMark();
|
||||
|
||||
// workspace
|
||||
WingHex::ErrFile openWorkSpace(const QString &filename);
|
||||
bool setCurrentEncoding(const QString &encoding);
|
||||
Q_REQUIRED_RESULT WingHex::ErrFile openWorkSpace(const QString &filename);
|
||||
Q_REQUIRED_RESULT bool setCurrentEncoding(const QString &encoding);
|
||||
|
||||
// extension
|
||||
bool closeAllPluginFiles();
|
||||
};
|
||||
|
||||
class MessageBox : public QObject {
|
||||
|
@ -335,53 +329,57 @@ signals:
|
|||
class InputBox : public QObject {
|
||||
Q_OBJECT
|
||||
signals:
|
||||
QString getText(QWidget *parent, const QString &title, const QString &label,
|
||||
QLineEdit::EchoMode echo = QLineEdit::Normal,
|
||||
const QString &text = QString(), bool *ok = nullptr,
|
||||
Qt::InputMethodHints inputMethodHints = Qt::ImhNone);
|
||||
QString
|
||||
getMultiLineText(QWidget *parent, const QString &title,
|
||||
const QString &label, const QString &text = QString(),
|
||||
bool *ok = nullptr,
|
||||
Qt::InputMethodHints inputMethodHints = Qt::ImhNone);
|
||||
Q_REQUIRED_RESULT QString
|
||||
getText(QWidget *parent, const QString &title, const QString &label,
|
||||
QLineEdit::EchoMode echo = QLineEdit::Normal,
|
||||
const QString &text = QString(), bool *ok = nullptr,
|
||||
Qt::InputMethodHints inputMethodHints = Qt::ImhNone);
|
||||
Q_REQUIRED_RESULT QString getMultiLineText(
|
||||
QWidget *parent, const QString &title, const QString &label,
|
||||
const QString &text = QString(), bool *ok = nullptr,
|
||||
Qt::InputMethodHints inputMethodHints = Qt::ImhNone);
|
||||
|
||||
QString getItem(QWidget *parent, const QString &title, const QString &label,
|
||||
const QStringList &items, int current = 0,
|
||||
bool editable = true, bool *ok = nullptr,
|
||||
Qt::InputMethodHints inputMethodHints = Qt::ImhNone);
|
||||
Q_REQUIRED_RESULT QString
|
||||
getItem(QWidget *parent, const QString &title, const QString &label,
|
||||
const QStringList &items, int current = 0, bool editable = true,
|
||||
bool *ok = nullptr,
|
||||
Qt::InputMethodHints inputMethodHints = Qt::ImhNone);
|
||||
|
||||
int getInt(QWidget *parent, const QString &title, const QString &label,
|
||||
int value = 0, int minValue = -2147483647,
|
||||
int maxValue = 2147483647, int step = 1, bool *ok = nullptr);
|
||||
Q_REQUIRED_RESULT int getInt(QWidget *parent, const QString &title,
|
||||
const QString &label, int value = 0,
|
||||
int minValue = -2147483647,
|
||||
int maxValue = 2147483647, int step = 1,
|
||||
bool *ok = nullptr);
|
||||
|
||||
double getDouble(QWidget *parent, const QString &title,
|
||||
const QString &label, double value = 0,
|
||||
double minValue = -2147483647,
|
||||
double maxValue = 2147483647, int decimals = 1,
|
||||
bool *ok = nullptr, double step = 1);
|
||||
Q_REQUIRED_RESULT double getDouble(QWidget *parent, const QString &title,
|
||||
const QString &label, double value = 0,
|
||||
double minValue = -2147483647,
|
||||
double maxValue = 2147483647,
|
||||
int decimals = 1, bool *ok = nullptr,
|
||||
double step = 1);
|
||||
};
|
||||
|
||||
class FileDialog : public QObject {
|
||||
Q_OBJECT
|
||||
signals:
|
||||
QString getExistingDirectory(
|
||||
Q_REQUIRED_RESULT QString getExistingDirectory(
|
||||
QWidget *parent = nullptr, const QString &caption = QString(),
|
||||
const QString &dir = QString(),
|
||||
QFileDialog::Options options = QFileDialog::ShowDirsOnly);
|
||||
|
||||
QString getOpenFileName(
|
||||
Q_REQUIRED_RESULT QString getOpenFileName(
|
||||
QWidget *parent = nullptr, const QString &caption = QString(),
|
||||
const QString &dir = QString(), const QString &filter = QString(),
|
||||
QString *selectedFilter = nullptr,
|
||||
QFileDialog::Options options = QFileDialog::Options());
|
||||
|
||||
QStringList getOpenFileNames(
|
||||
Q_REQUIRED_RESULT QStringList getOpenFileNames(
|
||||
QWidget *parent = nullptr, const QString &caption = QString(),
|
||||
const QString &dir = QString(), const QString &filter = QString(),
|
||||
QString *selectedFilter = nullptr,
|
||||
QFileDialog::Options options = QFileDialog::Options());
|
||||
|
||||
QString getSaveFileName(
|
||||
Q_REQUIRED_RESULT QString getSaveFileName(
|
||||
QWidget *parent = nullptr, const QString &caption = QString(),
|
||||
const QString &dir = QString(), const QString &filter = QString(),
|
||||
QString *selectedFilter = nullptr,
|
||||
|
@ -391,17 +389,43 @@ signals:
|
|||
class ColorDialog : public QObject {
|
||||
Q_OBJECT
|
||||
signals:
|
||||
QColor getColor(const QString &caption, QWidget *parent = nullptr);
|
||||
Q_REQUIRED_RESULT QColor getColor(const QString &caption,
|
||||
QWidget *parent = nullptr);
|
||||
};
|
||||
|
||||
class DataVisual : public QObject {
|
||||
Q_OBJECT
|
||||
public:
|
||||
typedef std::function<void(const QModelIndex &)> ClickedCallBack;
|
||||
typedef ClickedCallBack DoubleClickedCallBack;
|
||||
|
||||
signals:
|
||||
bool updateText(const QString &data);
|
||||
bool updateTextList(const QStringList &data);
|
||||
bool updateTextTree(const QString &json);
|
||||
bool updateTextTable(const QString &json, const QStringList &headers,
|
||||
const QStringList &headerNames = {});
|
||||
bool updateTextList(const QStringList &data, ClickedCallBack clicked = {},
|
||||
DoubleClickedCallBack dblClicked = {});
|
||||
|
||||
Q_REQUIRED_RESULT bool
|
||||
updateTextTree(const QString &json, ClickedCallBack clicked = {},
|
||||
DoubleClickedCallBack dblClicked = {});
|
||||
Q_REQUIRED_RESULT bool
|
||||
updateTextTable(const QString &json, const QStringList &headers,
|
||||
const QStringList &headerNames = {},
|
||||
ClickedCallBack clicked = {},
|
||||
DoubleClickedCallBack dblClicked = {});
|
||||
|
||||
// API for Qt Plugin Only
|
||||
Q_REQUIRED_RESULT bool
|
||||
updateTextListByModel(QAbstractItemModel *model,
|
||||
ClickedCallBack clicked = {},
|
||||
DoubleClickedCallBack dblClicked = {});
|
||||
Q_REQUIRED_RESULT bool
|
||||
updateTextTableByModel(QAbstractItemModel *model,
|
||||
ClickedCallBack clicked = {},
|
||||
DoubleClickedCallBack dblClicked = {});
|
||||
Q_REQUIRED_RESULT bool
|
||||
updateTextTreeByModel(QAbstractItemModel *model,
|
||||
ClickedCallBack clicked = {},
|
||||
DoubleClickedCallBack dblClicked = {});
|
||||
};
|
||||
|
||||
} // namespace WingPlugin
|
||||
|
@ -439,6 +463,10 @@ struct WingRibbonToolBoxInfo {
|
|||
class WingEditorViewWidget : public QWidget {
|
||||
Q_OBJECT
|
||||
|
||||
public:
|
||||
explicit WingEditorViewWidget(QWidget *parent = nullptr)
|
||||
: QWidget(parent) {}
|
||||
|
||||
public:
|
||||
virtual QIcon icon() const = 0;
|
||||
|
||||
|
@ -501,6 +529,13 @@ public:
|
|||
ScriptFn fn;
|
||||
};
|
||||
|
||||
enum class RegisteredEvent : uint {
|
||||
None,
|
||||
SelectionChanged = 1u,
|
||||
CursorPositionChanged = 1u << 1
|
||||
};
|
||||
Q_DECLARE_FLAGS(RegisteredEvents, RegisteredEvent)
|
||||
|
||||
public:
|
||||
virtual int sdkVersion() const = 0;
|
||||
virtual const QString signature() const = 0;
|
||||
|
@ -532,6 +567,19 @@ public:
|
|||
// QHash<function-name, fn>
|
||||
virtual QHash<QString, ScriptFnInfo> registeredScriptFn() { return {}; }
|
||||
|
||||
virtual RegisteredEvents registeredEvents() const {
|
||||
return RegisteredEvent::None;
|
||||
}
|
||||
|
||||
public:
|
||||
virtual void eventSelectionChanged(const QByteArrayList &selections) {
|
||||
Q_UNUSED(selections);
|
||||
}
|
||||
|
||||
virtual void eventCursorPositionChanged(const WingHex::HexPosition &pos) {
|
||||
Q_UNUSED(pos);
|
||||
}
|
||||
|
||||
signals:
|
||||
// extension and exposed to WingHexAngelScript
|
||||
void toast(const QPixmap &icon, const QString &message);
|
||||
|
|
File diff suppressed because it is too large
Load Diff
Some files were not shown because too many files have changed in this diff Show More
Loading…
Reference in New Issue