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
parentd445bf1ecd773e5810c98a81b99cb387538e0328 (diff)
Rename KeePassApp to Application and move it to gui directory.
-rw-r--r--src/CMakeLists.txt4
-rw-r--r--src/gui/Application.cpp (renamed from src/core/KeePassApp.cpp)8
-rw-r--r--src/gui/Application.h (renamed from src/core/KeePassApp.h)11
-rw-r--r--src/main.cpp4
4 files changed, 16 insertions, 11 deletions
diff --git a/src/CMakeLists.txt b/src/CMakeLists.txt
index b5d15060f..20f4ca52c 100644
--- a/src/CMakeLists.txt
+++ b/src/CMakeLists.txt
@@ -18,7 +18,6 @@ include_directories( ${CMAKE_CURRENT_SOURCE_DIR} ${CMAKE_CURRENT_BINARY_DIR} )
configure_file( config-keepassx.h.cmake ${CMAKE_CURRENT_BINARY_DIR}/config-keepassx.h )
set(keepassx_SOURCES
- core/KeePassApp.cpp
core/Config.cpp
core/Database.cpp
core/DatabaseIcons.cpp
@@ -53,6 +52,7 @@ set(keepassx_SOURCES
format/KeePass2XmlReader.cpp
format/KeePass2XmlWriter.cpp
gui/AboutDialog.cpp
+ gui/Application.cpp
gui/ChangeMasterKeyWidget.cpp
gui/DatabaseOpenDialog.cpp
gui/DatabaseSettingsWidget.cpp
@@ -87,7 +87,6 @@ set(keepassx_SOURCES
)
set(keepassx_MOC
- core/KeePassApp.h
core/Database.h
core/Entry.h
core/EntryAttachments.h
@@ -95,6 +94,7 @@ set(keepassx_MOC
core/Group.h
core/Metadata.h
gui/AboutDialog.h
+ gui/Application.h
gui/ChangeMasterKeyWidget.h
gui/DatabaseOpenDialog.h
gui/DatabaseSettingsWidget.h
diff --git a/src/core/KeePassApp.cpp b/src/gui/Application.cpp
index 557dc2625..882f1b23d 100644
--- a/src/core/KeePassApp.cpp
+++ b/src/gui/Application.cpp
@@ -15,20 +15,20 @@
* along with this program. If not, see <http://www.gnu.org/licenses/>.
*/
-#include "KeePassApp.h"
+#include "Application.h"
#include <QtGui/QFileOpenEvent>
-KeePassApp::KeePassApp(int& argc, char** argv)
+Application::Application(int& argc, char** argv)
: QApplication(argc, argv)
{
}
-KeePassApp::~KeePassApp()
+Application::~Application()
{
}
-bool KeePassApp::event(QEvent *event)
+bool Application::event(QEvent *event)
{
// Handle Apple QFileOpenEvent from finder (double click on .kdbx file)
if (event->type() == QEvent::FileOpen) {
diff --git a/src/core/KeePassApp.h b/src/gui/Application.h
index aabd74f64..491d7ebab 100644
--- a/src/core/KeePassApp.h
+++ b/src/gui/Application.h
@@ -15,19 +15,24 @@
* 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 KeePassApp : public QApplication
+class Application : public QApplication
{
Q_OBJECT
public:
- KeePassApp(int& argc, char** argv);
- ~KeePassApp();
+ Application(int& argc, char** argv);
+ ~Application();
bool event(QEvent *event);
Q_SIGNALS:
void openDatabase(const QString& filename);
};
+
+#endif // KEEPASSX_APPLICATION_H
diff --git a/src/main.cpp b/src/main.cpp
index a6f3b831c..f5f4768c1 100644
--- a/src/main.cpp
+++ b/src/main.cpp
@@ -20,14 +20,14 @@
#include <QtGui/QTreeView>
#include "crypto/Crypto.h"
+#include "gui/Application.h"
#include "gui/MainWindow.h"
-#include "core/KeePassApp.h"
#include "keys/CompositeKey.h"
#include "keys/PasswordKey.h"
int main(int argc, char** argv)
{
- KeePassApp app(argc, argv);
+ Application app(argc, argv);
// don't set applicationName or organizationName as that changes
// QDesktopServices::storageLocation()