Merge branch 'develop' into feature/macos-minimize-onclose
89
.clang-format
Normal file
@ -0,0 +1,89 @@
|
|||||||
|
---
|
||||||
|
Language: Cpp
|
||||||
|
AccessModifierOffset: -4
|
||||||
|
AlignAfterOpenBracket: Align
|
||||||
|
AlignConsecutiveAssignments: false
|
||||||
|
AlignConsecutiveDeclarations: false
|
||||||
|
AlignEscapedNewlinesLeft: false
|
||||||
|
AlignOperands: true
|
||||||
|
AlignTrailingComments: false
|
||||||
|
AllowAllParametersOfDeclarationOnNextLine: false
|
||||||
|
AllowShortBlocksOnASingleLine: false
|
||||||
|
AllowShortCaseLabelsOnASingleLine: false
|
||||||
|
AllowShortFunctionsOnASingleLine: None
|
||||||
|
AllowShortIfStatementsOnASingleLine: false
|
||||||
|
AllowShortLoopsOnASingleLine: false
|
||||||
|
AlwaysBreakAfterDefinitionReturnType: None
|
||||||
|
AlwaysBreakAfterReturnType: None
|
||||||
|
AlwaysBreakBeforeMultilineStrings: false
|
||||||
|
AlwaysBreakTemplateDeclarations: false
|
||||||
|
BinPackArguments: false
|
||||||
|
BinPackParameters: false
|
||||||
|
BraceWrapping:
|
||||||
|
AfterClass: true
|
||||||
|
AfterFunction: true
|
||||||
|
AfterControlStatement: false
|
||||||
|
AfterEnum: false
|
||||||
|
AfterNamespace: false
|
||||||
|
AfterObjCDeclaration: false
|
||||||
|
AfterStruct: false
|
||||||
|
AfterUnion: false
|
||||||
|
BeforeCatch: false
|
||||||
|
BeforeElse: false
|
||||||
|
IndentBraces: false
|
||||||
|
BreakBeforeBinaryOperators: None
|
||||||
|
BreakBeforeBraces: Custom
|
||||||
|
BreakBeforeTernaryOperators: true
|
||||||
|
BreakConstructorInitializersBeforeComma: true
|
||||||
|
ColumnLimit: 120
|
||||||
|
CommentPragmas: '^ IWYU pragma:'
|
||||||
|
ConstructorInitializerAllOnOneLineOrOnePerLine: false
|
||||||
|
ConstructorInitializerIndentWidth: 4
|
||||||
|
ContinuationIndentWidth: 4
|
||||||
|
Cpp11BracedListStyle: true
|
||||||
|
DerivePointerAlignment: false
|
||||||
|
DisableFormat: false
|
||||||
|
ExperimentalAutoDetectBinPacking: false
|
||||||
|
ForEachMacros: [ foreach, Q_FOREACH, BOOST_FOREACH ]
|
||||||
|
IncludeCategories:
|
||||||
|
- Regex: '^"(llvm|llvm-c|clang|clang-c)/'
|
||||||
|
Priority: 2
|
||||||
|
- Regex: '^(<|"(gtest|isl|json)/)'
|
||||||
|
Priority: 3
|
||||||
|
- Regex: '.*'
|
||||||
|
Priority: 1
|
||||||
|
IndentCaseLabels: false
|
||||||
|
IndentWidth: 4
|
||||||
|
IndentWrappedFunctionNames: false
|
||||||
|
KeepEmptyLinesAtTheStartOfBlocks: true
|
||||||
|
MacroBlockBegin: ''
|
||||||
|
MacroBlockEnd: ''
|
||||||
|
MaxEmptyLinesToKeep: 1
|
||||||
|
NamespaceIndentation: All
|
||||||
|
ObjCBlockIndentWidth: 4
|
||||||
|
ObjCSpaceAfterProperty: false
|
||||||
|
ObjCSpaceBeforeProtocolList: true
|
||||||
|
PenaltyBreakBeforeFirstCallParameter: 19
|
||||||
|
PenaltyBreakComment: 300
|
||||||
|
PenaltyBreakFirstLessLess: 120
|
||||||
|
PenaltyBreakString: 1000
|
||||||
|
PenaltyExcessCharacter: 1000000
|
||||||
|
PenaltyReturnTypeOnItsOwnLine: 60
|
||||||
|
PointerAlignment: Left
|
||||||
|
ReflowComments: true
|
||||||
|
SortIncludes: true
|
||||||
|
SpaceAfterCStyleCast: false
|
||||||
|
SpaceBeforeAssignmentOperators: true
|
||||||
|
SpaceBeforeParens: ControlStatements
|
||||||
|
SpaceInEmptyParentheses: false
|
||||||
|
SpacesBeforeTrailingComments: 1
|
||||||
|
SpacesInAngles: false
|
||||||
|
SpacesInContainerLiterals: true
|
||||||
|
SpacesInCStyleCastParentheses: false
|
||||||
|
SpacesInParentheses: false
|
||||||
|
SpacesInSquareBrackets: false
|
||||||
|
Standard: Cpp11
|
||||||
|
TabWidth: 4
|
||||||
|
UseTab: Never
|
||||||
|
...
|
||||||
|
|
@ -37,6 +37,7 @@ option(WITH_GUI_TESTS "Enable building of GUI tests" OFF)
|
|||||||
option(WITH_DEV_BUILD "Use only for development. Disables/warns about deprecated methods." OFF)
|
option(WITH_DEV_BUILD "Use only for development. Disables/warns about deprecated methods." OFF)
|
||||||
option(WITH_ASAN "Enable address sanitizer checks (Linux only)" OFF)
|
option(WITH_ASAN "Enable address sanitizer checks (Linux only)" OFF)
|
||||||
option(WITH_COVERAGE "Use to build with coverage tests (GCC only)." OFF)
|
option(WITH_COVERAGE "Use to build with coverage tests (GCC only)." OFF)
|
||||||
|
option(WITH_APP_BUNDLE "Enable Application Bundle for OS X" ON)
|
||||||
|
|
||||||
option(WITH_XC_AUTOTYPE "Include Auto-Type." ON)
|
option(WITH_XC_AUTOTYPE "Include Auto-Type." ON)
|
||||||
option(WITH_XC_HTTP "Include KeePassHTTP and Custom Icon Downloads." OFF)
|
option(WITH_XC_HTTP "Include KeePassHTTP and Custom Icon Downloads." OFF)
|
||||||
@ -77,6 +78,10 @@ endmacro(add_gcc_compiler_flags)
|
|||||||
|
|
||||||
add_definitions(-DQT_NO_EXCEPTIONS -DQT_STRICT_ITERATORS -DQT_NO_CAST_TO_ASCII)
|
add_definitions(-DQT_NO_EXCEPTIONS -DQT_STRICT_ITERATORS -DQT_NO_CAST_TO_ASCII)
|
||||||
|
|
||||||
|
if(WITH_APP_BUNDLE)
|
||||||
|
add_definitions(-DWITH_APP_BUNDLE)
|
||||||
|
endif()
|
||||||
|
|
||||||
add_gcc_compiler_flags("-fno-common")
|
add_gcc_compiler_flags("-fno-common")
|
||||||
add_gcc_compiler_flags("-Wall -Wextra -Wundef -Wpointer-arith -Wno-long-long")
|
add_gcc_compiler_flags("-Wall -Wextra -Wundef -Wpointer-arith -Wno-long-long")
|
||||||
add_gcc_compiler_flags("-Wformat=2 -Wmissing-format-attribute")
|
add_gcc_compiler_flags("-Wformat=2 -Wmissing-format-attribute")
|
||||||
@ -164,13 +169,13 @@ if(MINGW)
|
|||||||
endif()
|
endif()
|
||||||
endif()
|
endif()
|
||||||
|
|
||||||
if(APPLE OR MINGW)
|
if(APPLE AND WITH_APP_BUNDLE OR MINGW)
|
||||||
set(PROGNAME KeePassXC)
|
set(PROGNAME KeePassXC)
|
||||||
else()
|
else()
|
||||||
set(PROGNAME keepassxc)
|
set(PROGNAME keepassxc)
|
||||||
endif()
|
endif()
|
||||||
|
|
||||||
if(APPLE AND "${CMAKE_INSTALL_PREFIX}" STREQUAL "/usr/local")
|
if(APPLE AND WITH_APP_BUNDLE AND "${CMAKE_INSTALL_PREFIX}" STREQUAL "/usr/local")
|
||||||
set(CMAKE_INSTALL_PREFIX "/Applications")
|
set(CMAKE_INSTALL_PREFIX "/Applications")
|
||||||
endif()
|
endif()
|
||||||
|
|
||||||
@ -179,7 +184,7 @@ if(MINGW)
|
|||||||
set(BIN_INSTALL_DIR ".")
|
set(BIN_INSTALL_DIR ".")
|
||||||
set(PLUGIN_INSTALL_DIR ".")
|
set(PLUGIN_INSTALL_DIR ".")
|
||||||
set(DATA_INSTALL_DIR "share")
|
set(DATA_INSTALL_DIR "share")
|
||||||
elseif(APPLE)
|
elseif(APPLE AND WITH_APP_BUNDLE)
|
||||||
set(CLI_INSTALL_DIR "/usr/local/bin")
|
set(CLI_INSTALL_DIR "/usr/local/bin")
|
||||||
set(BIN_INSTALL_DIR ".")
|
set(BIN_INSTALL_DIR ".")
|
||||||
set(PLUGIN_INSTALL_DIR "${PROGNAME}.app/Contents/PlugIns")
|
set(PLUGIN_INSTALL_DIR "${PROGNAME}.app/Contents/PlugIns")
|
||||||
|
2
COPYING
@ -41,6 +41,8 @@ Files: share/icons/application/*/apps/keepassxc.png
|
|||||||
share/icons/application/scalable/apps/keepassxc-dark.svgz
|
share/icons/application/scalable/apps/keepassxc-dark.svgz
|
||||||
share/icons/application/*/apps/keepassxc-locked.png
|
share/icons/application/*/apps/keepassxc-locked.png
|
||||||
share/icons/application/scalable/apps/keepassxc-locked.svgz
|
share/icons/application/scalable/apps/keepassxc-locked.svgz
|
||||||
|
share/icons/application/*/apps/keepassxc-unlocked.png
|
||||||
|
share/icons/application/scalable/apps/keepassxc-unlocked.svgz
|
||||||
share/icons/application/*/mimetypes/application-x-keepassxc.png
|
share/icons/application/*/mimetypes/application-x-keepassxc.png
|
||||||
share/icons/application/scalable/mimetypes/application-x-keepassxc.svgz
|
share/icons/application/scalable/mimetypes/application-x-keepassxc.svgz
|
||||||
Copyright: 2016, Lorenzo Stella <lorenzo.stl@gmail.com>
|
Copyright: 2016, Lorenzo Stella <lorenzo.stl@gmail.com>
|
||||||
|
@ -27,7 +27,7 @@ Pre-compiled binaries can be found on the [downloads page](https://keepassxc.org
|
|||||||
|
|
||||||
### Building KeePassXC
|
### Building KeePassXC
|
||||||
|
|
||||||
*More detailed instructions are available in the INSTALL file or on the [Wiki page](https://github.com/keepassxreboot/keepassx/wiki/Install-Instruction-from-Source).*
|
*More detailed instructions are available in the INSTALL file or on the [Wiki page](https://github.com/keepassxreboot/keepassxc/wiki/Building-KeePassXC).*
|
||||||
|
|
||||||
First, you must download the KeePassXC [source tarball](https://keepassxc.org/download#source) or check out the latest version from our [Git repository](https://github.com/keepassxreboot/keepassxc).
|
First, you must download the KeePassXC [source tarball](https://keepassxc.org/download#source) or check out the latest version from our [Git repository](https://github.com/keepassxreboot/keepassxc).
|
||||||
|
|
||||||
|
@ -89,6 +89,22 @@ add_custom_target(icons
|
|||||||
COMMAND inkscape -z -w 256 -h 256
|
COMMAND inkscape -z -w 256 -h 256
|
||||||
icons/application/scalable/apps/keepassxc-locked.svgz -e icons/application/256x256/apps/keepassxc-locked.png
|
icons/application/scalable/apps/keepassxc-locked.svgz -e icons/application/256x256/apps/keepassxc-locked.png
|
||||||
|
|
||||||
|
# SVGZ to PNGs for KeePassXC
|
||||||
|
COMMAND inkscape -z -w 16 -h 16
|
||||||
|
icons/application/scalable/apps/keepassxc-unlocked.svgz -e icons/application/16x16/apps/keepassxc-unlocked.png
|
||||||
|
COMMAND inkscape -z -w 24 -h 24
|
||||||
|
icons/application/scalable/apps/keepassxc-unlocked.svgz -e icons/application/24x24/apps/keepassxc-unlocked.png
|
||||||
|
COMMAND inkscape -z -w 32 -h 32
|
||||||
|
icons/application/scalable/apps/keepassxc-unlocked.svgz -e icons/application/32x32/apps/keepassxc-unlocked.png
|
||||||
|
COMMAND inkscape -z -w 48 -h 48
|
||||||
|
icons/application/scalable/apps/keepassxc-unlocked.svgz -e icons/application/48x48/apps/keepassxc-unlocked.png
|
||||||
|
COMMAND inkscape -z -w 64 -h 64
|
||||||
|
icons/application/scalable/apps/keepassxc-unlocked.svgz -e icons/application/64x64/apps/keepassxc-unlocked.png
|
||||||
|
COMMAND inkscape -z -w 128 -h 128
|
||||||
|
icons/application/scalable/apps/keepassxc-unlocked.svgz -e icons/application/128x128/apps/keepassxc-unlocked.png
|
||||||
|
COMMAND inkscape -z -w 256 -h 256
|
||||||
|
icons/application/scalable/apps/keepassxc-unlocked.svgz -e icons/application/256x256/apps/keepassxc-unlocked.png
|
||||||
|
|
||||||
# SVGZ to PNGs for KeePassXC MIME-Type
|
# SVGZ to PNGs for KeePassXC MIME-Type
|
||||||
COMMAND inkscape -z -w 16 -h 16
|
COMMAND inkscape -z -w 16 -h 16
|
||||||
icons/application/scalable/mimetypes/application-x-keepassxc.svgz -e icons/application/16x16/mimetypes/application-x-keepassxc.png
|
icons/application/scalable/mimetypes/application-x-keepassxc.svgz -e icons/application/16x16/mimetypes/application-x-keepassxc.png
|
||||||
|
BIN
share/icons/application/128x128/apps/keepassxc-unlocked.png
Normal file
After Width: | Height: | Size: 11 KiB |
BIN
share/icons/application/16x16/apps/keepassxc-unlocked.png
Normal file
After Width: | Height: | Size: 880 B |
BIN
share/icons/application/24x24/apps/keepassxc-unlocked.png
Normal file
After Width: | Height: | Size: 1.4 KiB |
BIN
share/icons/application/256x256/apps/keepassxc-unlocked.png
Normal file
After Width: | Height: | Size: 23 KiB |
BIN
share/icons/application/32x32/apps/keepassxc-unlocked.png
Normal file
After Width: | Height: | Size: 2.0 KiB |
BIN
share/icons/application/48x48/apps/keepassxc-unlocked.png
Normal file
After Width: | Height: | Size: 3.2 KiB |
BIN
share/icons/application/64x64/apps/keepassxc-unlocked.png
Normal file
After Width: | Height: | Size: 4.7 KiB |
BIN
share/icons/application/scalable/apps/keepassxc-unlocked.svgz
Normal file
@ -48,6 +48,10 @@ set(keepassx_SOURCES
|
|||||||
core/PasswordGenerator.cpp
|
core/PasswordGenerator.cpp
|
||||||
core/PassphraseGenerator.cpp
|
core/PassphraseGenerator.cpp
|
||||||
core/SignalMultiplexer.cpp
|
core/SignalMultiplexer.cpp
|
||||||
|
core/ScreenLockListener.cpp
|
||||||
|
core/ScreenLockListener.h
|
||||||
|
core/ScreenLockListenerPrivate.h
|
||||||
|
core/ScreenLockListenerPrivate.cpp
|
||||||
core/TimeDelta.cpp
|
core/TimeDelta.cpp
|
||||||
core/TimeInfo.cpp
|
core/TimeInfo.cpp
|
||||||
core/ToDbExporter.cpp
|
core/ToDbExporter.cpp
|
||||||
@ -136,6 +140,24 @@ set(keepassx_SOURCES
|
|||||||
totp/totp.h
|
totp/totp.h
|
||||||
totp/totp.cpp
|
totp/totp.cpp
|
||||||
)
|
)
|
||||||
|
if(APPLE)
|
||||||
|
set(keepassx_SOURCES ${keepassx_SOURCES}
|
||||||
|
core/ScreenLockListenerMac.h
|
||||||
|
core/ScreenLockListenerMac.cpp
|
||||||
|
)
|
||||||
|
endif()
|
||||||
|
if(${CMAKE_SYSTEM_NAME} STREQUAL "Linux")
|
||||||
|
set(keepassx_SOURCES ${keepassx_SOURCES}
|
||||||
|
core/ScreenLockListenerDBus.h
|
||||||
|
core/ScreenLockListenerDBus.cpp
|
||||||
|
)
|
||||||
|
endif()
|
||||||
|
if(MINGW)
|
||||||
|
set(keepassx_SOURCES ${keepassx_SOURCES}
|
||||||
|
core/ScreenLockListenerWin.h
|
||||||
|
core/ScreenLockListenerWin.cpp
|
||||||
|
)
|
||||||
|
endif()
|
||||||
|
|
||||||
set(keepassx_SOURCES_MAINEXE
|
set(keepassx_SOURCES_MAINEXE
|
||||||
main.cpp
|
main.cpp
|
||||||
@ -200,9 +222,16 @@ target_link_libraries(keepassx_core
|
|||||||
${GCRYPT_LIBRARIES}
|
${GCRYPT_LIBRARIES}
|
||||||
${GPGERROR_LIBRARIES}
|
${GPGERROR_LIBRARIES}
|
||||||
${ZLIB_LIBRARIES})
|
${ZLIB_LIBRARIES})
|
||||||
|
|
||||||
|
if(APPLE)
|
||||||
|
target_link_libraries(keepassx_core "-framework Foundation")
|
||||||
|
endif()
|
||||||
if (UNIX AND NOT APPLE)
|
if (UNIX AND NOT APPLE)
|
||||||
target_link_libraries(keepassx_core Qt5::DBus)
|
target_link_libraries(keepassx_core Qt5::DBus)
|
||||||
endif()
|
endif()
|
||||||
|
if(MINGW)
|
||||||
|
target_link_libraries(keepassx_core Wtsapi32.lib)
|
||||||
|
endif()
|
||||||
|
|
||||||
if(MINGW)
|
if(MINGW)
|
||||||
include(GenerateProductVersion)
|
include(GenerateProductVersion)
|
||||||
@ -216,14 +245,15 @@ if(MINGW)
|
|||||||
)
|
)
|
||||||
endif()
|
endif()
|
||||||
|
|
||||||
add_executable(${PROGNAME} WIN32 MACOSX_BUNDLE ${keepassx_SOURCES_MAINEXE} ${WIN32_ProductVersionFiles})
|
add_executable(${PROGNAME} WIN32 ${keepassx_SOURCES_MAINEXE} ${WIN32_ProductVersionFiles})
|
||||||
target_link_libraries(${PROGNAME} keepassx_core)
|
target_link_libraries(${PROGNAME} keepassx_core)
|
||||||
|
|
||||||
set_target_properties(${PROGNAME} PROPERTIES ENABLE_EXPORTS ON)
|
set_target_properties(${PROGNAME} PROPERTIES ENABLE_EXPORTS ON)
|
||||||
|
|
||||||
if(APPLE)
|
if(APPLE AND WITH_APP_BUNDLE)
|
||||||
configure_file(${CMAKE_SOURCE_DIR}/share/macosx/Info.plist.cmake ${CMAKE_CURRENT_BINARY_DIR}/Info.plist)
|
configure_file(${CMAKE_SOURCE_DIR}/share/macosx/Info.plist.cmake ${CMAKE_CURRENT_BINARY_DIR}/Info.plist)
|
||||||
set_target_properties(${PROGNAME} PROPERTIES
|
set_target_properties(${PROGNAME} PROPERTIES
|
||||||
|
MACOSX_BUNDLE ON
|
||||||
MACOSX_BUNDLE_INFO_PLIST ${CMAKE_CURRENT_BINARY_DIR}/Info.plist)
|
MACOSX_BUNDLE_INFO_PLIST ${CMAKE_CURRENT_BINARY_DIR}/Info.plist)
|
||||||
endif()
|
endif()
|
||||||
|
|
||||||
@ -231,7 +261,7 @@ install(TARGETS ${PROGNAME}
|
|||||||
BUNDLE DESTINATION . COMPONENT Runtime
|
BUNDLE DESTINATION . COMPONENT Runtime
|
||||||
RUNTIME DESTINATION ${BIN_INSTALL_DIR} COMPONENT Runtime)
|
RUNTIME DESTINATION ${BIN_INSTALL_DIR} COMPONENT Runtime)
|
||||||
|
|
||||||
if(APPLE)
|
if(APPLE AND WITH_APP_BUNDLE)
|
||||||
if(QT_MAC_USE_COCOA AND EXISTS "${QT_LIBRARY_DIR}/Resources/qt_menu.nib")
|
if(QT_MAC_USE_COCOA AND EXISTS "${QT_LIBRARY_DIR}/Resources/qt_menu.nib")
|
||||||
install(DIRECTORY "${QT_LIBRARY_DIR}/Resources/qt_menu.nib"
|
install(DIRECTORY "${QT_LIBRARY_DIR}/Resources/qt_menu.nib"
|
||||||
DESTINATION "${DATA_INSTALL_DIR}")
|
DESTINATION "${DATA_INSTALL_DIR}")
|
||||||
|
@ -574,8 +574,9 @@ QString AutoType::autoTypeSequence(const Entry* entry, const QString& windowTitl
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
if (!match && config()->get("AutoTypeEntryTitleMatch").toBool() && !entry->resolvePlaceholder(entry->title()).isEmpty()
|
if (!match && config()->get("AutoTypeEntryTitleMatch").toBool()
|
||||||
&& windowTitle.contains(entry->resolvePlaceholder(entry->title()), Qt::CaseInsensitive)) {
|
&& (windowMatchesTitle(windowTitle, entry->resolvePlaceholder(entry->title()))
|
||||||
|
|| windowMatchesUrl(windowTitle, entry->resolvePlaceholder(entry->url())))) {
|
||||||
sequence = entry->defaultAutoTypeSequence();
|
sequence = entry->defaultAutoTypeSequence();
|
||||||
match = true;
|
match = true;
|
||||||
}
|
}
|
||||||
@ -631,3 +632,22 @@ bool AutoType::windowMatches(const QString& windowTitle, const QString& windowPa
|
|||||||
return WildcardMatcher(windowTitle).match(windowPattern);
|
return WildcardMatcher(windowTitle).match(windowPattern);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
bool AutoType::windowMatchesTitle(const QString& windowTitle, const QString& resolvedTitle)
|
||||||
|
{
|
||||||
|
return !resolvedTitle.isEmpty() && windowTitle.contains(resolvedTitle, Qt::CaseInsensitive);
|
||||||
|
}
|
||||||
|
|
||||||
|
bool AutoType::windowMatchesUrl(const QString& windowTitle, const QString& resolvedUrl)
|
||||||
|
{
|
||||||
|
if (!resolvedUrl.isEmpty() && windowTitle.contains(resolvedUrl, Qt::CaseInsensitive)) {
|
||||||
|
return true;
|
||||||
|
}
|
||||||
|
|
||||||
|
QUrl url(resolvedUrl);
|
||||||
|
if (url.isValid() && !url.host().isEmpty()) {
|
||||||
|
return windowTitle.contains(url.host(), Qt::CaseInsensitive);
|
||||||
|
}
|
||||||
|
|
||||||
|
return false;
|
||||||
|
}
|
||||||
|
@ -66,6 +66,8 @@ private:
|
|||||||
bool parseActions(const QString& sequence, const Entry* entry, QList<AutoTypeAction*>& actions);
|
bool parseActions(const QString& sequence, const Entry* entry, QList<AutoTypeAction*>& actions);
|
||||||
QList<AutoTypeAction*> createActionFromTemplate(const QString& tmpl, const Entry* entry);
|
QList<AutoTypeAction*> createActionFromTemplate(const QString& tmpl, const Entry* entry);
|
||||||
QString autoTypeSequence(const Entry* entry, const QString& windowTitle = QString());
|
QString autoTypeSequence(const Entry* entry, const QString& windowTitle = QString());
|
||||||
|
bool windowMatchesTitle(const QString& windowTitle, const QString& resolvedTitle);
|
||||||
|
bool windowMatchesUrl(const QString& windowTitle, const QString& resolvedUrl);
|
||||||
bool windowMatches(const QString& windowTitle, const QString& windowPattern);
|
bool windowMatches(const QString& windowTitle, const QString& windowPattern);
|
||||||
|
|
||||||
bool m_inAutoType;
|
bool m_inAutoType;
|
||||||
|
@ -12,9 +12,15 @@ target_link_libraries(keepassx-autotype-cocoa ${PROGNAME} Qt5::Core Qt5::Widgets
|
|||||||
if(NOT DEFINED QT_BINARY_DIR)
|
if(NOT DEFINED QT_BINARY_DIR)
|
||||||
set(QT_BINARY_DIR "/usr/local/opt/qt5/bin" CACHE PATH "QT binary folder")
|
set(QT_BINARY_DIR "/usr/local/opt/qt5/bin" CACHE PATH "QT binary folder")
|
||||||
endif()
|
endif()
|
||||||
|
if(WITH_APP_BUNDLE)
|
||||||
add_custom_command(TARGET keepassx-autotype-cocoa
|
add_custom_command(TARGET keepassx-autotype-cocoa
|
||||||
POST_BUILD
|
POST_BUILD
|
||||||
COMMAND ${CMAKE_COMMAND} -E copy ${CMAKE_CURRENT_BINARY_DIR}/libkeepassx-autotype-cocoa.so ${PLUGIN_INSTALL_DIR}
|
COMMAND ${CMAKE_COMMAND} -E copy ${CMAKE_CURRENT_BINARY_DIR}/libkeepassx-autotype-cocoa.so ${PLUGIN_INSTALL_DIR}
|
||||||
COMMAND ${QT_BINARY_DIR}/macdeployqt ${PROGNAME}.app -executable=${PLUGIN_INSTALL_DIR}/libkeepassx-autotype-cocoa.so -no-plugins
|
COMMAND ${QT_BINARY_DIR}/macdeployqt ${PROGNAME}.app -executable=${PLUGIN_INSTALL_DIR}/libkeepassx-autotype-cocoa.so -no-plugins
|
||||||
WORKING_DIRECTORY ${CMAKE_BINARY_DIR}/src
|
WORKING_DIRECTORY ${CMAKE_BINARY_DIR}/src
|
||||||
COMMENT "Deploying autotype plugin")
|
COMMENT "Deploying autotype plugin")
|
||||||
|
else()
|
||||||
|
install(TARGETS keepassx-autotype-cocoa
|
||||||
|
BUNDLE DESTINATION . COMPONENT Runtime
|
||||||
|
LIBRARY DESTINATION ${PLUGIN_INSTALL_DIR} COMPONENT Runtime)
|
||||||
|
endif()
|
||||||
|
@ -119,6 +119,7 @@ void Config::init(const QString& fileName)
|
|||||||
m_defaults.insert("security/lockdatabaseidle", false);
|
m_defaults.insert("security/lockdatabaseidle", false);
|
||||||
m_defaults.insert("security/lockdatabaseidlesec", 240);
|
m_defaults.insert("security/lockdatabaseidlesec", 240);
|
||||||
m_defaults.insert("security/lockdatabaseminimize", false);
|
m_defaults.insert("security/lockdatabaseminimize", false);
|
||||||
|
m_defaults.insert("security/lockdatabasescreenlock", true);
|
||||||
m_defaults.insert("security/passwordsrepeat", false);
|
m_defaults.insert("security/passwordsrepeat", false);
|
||||||
m_defaults.insert("security/passwordscleartext", false);
|
m_defaults.insert("security/passwordscleartext", false);
|
||||||
m_defaults.insert("security/autotypeask", true);
|
m_defaults.insert("security/autotypeask", true);
|
||||||
|
@ -49,7 +49,7 @@ QString FilePath::pluginPath(const QString& name)
|
|||||||
// for TestAutoType
|
// for TestAutoType
|
||||||
pluginPaths << QCoreApplication::applicationDirPath() + "/../src/autotype/test";
|
pluginPaths << QCoreApplication::applicationDirPath() + "/../src/autotype/test";
|
||||||
|
|
||||||
#if defined(Q_OS_MAC)
|
#if defined(Q_OS_MAC) && defined(WITH_APP_BUNDLE)
|
||||||
pluginPaths << QCoreApplication::applicationDirPath() + "/../PlugIns";
|
pluginPaths << QCoreApplication::applicationDirPath() + "/../PlugIns";
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
@ -101,7 +101,7 @@ QIcon FilePath::trayIconLocked()
|
|||||||
|
|
||||||
QIcon FilePath::trayIconUnlocked()
|
QIcon FilePath::trayIconUnlocked()
|
||||||
{
|
{
|
||||||
return applicationIcon();
|
return icon("apps", "keepassxc-unlocked");
|
||||||
}
|
}
|
||||||
|
|
||||||
QIcon FilePath::icon(const QString& category, const QString& name, bool fromTheme)
|
QIcon FilePath::icon(const QString& category, const QString& name, bool fromTheme)
|
||||||
@ -195,7 +195,7 @@ FilePath::FilePath()
|
|||||||
else if (testSetDir(QString(KEEPASSX_SOURCE_DIR) + "/share")) {
|
else if (testSetDir(QString(KEEPASSX_SOURCE_DIR) + "/share")) {
|
||||||
}
|
}
|
||||||
#endif
|
#endif
|
||||||
#if defined(Q_OS_UNIX) && !defined(Q_OS_MAC)
|
#if defined(Q_OS_UNIX) && !(defined(Q_OS_MAC) && defined(WITH_APP_BUNDLE))
|
||||||
else if (isDataDirAbsolute && testSetDir(KEEPASSX_DATA_DIR)) {
|
else if (isDataDirAbsolute && testSetDir(KEEPASSX_DATA_DIR)) {
|
||||||
}
|
}
|
||||||
else if (!isDataDirAbsolute && testSetDir(QString("%1/../%2").arg(appDirPath, KEEPASSX_DATA_DIR))) {
|
else if (!isDataDirAbsolute && testSetDir(QString("%1/../%2").arg(appDirPath, KEEPASSX_DATA_DIR))) {
|
||||||
@ -203,7 +203,7 @@ FilePath::FilePath()
|
|||||||
else if (!isDataDirAbsolute && testSetDir(QString("%1/%2").arg(KEEPASSX_PREFIX_DIR, KEEPASSX_DATA_DIR))) {
|
else if (!isDataDirAbsolute && testSetDir(QString("%1/%2").arg(KEEPASSX_PREFIX_DIR, KEEPASSX_DATA_DIR))) {
|
||||||
}
|
}
|
||||||
#endif
|
#endif
|
||||||
#ifdef Q_OS_MAC
|
#if defined(Q_OS_MAC) && defined(WITH_APP_BUNDLE)
|
||||||
else if (testSetDir(appDirPath + "/../Resources")) {
|
else if (testSetDir(appDirPath + "/../Resources")) {
|
||||||
}
|
}
|
||||||
#endif
|
#endif
|
||||||
|
28
src/core/ScreenLockListener.cpp
Normal file
@ -0,0 +1,28 @@
|
|||||||
|
/*
|
||||||
|
* Copyright (C) 2017 KeePassXC Team <team@keepassxc.org>
|
||||||
|
*
|
||||||
|
* 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 "ScreenLockListener.h"
|
||||||
|
#include "ScreenLockListenerPrivate.h"
|
||||||
|
|
||||||
|
ScreenLockListener::ScreenLockListener(QWidget* parent):
|
||||||
|
QObject(parent){
|
||||||
|
m_listener = ScreenLockListenerPrivate::instance(parent);
|
||||||
|
connect(m_listener,SIGNAL(screenLocked()), this,SIGNAL(screenLocked()));
|
||||||
|
}
|
||||||
|
|
||||||
|
ScreenLockListener::~ScreenLockListener(){
|
||||||
|
}
|
38
src/core/ScreenLockListener.h
Normal file
@ -0,0 +1,38 @@
|
|||||||
|
/*
|
||||||
|
* Copyright (C) 2017 KeePassXC Team <team@keepassxc.org>
|
||||||
|
*
|
||||||
|
* 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 SCREENLOCKLISTENER_H
|
||||||
|
#define SCREENLOCKLISTENER_H
|
||||||
|
#include <QWidget>
|
||||||
|
|
||||||
|
class ScreenLockListenerPrivate;
|
||||||
|
|
||||||
|
class ScreenLockListener : public QObject {
|
||||||
|
Q_OBJECT
|
||||||
|
|
||||||
|
public:
|
||||||
|
ScreenLockListener(QWidget* parent = nullptr);
|
||||||
|
~ScreenLockListener();
|
||||||
|
|
||||||
|
signals:
|
||||||
|
void screenLocked();
|
||||||
|
|
||||||
|
private:
|
||||||
|
ScreenLockListenerPrivate* m_listener;
|
||||||
|
};
|
||||||
|
|
||||||
|
#endif // SCREENLOCKLISTENER_H
|
87
src/core/ScreenLockListenerDBus.cpp
Normal file
@ -0,0 +1,87 @@
|
|||||||
|
/*
|
||||||
|
* Copyright (C) 2017 KeePassXC Team <team@keepassxc.org>
|
||||||
|
*
|
||||||
|
* 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 "ScreenLockListenerDBus.h"
|
||||||
|
|
||||||
|
#include <QDBusConnection>
|
||||||
|
#include <QDBusInterface>
|
||||||
|
#include <QDBusReply>
|
||||||
|
|
||||||
|
ScreenLockListenerDBus::ScreenLockListenerDBus(QWidget *parent):
|
||||||
|
ScreenLockListenerPrivate(parent)
|
||||||
|
{
|
||||||
|
QDBusConnection sessionBus = QDBusConnection::sessionBus();
|
||||||
|
QDBusConnection systemBus = QDBusConnection::systemBus();
|
||||||
|
|
||||||
|
sessionBus.connect(
|
||||||
|
"org.freedesktop.ScreenSaver", // service
|
||||||
|
"/org/freedesktop/ScreenSaver", // path
|
||||||
|
"org.freedesktop.ScreenSaver", // interface
|
||||||
|
"ActiveChanged", // signal name
|
||||||
|
this, //receiver
|
||||||
|
SLOT(freedesktopScreenSaver(bool)));
|
||||||
|
|
||||||
|
sessionBus.connect(
|
||||||
|
"org.gnome.SessionManager", // service
|
||||||
|
"/org/gnome/SessionManager/Presence", // path
|
||||||
|
"org.gnome.SessionManager.Presence", // interface
|
||||||
|
"StatusChanged", // signal name
|
||||||
|
this, //receiver
|
||||||
|
SLOT(gnomeSessionStatusChanged(uint)));
|
||||||
|
|
||||||
|
systemBus.connect(
|
||||||
|
"org.freedesktop.login1", // service
|
||||||
|
"/org/freedesktop/login1", // path
|
||||||
|
"org.freedesktop.login1.Manager", // interface
|
||||||
|
"PrepareForSleep", // signal name
|
||||||
|
this, //receiver
|
||||||
|
SLOT(logindPrepareForSleep(bool)));
|
||||||
|
|
||||||
|
sessionBus.connect(
|
||||||
|
"com.canonical.Unity", // service
|
||||||
|
"/com/canonical/Unity/Session", // path
|
||||||
|
"com.canonical.Unity.Session", // interface
|
||||||
|
"Locked", // signal name
|
||||||
|
this, //receiver
|
||||||
|
SLOT(unityLocked()));
|
||||||
|
}
|
||||||
|
|
||||||
|
void ScreenLockListenerDBus::gnomeSessionStatusChanged(uint status)
|
||||||
|
{
|
||||||
|
if (status != 0) {
|
||||||
|
emit screenLocked();
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
void ScreenLockListenerDBus::logindPrepareForSleep(bool beforeSleep)
|
||||||
|
{
|
||||||
|
if (beforeSleep) {
|
||||||
|
emit screenLocked();
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
void ScreenLockListenerDBus::unityLocked()
|
||||||
|
{
|
||||||
|
emit screenLocked();
|
||||||
|
}
|
||||||
|
|
||||||
|
void ScreenLockListenerDBus::freedesktopScreenSaver(bool status)
|
||||||
|
{
|
||||||
|
if (status) {
|
||||||
|
emit screenLocked();
|
||||||
|
}
|
||||||
|
}
|
37
src/core/ScreenLockListenerDBus.h
Normal file
@ -0,0 +1,37 @@
|
|||||||
|
/*
|
||||||
|
* Copyright (C) 2017 KeePassXC Team <team@keepassxc.org>
|
||||||
|
*
|
||||||
|
* 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 SCREENLOCKLISTENERDBUS_H
|
||||||
|
#define SCREENLOCKLISTENERDBUS_H
|
||||||
|
#include <QObject>
|
||||||
|
#include <QWidget>
|
||||||
|
#include "ScreenLockListenerPrivate.h"
|
||||||
|
|
||||||
|
class ScreenLockListenerDBus : public ScreenLockListenerPrivate
|
||||||
|
{
|
||||||
|
Q_OBJECT
|
||||||
|
public:
|
||||||
|
explicit ScreenLockListenerDBus(QWidget *parent = 0);
|
||||||
|
|
||||||
|
private slots:
|
||||||
|
void gnomeSessionStatusChanged(uint status);
|
||||||
|
void logindPrepareForSleep(bool beforeSleep);
|
||||||
|
void unityLocked();
|
||||||
|
void freedesktopScreenSaver(bool status);
|
||||||
|
};
|
||||||
|
|
||||||
|
#endif // SCREENLOCKLISTENERDBUS_H
|
63
src/core/ScreenLockListenerMac.cpp
Normal file
@ -0,0 +1,63 @@
|
|||||||
|
/*
|
||||||
|
* Copyright (C) 2017 KeePassXC Team <team@keepassxc.org>
|
||||||
|
*
|
||||||
|
* 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 "ScreenLockListenerMac.h"
|
||||||
|
|
||||||
|
#include <QMutexLocker>
|
||||||
|
#include <CoreFoundation/CoreFoundation.h>
|
||||||
|
|
||||||
|
ScreenLockListenerMac* ScreenLockListenerMac::instance()
|
||||||
|
{
|
||||||
|
static QMutex mutex;
|
||||||
|
QMutexLocker lock(&mutex);
|
||||||
|
|
||||||
|
static ScreenLockListenerMac* m_ptr = nullptr;
|
||||||
|
if (m_ptr == nullptr) {
|
||||||
|
m_ptr = new ScreenLockListenerMac();
|
||||||
|
}
|
||||||
|
return m_ptr;
|
||||||
|
}
|
||||||
|
|
||||||
|
void ScreenLockListenerMac::notificationCenterCallBack(CFNotificationCenterRef, void*,
|
||||||
|
CFStringRef, const void*,
|
||||||
|
CFDictionaryRef)
|
||||||
|
{
|
||||||
|
instance()->onSignalReception();
|
||||||
|
}
|
||||||
|
|
||||||
|
ScreenLockListenerMac::ScreenLockListenerMac(QWidget* parent)
|
||||||
|
: ScreenLockListenerPrivate(parent)
|
||||||
|
{
|
||||||
|
CFNotificationCenterRef distCenter;
|
||||||
|
CFStringRef screenIsLockedSignal = CFSTR("com.apple.screenIsLocked");
|
||||||
|
distCenter = CFNotificationCenterGetDistributedCenter();
|
||||||
|
if (nullptr == distCenter) {
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
|
||||||
|
CFNotificationCenterAddObserver(distCenter,
|
||||||
|
this,
|
||||||
|
&ScreenLockListenerMac::notificationCenterCallBack,
|
||||||
|
screenIsLockedSignal,
|
||||||
|
nullptr,
|
||||||
|
CFNotificationSuspensionBehaviorDeliverImmediately);
|
||||||
|
}
|
||||||
|
|
||||||
|
void ScreenLockListenerMac::onSignalReception()
|
||||||
|
{
|
||||||
|
emit screenLocked();
|
||||||
|
}
|
42
src/core/ScreenLockListenerMac.h
Normal file
@ -0,0 +1,42 @@
|
|||||||
|
/*
|
||||||
|
* Copyright (C) 2017 KeePassXC Team <team@keepassxc.org>
|
||||||
|
*
|
||||||
|
* 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 SCREENLOCKLISTENERMAC_H
|
||||||
|
#define SCREENLOCKLISTENERMAC_H
|
||||||
|
#include <QObject>
|
||||||
|
#include <QWidget>
|
||||||
|
|
||||||
|
#include <CoreFoundation/CoreFoundation.h>
|
||||||
|
|
||||||
|
#include "ScreenLockListenerPrivate.h"
|
||||||
|
|
||||||
|
class ScreenLockListenerMac: public ScreenLockListenerPrivate {
|
||||||
|
Q_OBJECT
|
||||||
|
|
||||||
|
public:
|
||||||
|
static ScreenLockListenerMac* instance();
|
||||||
|
static void notificationCenterCallBack(CFNotificationCenterRef center, void* observer,
|
||||||
|
CFStringRef name, const void* object,
|
||||||
|
CFDictionaryRef userInfo);
|
||||||
|
|
||||||
|
private:
|
||||||
|
ScreenLockListenerMac(QWidget* parent = nullptr);
|
||||||
|
void onSignalReception();
|
||||||
|
|
||||||
|
};
|
||||||
|
|
||||||
|
#endif // SCREENLOCKLISTENERMAC_H
|
44
src/core/ScreenLockListenerPrivate.cpp
Normal file
@ -0,0 +1,44 @@
|
|||||||
|
/*
|
||||||
|
* Copyright (C) 2017 KeePassXC Team <team@keepassxc.org>
|
||||||
|
*
|
||||||
|
* 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 "ScreenLockListenerPrivate.h"
|
||||||
|
#if defined(Q_OS_OSX)
|
||||||
|
#include "ScreenLockListenerMac.h"
|
||||||
|
#endif
|
||||||
|
#if defined(Q_OS_LINUX)
|
||||||
|
#include "ScreenLockListenerDBus.h"
|
||||||
|
#endif
|
||||||
|
#if defined(Q_OS_WIN)
|
||||||
|
#include "ScreenLockListenerWin.h"
|
||||||
|
#endif
|
||||||
|
|
||||||
|
ScreenLockListenerPrivate::ScreenLockListenerPrivate(QWidget* parent)
|
||||||
|
: QObject(parent)
|
||||||
|
{
|
||||||
|
}
|
||||||
|
|
||||||
|
ScreenLockListenerPrivate* ScreenLockListenerPrivate::instance(QWidget* parent)
|
||||||
|
{
|
||||||
|
#if defined(Q_OS_OSX)
|
||||||
|
Q_UNUSED(parent);
|
||||||
|
return ScreenLockListenerMac::instance();
|
||||||
|
#elif defined(Q_OS_LINUX)
|
||||||
|
return new ScreenLockListenerDBus(parent);
|
||||||
|
#elif defined(Q_OS_WIN)
|
||||||
|
return new ScreenLockListenerWin(parent);
|
||||||
|
#endif
|
||||||
|
}
|
36
src/core/ScreenLockListenerPrivate.h
Normal file
@ -0,0 +1,36 @@
|
|||||||
|
/*
|
||||||
|
* Copyright (C) 2017 KeePassXC Team <team@keepassxc.org>
|
||||||
|
*
|
||||||
|
* 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 SCREENLOCKLISTENERPRIVATE_H
|
||||||
|
#define SCREENLOCKLISTENERPRIVATE_H
|
||||||
|
#include <QObject>
|
||||||
|
#include <QWidget>
|
||||||
|
|
||||||
|
class ScreenLockListenerPrivate : public QObject
|
||||||
|
{
|
||||||
|
Q_OBJECT
|
||||||
|
public:
|
||||||
|
static ScreenLockListenerPrivate* instance(QWidget* parent = 0);
|
||||||
|
|
||||||
|
protected:
|
||||||
|
ScreenLockListenerPrivate(QWidget* parent = 0);
|
||||||
|
|
||||||
|
signals:
|
||||||
|
void screenLocked();
|
||||||
|
};
|
||||||
|
|
||||||
|
#endif // SCREENLOCKLISTENERPRIVATE_H
|
91
src/core/ScreenLockListenerWin.cpp
Normal file
@ -0,0 +1,91 @@
|
|||||||
|
/*
|
||||||
|
* Copyright (C) 2017 KeePassXC Team <team@keepassxc.org>
|
||||||
|
*
|
||||||
|
* 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 "ScreenLockListenerWin.h"
|
||||||
|
#include <QApplication>
|
||||||
|
#include <windows.h>
|
||||||
|
#include <wtsapi32.h>
|
||||||
|
|
||||||
|
/*
|
||||||
|
* See https://msdn.microsoft.com/en-us/library/windows/desktop/aa373196(v=vs.85).aspx
|
||||||
|
* See https://msdn.microsoft.com/en-us/library/aa383841(v=vs.85).aspx
|
||||||
|
* See https://blogs.msdn.microsoft.com/oldnewthing/20060104-50/?p=32783
|
||||||
|
*/
|
||||||
|
ScreenLockListenerWin::ScreenLockListenerWin(QWidget* parent)
|
||||||
|
: ScreenLockListenerPrivate(parent)
|
||||||
|
, QAbstractNativeEventFilter()
|
||||||
|
{
|
||||||
|
Q_ASSERT(parent != nullptr);
|
||||||
|
// On windows, we need to register for platform specific messages and
|
||||||
|
// install a message handler for them
|
||||||
|
QCoreApplication::instance()->installNativeEventFilter(this);
|
||||||
|
|
||||||
|
// This call requests a notification from windows when a laptop is closed
|
||||||
|
HPOWERNOTIFY hPnotify = RegisterPowerSettingNotification(
|
||||||
|
reinterpret_cast<HWND>(parent->winId()),
|
||||||
|
&GUID_LIDSWITCH_STATE_CHANGE, DEVICE_NOTIFY_WINDOW_HANDLE);
|
||||||
|
m_powerNotificationHandle = reinterpret_cast<void*>(hPnotify);
|
||||||
|
|
||||||
|
// This call requests a notification for session changes
|
||||||
|
if (!WTSRegisterSessionNotification(
|
||||||
|
reinterpret_cast<HWND>(parent->winId()),
|
||||||
|
NOTIFY_FOR_THIS_SESSION)) {
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
ScreenLockListenerWin::~ScreenLockListenerWin()
|
||||||
|
{
|
||||||
|
HWND h= reinterpret_cast<HWND>(static_cast<QWidget*>(parent())->winId());
|
||||||
|
WTSUnRegisterSessionNotification(h);
|
||||||
|
|
||||||
|
if (m_powernotificationhandle) {
|
||||||
|
UnregisterPowerSettingNotification(reinterpret_cast<HPOWERNOTIFY>(m_powernotificationhandle));
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
bool ScreenLockListenerWin::nativeEventFilter(const QByteArray& eventType, void* message, long*)
|
||||||
|
{
|
||||||
|
if (eventType == "windows_generic_MSG" || eventType == "windows_dispatcher_MSG") {
|
||||||
|
MSG* m = static_cast<MSG*>(message);
|
||||||
|
if (m->message == WM_POWERBROADCAST) {
|
||||||
|
if (m->wParam == PBT_POWERSETTINGCHANGE) {
|
||||||
|
const POWERBROADCAST_SETTING* setting = reinterpret_cast<const POWERBROADCAST_SETTING*>(m->lParam);
|
||||||
|
if (setting != nullptr && setting->PowerSetting == GUID_LIDSWITCH_STATE_CHANGE) {
|
||||||
|
const DWORD* state = reinterpret_cast<const DWORD*>(&setting->Data);
|
||||||
|
if (*state == 0) {
|
||||||
|
emit screenLocked();
|
||||||
|
return true;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
} else if (m->wParam == PBT_APMSUSPEND) {
|
||||||
|
emit screenLocked();
|
||||||
|
return true;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
if (m->message == WM_WTSSESSION_CHANGE) {
|
||||||
|
if (m->wParam == WTS_CONSOLE_DISCONNECT) {
|
||||||
|
emit screenLocked();
|
||||||
|
return true;
|
||||||
|
}
|
||||||
|
if (m->wParam == WTS_SESSION_LOCK) {
|
||||||
|
emit screenLocked();
|
||||||
|
return true;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
return false;
|
||||||
|
}
|
38
src/core/ScreenLockListenerWin.h
Normal file
@ -0,0 +1,38 @@
|
|||||||
|
/*
|
||||||
|
* Copyright (C) 2017 KeePassXC Team <team@keepassxc.org>
|
||||||
|
*
|
||||||
|
* 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 SCREENLOCKLISTENERWIN_H
|
||||||
|
#define SCREENLOCKLISTENERWIN_H
|
||||||
|
#include <QObject>
|
||||||
|
#include <QWidget>
|
||||||
|
#include <QAbstractNativeEventFilter>
|
||||||
|
|
||||||
|
#include "ScreenLockListenerPrivate.h"
|
||||||
|
|
||||||
|
class ScreenLockListenerWin : public ScreenLockListenerPrivate, public QAbstractNativeEventFilter
|
||||||
|
{
|
||||||
|
Q_OBJECT
|
||||||
|
public:
|
||||||
|
explicit ScreenLockListenerWin(QWidget* parent = 0);
|
||||||
|
~ScreenLockListenerWin();
|
||||||
|
virtual bool nativeEventFilter(const QByteArray &eventType, void* message, long*) override;
|
||||||
|
|
||||||
|
private:
|
||||||
|
void* m_powerNotificationHandle ;
|
||||||
|
};
|
||||||
|
|
||||||
|
#endif // SCREENLOCKLISTENERWIN_H
|
@ -103,9 +103,9 @@ const QString MainWindow::BaseWindowTitle = "KeePassXC";
|
|||||||
MainWindow::MainWindow()
|
MainWindow::MainWindow()
|
||||||
: m_ui(new Ui::MainWindow())
|
: m_ui(new Ui::MainWindow())
|
||||||
, m_trayIcon(nullptr)
|
, m_trayIcon(nullptr)
|
||||||
|
, m_appExitCalled(false)
|
||||||
|
, m_appExiting(false)
|
||||||
{
|
{
|
||||||
appExitCalled = false;
|
|
||||||
|
|
||||||
m_ui->setupUi(this);
|
m_ui->setupUi(this);
|
||||||
|
|
||||||
// Setup the search widget in the toolbar
|
// Setup the search widget in the toolbar
|
||||||
@ -329,6 +329,9 @@ MainWindow::MainWindow()
|
|||||||
connect(m_ui->tabWidget, SIGNAL(messageTab(QString,MessageWidget::MessageType)), this, SLOT(displayTabMessage(QString, MessageWidget::MessageType)));
|
connect(m_ui->tabWidget, SIGNAL(messageTab(QString,MessageWidget::MessageType)), this, SLOT(displayTabMessage(QString, MessageWidget::MessageType)));
|
||||||
connect(m_ui->tabWidget, SIGNAL(messageDismissTab()), this, SLOT(hideTabMessage()));
|
connect(m_ui->tabWidget, SIGNAL(messageDismissTab()), this, SLOT(hideTabMessage()));
|
||||||
|
|
||||||
|
m_screenLockListener = new ScreenLockListener(this);
|
||||||
|
connect(m_screenLockListener, SIGNAL(screenLocked()), SLOT(handleScreenLock()));
|
||||||
|
|
||||||
updateTrayIcon();
|
updateTrayIcon();
|
||||||
|
|
||||||
if (config()->hasAccessError()) {
|
if (config()->hasAccessError()) {
|
||||||
@ -344,7 +347,7 @@ MainWindow::~MainWindow()
|
|||||||
|
|
||||||
void MainWindow::appExit()
|
void MainWindow::appExit()
|
||||||
{
|
{
|
||||||
appExitCalled = true;
|
m_appExitCalled = true;
|
||||||
close();
|
close();
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -660,9 +663,15 @@ void MainWindow::databaseTabChanged(int tabIndex)
|
|||||||
|
|
||||||
void MainWindow::closeEvent(QCloseEvent* event)
|
void MainWindow::closeEvent(QCloseEvent* event)
|
||||||
{
|
{
|
||||||
|
// ignore double close events (happens on macOS when closing from the dock)
|
||||||
|
if (m_appExiting) {
|
||||||
|
event->accept();
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
|
||||||
bool minimizeOnClose = isTrayIconEnabled() &&
|
bool minimizeOnClose = isTrayIconEnabled() &&
|
||||||
config()->get("GUI/MinimizeOnClose").toBool();
|
config()->get("GUI/MinimizeOnClose").toBool();
|
||||||
if (minimizeOnClose && !appExitCalled)
|
if (minimizeOnClose && !m_appExitCalled)
|
||||||
{
|
{
|
||||||
event->ignore();
|
event->ignore();
|
||||||
hideWindow();
|
hideWindow();
|
||||||
@ -677,6 +686,7 @@ void MainWindow::closeEvent(QCloseEvent* event)
|
|||||||
bool accept = saveLastDatabases();
|
bool accept = saveLastDatabases();
|
||||||
|
|
||||||
if (accept) {
|
if (accept) {
|
||||||
|
m_appExiting = true;
|
||||||
saveWindowInformation();
|
saveWindowInformation();
|
||||||
|
|
||||||
event->accept();
|
event->accept();
|
||||||
@ -963,3 +973,10 @@ void MainWindow::hideYubiKeyPopup()
|
|||||||
hideGlobalMessage();
|
hideGlobalMessage();
|
||||||
setEnabled(true);
|
setEnabled(true);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
void MainWindow::handleScreenLock()
|
||||||
|
{
|
||||||
|
if (config()->get("security/lockdatabasescreenlock").toBool()){
|
||||||
|
lockDatabasesAfterInactivity();
|
||||||
|
}
|
||||||
|
}
|
||||||
|
@ -23,6 +23,7 @@
|
|||||||
#include <QSystemTrayIcon>
|
#include <QSystemTrayIcon>
|
||||||
|
|
||||||
#include "core/SignalMultiplexer.h"
|
#include "core/SignalMultiplexer.h"
|
||||||
|
#include "core/ScreenLockListener.h"
|
||||||
#include "gui/DatabaseWidget.h"
|
#include "gui/DatabaseWidget.h"
|
||||||
#include "gui/Application.h"
|
#include "gui/Application.h"
|
||||||
|
|
||||||
@ -39,6 +40,7 @@ class MainWindow : public QMainWindow
|
|||||||
public:
|
public:
|
||||||
MainWindow();
|
MainWindow();
|
||||||
~MainWindow();
|
~MainWindow();
|
||||||
|
|
||||||
enum StackedWidgetIndex
|
enum StackedWidgetIndex
|
||||||
{
|
{
|
||||||
DatabaseTabScreen = 0,
|
DatabaseTabScreen = 0,
|
||||||
@ -91,6 +93,7 @@ private slots:
|
|||||||
void lockDatabasesAfterInactivity();
|
void lockDatabasesAfterInactivity();
|
||||||
void repairDatabase();
|
void repairDatabase();
|
||||||
void hideTabMessage();
|
void hideTabMessage();
|
||||||
|
void handleScreenLock();
|
||||||
|
|
||||||
private:
|
private:
|
||||||
static void setShortcut(QAction* action, QKeySequence::StandardKey standard, int fallback = 0);
|
static void setShortcut(QAction* action, QKeySequence::StandardKey standard, int fallback = 0);
|
||||||
@ -112,10 +115,12 @@ private:
|
|||||||
InactivityTimer* m_inactivityTimer;
|
InactivityTimer* m_inactivityTimer;
|
||||||
int m_countDefaultAttributes;
|
int m_countDefaultAttributes;
|
||||||
QSystemTrayIcon* m_trayIcon;
|
QSystemTrayIcon* m_trayIcon;
|
||||||
|
ScreenLockListener* m_screenLockListener;
|
||||||
|
|
||||||
Q_DISABLE_COPY(MainWindow)
|
Q_DISABLE_COPY(MainWindow)
|
||||||
|
|
||||||
bool appExitCalled;
|
bool m_appExitCalled;
|
||||||
|
bool m_appExiting;
|
||||||
};
|
};
|
||||||
|
|
||||||
#define KEEPASSXC_MAIN_WINDOW (qobject_cast<Application*>(qApp) ? \
|
#define KEEPASSXC_MAIN_WINDOW (qobject_cast<Application*>(qApp) ? \
|
||||||
|
@ -65,7 +65,6 @@ SearchWidget::SearchWidget(QWidget *parent)
|
|||||||
|
|
||||||
SearchWidget::~SearchWidget()
|
SearchWidget::~SearchWidget()
|
||||||
{
|
{
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
bool SearchWidget::eventFilter(QObject* obj, QEvent* event)
|
bool SearchWidget::eventFilter(QObject* obj, QEvent* event)
|
||||||
@ -75,22 +74,19 @@ bool SearchWidget::eventFilter(QObject *obj, QEvent *event)
|
|||||||
if (keyEvent->key() == Qt::Key_Escape) {
|
if (keyEvent->key() == Qt::Key_Escape) {
|
||||||
emit escapePressed();
|
emit escapePressed();
|
||||||
return true;
|
return true;
|
||||||
}
|
} else if (keyEvent->matches(QKeySequence::Copy)) {
|
||||||
else if (keyEvent->matches(QKeySequence::Copy)) {
|
|
||||||
// If Control+C is pressed in the search edit when no text
|
// If Control+C is pressed in the search edit when no text
|
||||||
// is selected, copy the password of the current entry
|
// is selected, copy the password of the current entry
|
||||||
if (!m_ui->searchEdit->hasSelectedText()) {
|
if (!m_ui->searchEdit->hasSelectedText()) {
|
||||||
emit copyPressed();
|
emit copyPressed();
|
||||||
return true;
|
return true;
|
||||||
}
|
}
|
||||||
}
|
} else if (keyEvent->matches(QKeySequence::MoveToNextLine)) {
|
||||||
else if (keyEvent->matches(QKeySequence::MoveToNextLine)) {
|
|
||||||
if (m_ui->searchEdit->cursorPosition() == m_ui->searchEdit->text().length()) {
|
if (m_ui->searchEdit->cursorPosition() == m_ui->searchEdit->text().length()) {
|
||||||
// If down is pressed at EOL, move the focus to the entry view
|
// If down is pressed at EOL, move the focus to the entry view
|
||||||
emit downPressed();
|
emit downPressed();
|
||||||
return true;
|
return true;
|
||||||
}
|
} else {
|
||||||
else {
|
|
||||||
// Otherwise move the cursor to EOL
|
// Otherwise move the cursor to EOL
|
||||||
m_ui->searchEdit->setCursorPosition(m_ui->searchEdit->text().length());
|
m_ui->searchEdit->setCursorPosition(m_ui->searchEdit->text().length());
|
||||||
return true;
|
return true;
|
||||||
|
@ -18,11 +18,11 @@
|
|||||||
#ifndef KEEPASSX_SEARCHWIDGET_H
|
#ifndef KEEPASSX_SEARCHWIDGET_H
|
||||||
#define KEEPASSX_SEARCHWIDGET_H
|
#define KEEPASSX_SEARCHWIDGET_H
|
||||||
|
|
||||||
#include <QWidget>
|
|
||||||
#include <QTimer>
|
#include <QTimer>
|
||||||
|
#include <QWidget>
|
||||||
|
|
||||||
#include "gui/DatabaseWidget.h"
|
|
||||||
#include "core/SignalMultiplexer.h"
|
#include "core/SignalMultiplexer.h"
|
||||||
|
#include "gui/DatabaseWidget.h"
|
||||||
|
|
||||||
namespace Ui {
|
namespace Ui {
|
||||||
class SearchWidget;
|
class SearchWidget;
|
||||||
|
@ -136,12 +136,14 @@ void SettingsWidget::loadSettings()
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
m_secUi->clearClipboardCheckBox->setChecked(config()->get("security/clearclipboard").toBool());
|
m_secUi->clearClipboardCheckBox->setChecked(config()->get("security/clearclipboard").toBool());
|
||||||
m_secUi->clearClipboardSpinBox->setValue(config()->get("security/clearclipboardtimeout").toInt());
|
m_secUi->clearClipboardSpinBox->setValue(config()->get("security/clearclipboardtimeout").toInt());
|
||||||
|
|
||||||
m_secUi->lockDatabaseIdleCheckBox->setChecked(config()->get("security/lockdatabaseidle").toBool());
|
m_secUi->lockDatabaseIdleCheckBox->setChecked(config()->get("security/lockdatabaseidle").toBool());
|
||||||
m_secUi->lockDatabaseIdleSpinBox->setValue(config()->get("security/lockdatabaseidlesec").toInt());
|
m_secUi->lockDatabaseIdleSpinBox->setValue(config()->get("security/lockdatabaseidlesec").toInt());
|
||||||
m_secUi->lockDatabaseMinimizeCheckBox->setChecked(config()->get("security/lockdatabaseminimize").toBool());
|
m_secUi->lockDatabaseMinimizeCheckBox->setChecked(config()->get("security/lockdatabaseminimize").toBool());
|
||||||
|
m_secUi->lockDatabaseOnScreenLockCheckBox->setChecked(config()->get("security/lockdatabasescreenlock").toBool());
|
||||||
|
|
||||||
m_secUi->passwordCleartextCheckBox->setChecked(config()->get("security/passwordscleartext").toBool());
|
m_secUi->passwordCleartextCheckBox->setChecked(config()->get("security/passwordscleartext").toBool());
|
||||||
m_secUi->passwordRepeatCheckBox->setChecked(config()->get("security/passwordsrepeat").toBool());
|
m_secUi->passwordRepeatCheckBox->setChecked(config()->get("security/passwordsrepeat").toBool());
|
||||||
@ -181,6 +183,7 @@ void SettingsWidget::saveSettings()
|
|||||||
config()->set("AutoTypeEntryTitleMatch",
|
config()->set("AutoTypeEntryTitleMatch",
|
||||||
m_generalUi->autoTypeEntryTitleMatchCheckBox->isChecked());
|
m_generalUi->autoTypeEntryTitleMatchCheckBox->isChecked());
|
||||||
int currentLangIndex = m_generalUi->languageComboBox->currentIndex();
|
int currentLangIndex = m_generalUi->languageComboBox->currentIndex();
|
||||||
|
|
||||||
config()->set("GUI/Language", m_generalUi->languageComboBox->itemData(currentLangIndex).toString());
|
config()->set("GUI/Language", m_generalUi->languageComboBox->itemData(currentLangIndex).toString());
|
||||||
|
|
||||||
config()->set("GUI/ShowTrayIcon", m_generalUi->systrayShowCheckBox->isChecked());
|
config()->set("GUI/ShowTrayIcon", m_generalUi->systrayShowCheckBox->isChecked());
|
||||||
@ -201,6 +204,7 @@ void SettingsWidget::saveSettings()
|
|||||||
config()->set("security/lockdatabaseidle", m_secUi->lockDatabaseIdleCheckBox->isChecked());
|
config()->set("security/lockdatabaseidle", m_secUi->lockDatabaseIdleCheckBox->isChecked());
|
||||||
config()->set("security/lockdatabaseidlesec", m_secUi->lockDatabaseIdleSpinBox->value());
|
config()->set("security/lockdatabaseidlesec", m_secUi->lockDatabaseIdleSpinBox->value());
|
||||||
config()->set("security/lockdatabaseminimize", m_secUi->lockDatabaseMinimizeCheckBox->isChecked());
|
config()->set("security/lockdatabaseminimize", m_secUi->lockDatabaseMinimizeCheckBox->isChecked());
|
||||||
|
config()->set("security/lockdatabasescreenlock", m_secUi->lockDatabaseOnScreenLockCheckBox->isChecked());
|
||||||
|
|
||||||
config()->set("security/passwordscleartext", m_secUi->passwordCleartextCheckBox->isChecked());
|
config()->set("security/passwordscleartext", m_secUi->passwordCleartextCheckBox->isChecked());
|
||||||
config()->set("security/passwordsrepeat", m_secUi->passwordRepeatCheckBox->isChecked());
|
config()->set("security/passwordsrepeat", m_secUi->passwordRepeatCheckBox->isChecked());
|
||||||
|
@ -303,7 +303,7 @@
|
|||||||
<item>
|
<item>
|
||||||
<widget class="QCheckBox" name="autoTypeEntryTitleMatchCheckBox">
|
<widget class="QCheckBox" name="autoTypeEntryTitleMatchCheckBox">
|
||||||
<property name="text">
|
<property name="text">
|
||||||
<string>Use entry title to match windows for global Auto-Type</string>
|
<string>Use entry title and URL to match windows for global Auto-Type</string>
|
||||||
</property>
|
</property>
|
||||||
</widget>
|
</widget>
|
||||||
</item>
|
</item>
|
||||||
|
@ -28,7 +28,14 @@
|
|||||||
<property name="title">
|
<property name="title">
|
||||||
<string>Timeouts</string>
|
<string>Timeouts</string>
|
||||||
</property>
|
</property>
|
||||||
<layout class="QGridLayout" name="gridLayout">
|
<layout class="QFormLayout" name="formLayout">
|
||||||
|
<item row="0" column="0">
|
||||||
|
<widget class="QCheckBox" name="clearClipboardCheckBox">
|
||||||
|
<property name="text">
|
||||||
|
<string>Clear clipboard after</string>
|
||||||
|
</property>
|
||||||
|
</widget>
|
||||||
|
</item>
|
||||||
<item row="0" column="1">
|
<item row="0" column="1">
|
||||||
<widget class="QSpinBox" name="clearClipboardSpinBox">
|
<widget class="QSpinBox" name="clearClipboardSpinBox">
|
||||||
<property name="enabled">
|
<property name="enabled">
|
||||||
@ -54,7 +61,20 @@
|
|||||||
</property>
|
</property>
|
||||||
</widget>
|
</widget>
|
||||||
</item>
|
</item>
|
||||||
<item row="2" column="1">
|
<item row="1" column="0">
|
||||||
|
<widget class="QCheckBox" name="lockDatabaseIdleCheckBox">
|
||||||
|
<property name="sizePolicy">
|
||||||
|
<sizepolicy hsizetype="Minimum" vsizetype="Fixed">
|
||||||
|
<horstretch>0</horstretch>
|
||||||
|
<verstretch>0</verstretch>
|
||||||
|
</sizepolicy>
|
||||||
|
</property>
|
||||||
|
<property name="text">
|
||||||
|
<string>Lock databases after inactivity of</string>
|
||||||
|
</property>
|
||||||
|
</widget>
|
||||||
|
</item>
|
||||||
|
<item row="1" column="1">
|
||||||
<widget class="QSpinBox" name="lockDatabaseIdleSpinBox">
|
<widget class="QSpinBox" name="lockDatabaseIdleSpinBox">
|
||||||
<property name="enabled">
|
<property name="enabled">
|
||||||
<bool>false</bool>
|
<bool>false</bool>
|
||||||
@ -79,20 +99,6 @@
|
|||||||
</property>
|
</property>
|
||||||
</widget>
|
</widget>
|
||||||
</item>
|
</item>
|
||||||
<item row="0" column="0" alignment="Qt::AlignRight">
|
|
||||||
<widget class="QCheckBox" name="clearClipboardCheckBox">
|
|
||||||
<property name="text">
|
|
||||||
<string>Clear clipboard after</string>
|
|
||||||
</property>
|
|
||||||
</widget>
|
|
||||||
</item>
|
|
||||||
<item row="2" column="0" alignment="Qt::AlignRight">
|
|
||||||
<widget class="QCheckBox" name="lockDatabaseIdleCheckBox">
|
|
||||||
<property name="text">
|
|
||||||
<string>Lock databases after inactivity of</string>
|
|
||||||
</property>
|
|
||||||
</widget>
|
|
||||||
</item>
|
|
||||||
</layout>
|
</layout>
|
||||||
</widget>
|
</widget>
|
||||||
</item>
|
</item>
|
||||||
@ -101,7 +107,21 @@
|
|||||||
<property name="title">
|
<property name="title">
|
||||||
<string>Convenience</string>
|
<string>Convenience</string>
|
||||||
</property>
|
</property>
|
||||||
<layout class="QVBoxLayout" name="verticalLayout_3">
|
<layout class="QVBoxLayout" name="verticalLayout_2">
|
||||||
|
<item>
|
||||||
|
<widget class="QCheckBox" name="lockDatabaseOnScreenLockCheckBox">
|
||||||
|
<property name="text">
|
||||||
|
<string>Lock databases when session is locked or lid is closed</string>
|
||||||
|
</property>
|
||||||
|
</widget>
|
||||||
|
</item>
|
||||||
|
<item>
|
||||||
|
<widget class="QCheckBox" name="lockDatabaseMinimizeCheckBox">
|
||||||
|
<property name="text">
|
||||||
|
<string>Lock databases after minimizing the window</string>
|
||||||
|
</property>
|
||||||
|
</widget>
|
||||||
|
</item>
|
||||||
<item>
|
<item>
|
||||||
<widget class="QCheckBox" name="passwordRepeatCheckBox">
|
<widget class="QCheckBox" name="passwordRepeatCheckBox">
|
||||||
<property name="text">
|
<property name="text">
|
||||||
@ -116,13 +136,6 @@
|
|||||||
</property>
|
</property>
|
||||||
</widget>
|
</widget>
|
||||||
</item>
|
</item>
|
||||||
<item>
|
|
||||||
<widget class="QCheckBox" name="lockDatabaseMinimizeCheckBox">
|
|
||||||
<property name="text">
|
|
||||||
<string>Lock databases after minimizing the window</string>
|
|
||||||
</property>
|
|
||||||
</widget>
|
|
||||||
</item>
|
|
||||||
</layout>
|
</layout>
|
||||||
</widget>
|
</widget>
|
||||||
</item>
|
</item>
|
||||||
|
@ -104,6 +104,12 @@ void TestAutoType::init()
|
|||||||
association.window = "//^CustomAttr3$//";
|
association.window = "//^CustomAttr3$//";
|
||||||
association.sequence = "{PaSSworD}";
|
association.sequence = "{PaSSworD}";
|
||||||
m_entry4->autoTypeAssociations()->add(association);
|
m_entry4->autoTypeAssociations()->add(association);
|
||||||
|
|
||||||
|
m_entry5 = new Entry();
|
||||||
|
m_entry5->setGroup(m_group);
|
||||||
|
m_entry5->setPassword("example5");
|
||||||
|
m_entry5->setTitle("some title");
|
||||||
|
m_entry5->setUrl("http://example.org");
|
||||||
}
|
}
|
||||||
|
|
||||||
void TestAutoType::cleanup()
|
void TestAutoType::cleanup()
|
||||||
@ -172,6 +178,28 @@ void TestAutoType::testGlobalAutoTypeTitleMatch()
|
|||||||
QString("%1%2").arg(m_entry2->password(), m_test->keyToString(Qt::Key_Enter)));
|
QString("%1%2").arg(m_entry2->password(), m_test->keyToString(Qt::Key_Enter)));
|
||||||
}
|
}
|
||||||
|
|
||||||
|
void TestAutoType::testGlobalAutoTypeUrlMatch()
|
||||||
|
{
|
||||||
|
config()->set("AutoTypeEntryTitleMatch", true);
|
||||||
|
|
||||||
|
m_test->setActiveWindowTitle("Dummy - http://example.org/ - <My Browser>");
|
||||||
|
m_autoType->performGlobalAutoType(m_dbList);
|
||||||
|
|
||||||
|
QCOMPARE(m_test->actionChars(),
|
||||||
|
QString("%1%2").arg(m_entry5->password(), m_test->keyToString(Qt::Key_Enter)));
|
||||||
|
}
|
||||||
|
|
||||||
|
void TestAutoType::testGlobalAutoTypeUrlSubdomainMatch()
|
||||||
|
{
|
||||||
|
config()->set("AutoTypeEntryTitleMatch", true);
|
||||||
|
|
||||||
|
m_test->setActiveWindowTitle("Dummy - http://sub.example.org/ - <My Browser>");
|
||||||
|
m_autoType->performGlobalAutoType(m_dbList);
|
||||||
|
|
||||||
|
QCOMPARE(m_test->actionChars(),
|
||||||
|
QString("%1%2").arg(m_entry5->password(), m_test->keyToString(Qt::Key_Enter)));
|
||||||
|
}
|
||||||
|
|
||||||
void TestAutoType::testGlobalAutoTypeTitleMatchDisabled()
|
void TestAutoType::testGlobalAutoTypeTitleMatchDisabled()
|
||||||
{
|
{
|
||||||
m_test->setActiveWindowTitle("An Entry Title!");
|
m_test->setActiveWindowTitle("An Entry Title!");
|
||||||
|
@ -42,6 +42,8 @@ private slots:
|
|||||||
void testGlobalAutoTypeWithNoMatch();
|
void testGlobalAutoTypeWithNoMatch();
|
||||||
void testGlobalAutoTypeWithOneMatch();
|
void testGlobalAutoTypeWithOneMatch();
|
||||||
void testGlobalAutoTypeTitleMatch();
|
void testGlobalAutoTypeTitleMatch();
|
||||||
|
void testGlobalAutoTypeUrlMatch();
|
||||||
|
void testGlobalAutoTypeUrlSubdomainMatch();
|
||||||
void testGlobalAutoTypeTitleMatchDisabled();
|
void testGlobalAutoTypeTitleMatchDisabled();
|
||||||
void testGlobalAutoTypeRegExp();
|
void testGlobalAutoTypeRegExp();
|
||||||
|
|
||||||
@ -56,6 +58,7 @@ private:
|
|||||||
Entry* m_entry2;
|
Entry* m_entry2;
|
||||||
Entry* m_entry3;
|
Entry* m_entry3;
|
||||||
Entry* m_entry4;
|
Entry* m_entry4;
|
||||||
|
Entry* m_entry5;
|
||||||
};
|
};
|
||||||
|
|
||||||
#endif // KEEPASSX_TESTAUTOTYPE_H
|
#endif // KEEPASSX_TESTAUTOTYPE_H
|
||||||
|
20
utils/fix_mac.sh
Executable file
@ -0,0 +1,20 @@
|
|||||||
|
#!/bin/bash
|
||||||
|
|
||||||
|
# Canonical path to qt5 directory
|
||||||
|
QT="/usr/local/Cellar/qt"
|
||||||
|
if [ ! -d "$QT" ]; then
|
||||||
|
# Alternative (old) path to qt5 directory
|
||||||
|
QT+="5"
|
||||||
|
if [ ! -d "$QT" ]; then
|
||||||
|
echo "Qt/Qt5 not found!"
|
||||||
|
exit
|
||||||
|
fi
|
||||||
|
fi
|
||||||
|
QT5_DIR="$QT/$(ls $QT | sort -r | head -n1)"
|
||||||
|
echo $QT5_DIR
|
||||||
|
|
||||||
|
# Change qt5 framework ids
|
||||||
|
for framework in $(find "$QT5_DIR/lib" -regex ".*/\(Qt[a-zA-Z]*\)\.framework/Versions/5/\1"); do
|
||||||
|
echo "$framework"
|
||||||
|
install_name_tool -id "$framework" "$framework"
|
||||||
|
done
|