summaryrefslogtreecommitdiff
path: root/qhexedit2/example/main.cpp
diff options
context:
space:
mode:
authorToni Uhlig <matzeton@googlemail.com>2023-07-07 12:37:21 +0200
committerToni Uhlig <matzeton@googlemail.com>2023-07-07 12:37:21 +0200
commitfebaef00017278ac65cb7e285564ebc9d5dadfe5 (patch)
tree940ac1386117785496334432dc03a3c0cfa02de5 /qhexedit2/example/main.cpp
parentf41f2dce18111c923c331a3fe6900edee731d040 (diff)
parent004b73ed7ef33cb407897f7eccbec5f3861f99d7 (diff)
Merge commit '004b73ed7ef33cb407897f7eccbec5f3861f99d7' as 'qhexedit2'
Diffstat (limited to 'qhexedit2/example/main.cpp')
-rw-r--r--qhexedit2/example/main.cpp30
1 files changed, 30 insertions, 0 deletions
diff --git a/qhexedit2/example/main.cpp b/qhexedit2/example/main.cpp
new file mode 100644
index 0000000..c742e45
--- /dev/null
+++ b/qhexedit2/example/main.cpp
@@ -0,0 +1,30 @@
+#include <QApplication>
+#include <QIcon>
+
+#include "mainwindow.h"
+
+int main(int argc, char *argv[])
+{
+ Q_INIT_RESOURCE(qhexedit);
+ QApplication app(argc, argv);
+ app.setApplicationName("QHexEdit");
+ app.setOrganizationName("QHexEdit");
+ app.setWindowIcon(QIcon(":images/qhexedit.ico"));
+
+ // Identify locale and load translation if available
+ QString locale = QLocale::system().name();
+ QTranslator translator;
+ translator.load(QString("qhexedit_") + locale);
+ app.installTranslator(&translator);
+
+ QCommandLineParser parser;
+ parser.addPositionalArgument("file", "File to open");
+ parser.addHelpOption();
+ parser.process(app);
+ MainWindow *mainWin = new MainWindow;
+ if(!parser.positionalArguments().isEmpty())
+ mainWin->loadFile(parser.positionalArguments().at(0));
+ mainWin->show();
+
+ return app.exec();
+}