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.h
parentd445bf1ecd773e5810c98a81b99cb387538e0328 (diff)
Rename KeePassApp to Application and move it to gui directory.
Diffstat (limited to 'src/gui/Application.h')
-rw-r--r--src/gui/Application.h38
1 files changed, 38 insertions, 0 deletions
diff --git a/src/gui/Application.h b/src/gui/Application.h
new file mode 100644
index 000000000..491d7ebab
--- /dev/null
+++ b/src/gui/Application.h
@@ -0,0 +1,38 @@
+/*
+ * 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/>.
+ */
+
+#ifndef KEEPASSX_APPLICATION_H
+#define KEEPASSX_APPLICATION_H
+
+#include <QtGui/QApplication>
+#include "gui/MainWindow.h"
+
+class Application : public QApplication
+{
+ Q_OBJECT
+
+public:
+ Application(int& argc, char** argv);
+ ~Application();
+
+ bool event(QEvent *event);
+
+Q_SIGNALS:
+ void openDatabase(const QString& filename);
+};
+
+#endif // KEEPASSX_APPLICATION_H