Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/keepassxreboot/keepassxc.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorFlorian Geyer <blueice@fobos.de>2012-05-18 02:35:24 +0400
committerFelix Geyer <debfx@fobos.de>2012-05-22 00:04:40 +0400
commitb5249d196d82e6a5244040a784a0d41d44eb90a7 (patch)
tree098b22d02b619cf7148975ab22b9e91c1f433404 /src/gui/Application.cpp
parentd445bf1ecd773e5810c98a81b99cb387538e0328 (diff)
Rename KeePassApp to Application and move it to gui directory.
Diffstat (limited to 'src/gui/Application.cpp')
-rw-r--r--src/gui/Application.cpp40
1 files changed, 40 insertions, 0 deletions
diff --git a/src/gui/Application.cpp b/src/gui/Application.cpp
new file mode 100644
index 000000000..882f1b23d
--- /dev/null
+++ b/src/gui/Application.cpp
@@ -0,0 +1,40 @@
+/*
+ * Copyright (C) 2012 Tobias Tangemann
+ *
+ * This program is free software: you can redistribute it and/or modify
+ * it under the terms of the GNU General Public License as published by
+ * the Free Software Foundation, either version 2 or (at your option)
+ * version 3 of the License.
+ *
+ * This program is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+ * GNU General Public License for more details.
+ *
+ * You should have received a copy of the GNU General Public License
+ * along with this program. If not, see <http://www.gnu.org/licenses/>.
+ */
+
+#include "Application.h"
+
+#include <QtGui/QFileOpenEvent>
+
+Application::Application(int& argc, char** argv)
+ : QApplication(argc, argv)
+{
+}
+
+Application::~Application()
+{
+}
+
+bool Application::event(QEvent *event)
+{
+ // Handle Apple QFileOpenEvent from finder (double click on .kdbx file)
+ if (event->type() == QEvent::FileOpen) {
+ Q_EMIT openDatabase(static_cast<QFileOpenEvent*>(event)->file());
+ return true;
+ }
+
+ return (QApplication::event(event));
+}