mirror of
https://github.com/sqlitebrowser/sqlitebrowser.git
synced 2026-01-22 03:51:25 -06:00
cipher: Fix build option and use a dialog for entering the password
Fix the sqlcipher build option in the qmake project to actually enable the SQLCipher support. Add a new dialog called CipherDialog which is used to ask the user for the password and other encryption details instead of using standard Qt input dialogs.
This commit is contained in:
@@ -43,7 +43,8 @@ HEADERS += \
|
||||
VacuumDialog.h \
|
||||
DbStructureModel.h \
|
||||
Application.h \
|
||||
sqlite.h
|
||||
sqlite.h \
|
||||
CipherDialog.h
|
||||
|
||||
SOURCES += \
|
||||
sqlitedb.cpp \
|
||||
@@ -67,7 +68,8 @@ SOURCES += \
|
||||
SqlExecutionArea.cpp \
|
||||
VacuumDialog.cpp \
|
||||
DbStructureModel.cpp \
|
||||
Application.cpp
|
||||
Application.cpp \
|
||||
CipherDialog.cpp
|
||||
|
||||
RESOURCES += icons/icons.qrc
|
||||
|
||||
@@ -81,7 +83,8 @@ FORMS += \
|
||||
ExportCsvDialog.ui \
|
||||
ImportCsvDialog.ui \
|
||||
SqlExecutionArea.ui \
|
||||
VacuumDialog.ui
|
||||
VacuumDialog.ui \
|
||||
CipherDialog.ui
|
||||
|
||||
TRANSLATIONS += \
|
||||
translations/sqlb_cn.ts \
|
||||
|
||||
Reference in New Issue
Block a user