visual order of entries will now affect their saving order, changed the behavior of the entry view header. git-svn-id: https://svn.code.sf.net/p/keepassx/code/trunk@124 b624d157-de02-0410-bad0-e51aec6abb33master
parent
ee97e3c197
commit
28ba242090
@ -1,146 +1,159 @@ |
||||
# Diese Datei wurde mit dem qmake-Manager von KDevelop erstellt. |
||||
# ------------------------------------------- |
||||
# Unterordner relativ zum Projektordner: ./src |
||||
# Das Target ist eine Anwendung: ../bin/keepass |
||||
|
||||
|
||||
INSTALLS += target data |
||||
data.files += ../share/keepass/* |
||||
TARGET = ../bin/keepassx |
||||
|
||||
unix:!macx{ |
||||
isEmpty(PREFIX){ |
||||
PREFIX=/usr/local |
||||
} |
||||
target.path = $${PREFIX}/bin |
||||
data.path = $${PREFIX}/share/keepass |
||||
LIBS+=-lXtst |
||||
SOURCES+=lib/AutoType_X11.cpp |
||||
} |
||||
|
||||
macx{ |
||||
target.path = /Applications |
||||
data.path = /Applications/keepass.app/Contents/share/keepass |
||||
SOURCES+=lib/AutoType_X11.cpp |
||||
} |
||||
|
||||
win32{ |
||||
SOURCES+=lib/AutoType_Win.cpp |
||||
TARGET=../$$TARGET |
||||
QMAKE_LINK_OBJECT_SCRIPT=../build/$$QMAKE_LINK_OBJECT_SCRIPT |
||||
|
||||
} |
||||
|
||||
FORMS += forms/EditGroupDlg.ui \ |
||||
forms/SearchDlg.ui \ |
||||
forms/AboutDlg.ui \ |
||||
forms/SettingsDlg.ui \ |
||||
forms/MainWindow.ui \ |
||||
forms/SimplePasswordDlg.ui \ |
||||
forms/DatabaseSettingsDlg.ui \ |
||||
forms/PasswordDlg.ui \ |
||||
forms/EditEntryDlg.ui \ |
||||
forms/PasswordGenDlg.ui \ |
||||
forms/SelectIconDlg.ui \ |
||||
forms/CollectEntropyDlg.ui |
||||
TRANSLATIONS += translations/keepass-de_DE.ts \ |
||||
translations/keepass-ru_RU.ts \ |
||||
translations/keepass-es_ES.ts \ |
||||
translations/keepass-fr_FR.ts \ |
||||
translations/keepass-cs_CS.ts \ |
||||
translations/keepass-xx_XX.ts |
||||
HEADERS += lib/IniReader.h \ |
||||
lib/UrlLabel.h \ |
||||
mainwindow.h \ |
||||
StandardDatabase.h \ |
||||
lib/SecString.h \ |
||||
crypto/twoclass.h \ |
||||
crypto/twofish.h \ |
||||
import/Import_PwManager.h \ |
||||
export/Export_Txt.h \ |
||||
import/Import_KWalletXml.h \ |
||||
PwmConfig.h \ |
||||
dialogs/AboutDlg.h \ |
||||
dialogs/EditGroupDlg.h \ |
||||
dialogs/SearchDlg.h \ |
||||
dialogs/SettingsDlg.h \ |
||||
dialogs/DatabaseSettingsDlg.h \ |
||||
dialogs/PasswordDlg.h \ |
||||
dialogs/SimplePasswordDlg.h \ |
||||
dialogs/EditEntryDlg.h \ |
||||
dialogs/PasswordGenDlg.h \ |
||||
dialogs/SelectIconDlg.h \ |
||||
dialogs/CollectEntropyDlg.h \ |
||||
lib/random.h \ |
||||
Database.h \ |
||||
lib/KdePlugin.h \ |
||||
lib/AutoType.h \ |
||||
lib/FileDialogs.h \ |
||||
global.h \ |
||||
main.h \ |
||||
lib/GroupView.h \ |
||||
lib/EntryView.h \ |
||||
crypto/arcfour.h \ |
||||
lib/KpFileIconProvider.h \ |
||||
crypto/aes_edefs.h \ |
||||
crypto/aes_tdefs.h \ |
||||
crypto/aes.h \ |
||||
crypto/aesopt.h \ |
||||
crypto/aestab.h \ |
||||
crypto/aescpp.h \ |
||||
crypto/sha256.h \ |
||||
crypto/yarrow.h \ |
||||
lib/WaitAnimationWidget.h \ |
||||
plugins/interfaces/IFileDialog.h \ |
||||
plugins/interfaces/IKdeInit.h \ |
||||
plugins/interfaces/IGnomeInit.h |
||||
SOURCES += lib/IniReader.cpp \ |
||||
lib/UrlLabel.cpp \ |
||||
main.cpp \ |
||||
mainwindow.cpp \ |
||||
StandardDatabase.cpp \ |
||||
lib/SecString.cpp \ |
||||
crypto/twoclass.cpp \ |
||||
crypto/twofish.cpp \ |
||||
import/Import_PwManager.cpp \ |
||||
export/Export_Txt.cpp \ |
||||
import/Import_KWalletXml.cpp \ |
||||
PwmConfig.cpp \ |
||||
dialogs/AboutDlg.cpp \ |
||||
dialogs/EditGroupDlg.cpp \ |
||||
dialogs/SearchDlg.cpp \ |
||||
dialogs/SettingsDlg.cpp \ |
||||
dialogs/DatabaseSettingsDlg.cpp \ |
||||
dialogs/PasswordDlg.cpp \ |
||||
dialogs/SimplePasswordDlg.cpp \ |
||||
dialogs/EditEntryDlg.cpp \ |
||||
dialogs/PasswordGenDlg.cpp \ |
||||
dialogs/SelectIconDlg.cpp \ |
||||
dialogs/CollectEntropyDlg.cpp \ |
||||
lib/random.cpp \ |
||||
Database.cpp \ |
||||
lib/KdePlugin.cpp \ |
||||
lib/GroupView.cpp \ |
||||
lib/EntryView.cpp \ |
||||
lib/FileDialogs.cpp \ |
||||
crypto/arcfour.cpp \ |
||||
lib/KpFileIconProvider.cpp \ |
||||
crypto/aescrypt.c \ |
||||
crypto/aeskey.c \ |
||||
crypto/aestab.c \ |
||||
crypto/aes_modes.c \ |
||||
crypto/sha256.cpp \ |
||||
crypto/yarrow.cpp \ |
||||
lib/WaitAnimationWidget.cpp |
||||
QT += xml |
||||
MOC_DIR = ../build/moc |
||||
UI_DIR = ../build/ui |
||||
OBJECTS_DIR = ../build/ |
||||
INCLUDEPATH += ./ |
||||
CONFIG += debug \ |
||||
warn_off \ |
||||
qt \ |
||||
thread \ |
||||
exceptions \ |
||||
stl |
||||
TEMPLATE = app |
||||
###################################################################### |
||||
# Automatically generated by qmake (2.01a) Mo Jan 29 18:17:19 2007 |
||||
###################################################################### |
||||
|
||||
DEPENDPATH += "crypto \ |
||||
dialogs \ |
||||
export \ |
||||
forms \ |
||||
import \ |
||||
lib \ |
||||
translations" |
||||
INSTALLS += target data |
||||
data.files += ../share/keepass/* |
||||
TARGET = ../bin/keepassx |
||||
|
||||
unix: !macx{ |
||||
isEmpty(PREFIX){ |
||||
PREFIX = /usr/local |
||||
} |
||||
target.path = $${PREFIX}/bin |
||||
data.path = $${PREFIX}/share/keepass |
||||
LIBS += -lXtst -lQtDBus |
||||
SOURCES += lib/AutoType_X11.cpp |
||||
} |
||||
|
||||
macx{ |
||||
target.path = /Applications |
||||
data.path = /Applications/keepass.app/Contents/share/keepass |
||||
SOURCES += lib/AutoType_X11.cpp |
||||
} |
||||
|
||||
win32{ |
||||
SOURCES += lib/AutoType_Win.cpp |
||||
TARGET = ../$$TARGET |
||||
QMAKE_LINK_OBJECT_SCRIPT = ../build/$$QMAKE_LINK_OBJECT_SCRIPT |
||||
|
||||
} |
||||
|
||||
FORMS += forms/EditGroupDlg.ui \ |
||||
forms/SearchDlg.ui \ |
||||
forms/AboutDlg.ui \ |
||||
forms/SettingsDlg.ui \ |
||||
forms/MainWindow.ui \ |
||||
forms/SimplePasswordDlg.ui \ |
||||
forms/DatabaseSettingsDlg.ui \ |
||||
forms/PasswordDlg.ui \ |
||||
forms/EditEntryDlg.ui \ |
||||
forms/PasswordGenDlg.ui \ |
||||
forms/SelectIconDlg.ui \ |
||||
forms/CollectEntropyDlg.ui |
||||
TRANSLATIONS += translations/keepass-de_DE.ts \ |
||||
translations/keepass-ru_RU.ts \ |
||||
translations/keepass-es_ES.ts \ |
||||
translations/keepass-fr_FR.ts \ |
||||
translations/keepass-cs_CS.ts \ |
||||
translations/keepass-xx_XX.ts |
||||
HEADERS += lib/IniReader.h \ |
||||
lib/UrlLabel.h \ |
||||
mainwindow.h \ |
||||
StandardDatabase.h \ |
||||
lib/SecString.h \ |
||||
crypto/twoclass.h \ |
||||
crypto/twofish.h \ |
||||
import/Import_PwManager.h \ |
||||
export/Export_Txt.h \ |
||||
import/Import_KWalletXml.h \ |
||||
PwmConfig.h \ |
||||
dialogs/AboutDlg.h \ |
||||
dialogs/EditGroupDlg.h \ |
||||
dialogs/SearchDlg.h \ |
||||
dialogs/SettingsDlg.h \ |
||||
dialogs/DatabaseSettingsDlg.h \ |
||||
dialogs/PasswordDlg.h \ |
||||
dialogs/SimplePasswordDlg.h \ |
||||
dialogs/EditEntryDlg.h \ |
||||
dialogs/PasswordGenDlg.h \ |
||||
dialogs/SelectIconDlg.h \ |
||||
dialogs/CollectEntropyDlg.h \ |
||||
lib/random.h \ |
||||
Database.h \ |
||||
lib/KdePlugin.h \ |
||||
lib/AutoType.h \ |
||||
lib/FileDialogs.h \ |
||||
global.h \ |
||||
main.h \ |
||||
lib/GroupView.h \ |
||||
lib/EntryView.h \ |
||||
crypto/arcfour.h \ |
||||
lib/KpFileIconProvider.h \ |
||||
crypto/aes_edefs.h \ |
||||
crypto/aes_tdefs.h \ |
||||
crypto/aes.h \ |
||||
crypto/aesopt.h \ |
||||
crypto/aestab.h \ |
||||
crypto/aescpp.h \ |
||||
crypto/sha256.h \ |
||||
crypto/yarrow.h \ |
||||
lib/WaitAnimationWidget.h \ |
||||
plugins/interfaces/IFileDialog.h \ |
||||
plugins/interfaces/IKdeInit.h \ |
||||
plugins/interfaces/IGnomeInit.h \ |
||||
KpxFirefox.h |
||||
SOURCES += lib/IniReader.cpp \ |
||||
lib/UrlLabel.cpp \ |
||||
main.cpp \ |
||||
mainwindow.cpp \ |
||||
StandardDatabase.cpp \ |
||||
lib/SecString.cpp \ |
||||
crypto/twoclass.cpp \ |
||||
crypto/twofish.cpp \ |
||||
import/Import_PwManager.cpp \ |
||||
export/Export_Txt.cpp \ |
||||
import/Import_KWalletXml.cpp \ |
||||
PwmConfig.cpp \ |
||||
dialogs/AboutDlg.cpp \ |
||||
dialogs/EditGroupDlg.cpp \ |
||||
dialogs/SearchDlg.cpp \ |
||||
dialogs/SettingsDlg.cpp \ |
||||
dialogs/DatabaseSettingsDlg.cpp \ |
||||
dialogs/PasswordDlg.cpp \ |
||||
dialogs/SimplePasswordDlg.cpp \ |
||||
dialogs/EditEntryDlg.cpp \ |
||||
dialogs/PasswordGenDlg.cpp \ |
||||
dialogs/SelectIconDlg.cpp \ |
||||
dialogs/CollectEntropyDlg.cpp \ |
||||
lib/random.cpp \ |
||||
Database.cpp \ |
||||
lib/KdePlugin.cpp \ |
||||
lib/GroupView.cpp \ |
||||
lib/EntryView.cpp \ |
||||
lib/FileDialogs.cpp \ |
||||
crypto/arcfour.cpp \ |
||||
lib/KpFileIconProvider.cpp \ |
||||
crypto/aescrypt.c \ |
||||
crypto/aeskey.c \ |
||||
crypto/aestab.c \ |
||||
crypto/aes_modes.c \ |
||||
crypto/sha256.cpp \ |
||||
crypto/yarrow.cpp \ |
||||
lib/WaitAnimationWidget.cpp \ |
||||
KpxFirefox.cpp |
||||
MOC_DIR = ../build/moc |
||||
UI_DIR = ../build/ui |
||||
OBJECTS_DIR = ../build/ |
||||
CONFIG += debug \ |
||||
qt \ |
||||
thread \ |
||||
warn_off \ |
||||
dbus |
||||
QT += dbus xml |
||||
TEMPLATE = app |
||||
INCLUDEPATH += . \ |
||||
lib \ |
||||
crypto \ |
||||
plugins/interfaces \ |
||||
export \ |
||||
import \ |
||||
dialogs \ |
||||
./ |
||||
|
Reference in new issue