|
QtPass $ENV{QTPASS_VERSION}
Multi-platform GUI for pass, the standard unix password manager.
|
Singleton settings manager implementation. More...
#include <qtpasssettings.h>
Inheritance diagram for QtPassSettings:
Collaboration diagram for QtPassSettings:Static Public Member Functions | |
| static auto | getInstance () -> QtPassSettings * |
| Get the singleton instance. | |
| static auto | getVersion (const QString &defaultValue=QVariant().toString()) -> QString |
| Get saved application version. | |
| static void | setVersion (const QString &version) |
| Save application version. | |
| static auto | getGeometry (const QByteArray &defaultValue=QVariant().toByteArray()) -> QByteArray |
| Get saved window geometry. | |
| static void | setGeometry (const QByteArray &geometry) |
| Save window geometry. | |
| static auto | getSavestate (const QByteArray &defaultValue=QVariant().toByteArray()) -> QByteArray |
| Get saved window state. | |
| static void | setSavestate (const QByteArray &saveState) |
| Save window state. | |
| static auto | getPos (const QPoint &defaultValue=QVariant().toPoint()) -> QPoint |
| Get saved window position. | |
| static void | setPos (const QPoint &pos) |
| Save window position. | |
| static auto | getSize (const QSize &defaultValue=QVariant().toSize()) -> QSize |
| Get saved window size. | |
| static void | setSize (const QSize &size) |
| Save window size. | |
| static auto | isMaximized (const bool &defaultValue=QVariant().toBool()) -> bool |
| Get maximized state. | |
| static void | setMaximized (const bool &maximized) |
| Save maximized state. | |
| static auto | getDialogGeometry (const QString &key, const QByteArray &defaultValue=QVariant().toByteArray()) -> QByteArray |
| Get saved dialog geometry. | |
| static void | setDialogGeometry (const QString &key, const QByteArray &geometry) |
| Save dialog geometry. | |
| static auto | getDialogPos (const QString &key, const QPoint &defaultValue=QVariant().toPoint()) -> QPoint |
| Get saved dialog position. | |
| static void | setDialogPos (const QString &key, const QPoint &pos) |
| Save dialog position. | |
| static auto | getDialogSize (const QString &key, const QSize &defaultValue=QVariant().toSize()) -> QSize |
| Get saved dialog size. | |
| static void | setDialogSize (const QString &key, const QSize &size) |
| Save dialog size. | |
| static auto | isDialogMaximized (const QString &key, const bool &defaultValue=QVariant().toBool()) -> bool |
| Get dialog maximized state. | |
| static void | setDialogMaximized (const QString &key, const bool &maximized) |
| Save dialog maximized state. | |
| static auto | isUsePass (const bool &defaultValue=QVariant().toBool()) -> bool |
| Get whether to use pass (true) or GPG (false). | |
| static void | setUsePass (const bool &usePass) |
| Save use pass setting. | |
| static auto | getClipBoardTypeRaw (const Enums::clipBoardType &defaultValue=Enums::CLIPBOARD_NEVER) -> int |
| Get clipboard type preference. | |
| static auto | getClipBoardType (const Enums::clipBoardType &defaultValue=Enums::CLIPBOARD_NEVER) -> Enums::clipBoardType |
| Get clipboard type as enum. | |
| static void | setClipBoardType (const int &clipBoardType) |
| Save clipboard type. | |
| static auto | isUseSelection (const bool &defaultValue=QVariant().toBool()) -> bool |
| Get whether to use selection (X11) for clipboard. | |
| static void | setUseSelection (const bool &useSelection) |
| Save use selection setting. | |
| static auto | isUseAutoclear (const bool &defaultValue=QVariant().toBool()) -> bool |
| Get whether to use autoclear for clipboard. | |
| static void | setUseAutoclear (const bool &useAutoclear) |
| Save use autoclear setting. | |
| static auto | getAutoclearSeconds (const int &defaultValue=QVariant().toInt()) -> int |
| Get autoclear delay in seconds. | |
| static void | setAutoclearSeconds (const int &autoClearSeconds) |
| Save autoclear seconds. | |
| static auto | isUseAutoclearPanel (const bool &defaultValue=QVariant().toBool()) -> bool |
| Get whether to use panel autoclear. | |
| static void | setUseAutoclearPanel (const bool &useAutoclearPanel) |
| Save use autoclear panel setting. | |
| static auto | getAutoclearPanelSeconds (const int &defaultValue=QVariant().toInt()) -> int |
| Get panel autoclear delay in seconds. | |
| static void | setAutoclearPanelSeconds (const int &autoClearPanelSeconds) |
| Save panel autoclear seconds. | |
| static auto | isHidePassword (const bool &defaultValue=QVariant().toBool()) -> bool |
| Get whether to hide password in UI. | |
| static void | setHidePassword (const bool &hidePassword) |
| Save hide password setting. | |
| static auto | isHideContent (const bool &defaultValue=QVariant().toBool()) -> bool |
| Get whether to hide content (password + username). | |
| static void | setHideContent (const bool &hideContent) |
| Save hide content setting. | |
| static auto | isUseMonospace (const bool &defaultValue=QVariant().toBool()) -> bool |
| Get whether to use monospace font. | |
| static void | setUseMonospace (const bool &useMonospace) |
| Save use monospace setting. | |
| static auto | isDisplayAsIs (const bool &defaultValue=QVariant().toBool()) -> bool |
| Get whether to display password as-is (no modification). | |
| static void | setDisplayAsIs (const bool &displayAsIs) |
| Save display as-is setting. | |
| static auto | isNoLineWrapping (const bool &defaultValue=QVariant().toBool()) -> bool |
| Get whether to disable line wrapping. | |
| static void | setNoLineWrapping (const bool &noLineWrapping) |
| Save no line wrapping setting. | |
| static auto | isAddGPGId (const bool &defaultValue=QVariant().toBool()) -> bool |
| Get whether to auto-add GPG ID when receiving files. | |
| static void | setAddGPGId (const bool &addGPGId) |
| Save add GPG ID setting. | |
| static auto | getPassStore (const QString &defaultValue=QVariant().toString()) -> QString |
| Get password store directory path. | |
| static void | setPassStore (const QString &passStore) |
| Save password store path. | |
| static auto | getPassSigningKey (const QString &defaultValue=QVariant().toString()) -> QString |
| Get GPG signing key for pass. | |
| static void | setPassSigningKey (const QString &passSigningKey) |
| Save GPG signing key. | |
| static void | initExecutables () |
| Initialize executable paths by auto-detecting them. | |
| static auto | getPassExecutable (const QString &defaultValue=QVariant().toString()) -> QString |
| Get pass executable path. | |
| static void | setPassExecutable (const QString &passExecutable) |
| Save pass executable path. | |
| static auto | getGitExecutable (const QString &defaultValue=QVariant().toString()) -> QString |
| Get git executable path. | |
| static void | setGitExecutable (const QString &gitExecutable) |
| Save git executable path. | |
| static auto | getGpgExecutable (const QString &defaultValue=QVariant().toString()) -> QString |
| Get GPG executable path. | |
| static void | setGpgExecutable (const QString &gpgExecutable) |
| Save GPG executable path. | |
| static auto | getPwgenExecutable (const QString &defaultValue=QVariant().toString()) -> QString |
| Get pwgen executable path. | |
| static void | setPwgenExecutable (const QString &pwgenExecutable) |
| Save pwgen executable path. | |
| static auto | getGpgHome (const QString &defaultValue=QVariant().toString()) -> QString |
| Get GPG home directory. | |
| static auto | isUseWebDav (const bool &defaultValue=QVariant().toBool()) -> bool |
| Check whether WebDAV integration is enabled. | |
| static void | setUseWebDav (const bool &useWebDav) |
| Save WebDAV integration flag. | |
| static auto | getWebDavUrl (const QString &defaultValue=QVariant().toString()) -> QString |
| Get WebDAV URL. | |
| static void | setWebDavUrl (const QString &webDavUrl) |
| Save WebDAV URL. | |
| static auto | getWebDavUser (const QString &defaultValue=QVariant().toString()) -> QString |
| Get WebDAV username. | |
| static void | setWebDavUser (const QString &webDavUser) |
| Save WebDAV username. | |
| static auto | getWebDavPassword (const QString &defaultValue=QVariant().toString()) -> QString |
| Get WebDAV password. | |
| static void | setWebDavPassword (const QString &webDavPassword) |
| Save WebDAV password. | |
| static auto | getProfile (const QString &defaultValue=QVariant().toString()) -> QString |
| Get active profile name. | |
| static void | setProfile (const QString &profile) |
| Save active profile name. | |
| static auto | isUseGit (const bool &defaultValue=QVariant().toBool()) -> bool |
| Check whether Git integration is enabled. | |
| static void | setUseGit (const bool &useGit) |
| Save Git integration flag. | |
| static auto | isUseOtp (const bool &defaultValue=QVariant().toBool()) -> bool |
| Check whether OTP support is enabled. | |
| static void | setUseOtp (const bool &useOtp) |
| Save OTP support flag. | |
| static auto | isUseQrencode (const bool &defaultValue=QVariant().toBool()) -> bool |
| Check whether qrencode support is enabled. | |
| static void | setUseQrencode (const bool &useQrencode) |
| Save qrencode support flag. | |
| static auto | getQrencodeExecutable (const QString &defaultValue=QVariant().toString()) -> QString |
| Get qrencode executable path. | |
| static void | setQrencodeExecutable (const QString &qrencodeExecutable) |
| Save qrencode executable path. | |
| static auto | isUsePwgen (const bool &defaultValue=QVariant().toBool()) -> bool |
| Check whether pwgen support is enabled. | |
| static void | setUsePwgen (const bool &usePwgen) |
| Save pwgen support flag. | |
| static auto | isAvoidCapitals (const bool &defaultValue=QVariant().toBool()) -> bool |
| Check whether uppercase characters should be avoided. | |
| static void | setAvoidCapitals (const bool &avoidCapitals) |
| Save uppercase avoidance flag. | |
| static auto | isAvoidNumbers (const bool &defaultValue=QVariant().toBool()) -> bool |
| Check whether numeric characters should be avoided. | |
| static void | setAvoidNumbers (const bool &avoidNumbers) |
| Save numeric avoidance flag. | |
| static auto | isLessRandom (const bool &defaultValue=QVariant().toBool()) -> bool |
| Check whether less random password generation is enabled. | |
| static void | setLessRandom (const bool &lessRandom) |
| Save less-random generation flag. | |
| static auto | isUseSymbols (const bool &defaultValue=QVariant().toBool()) -> bool |
| Check whether symbol characters are enabled. | |
| static void | setUseSymbols (const bool &useSymbols) |
| Save symbol usage flag. | |
| static auto | getPasswordConfiguration () -> PasswordConfiguration |
| Get complete password generation configuration. | |
| static void | setPasswordConfiguration (const PasswordConfiguration &config) |
| Save complete password generation configuration. | |
| static void | setPasswordLength (const int &passwordLength) |
| Save password length setting. | |
| static void | setPasswordCharsselection (const int &passwordCharsSelection) |
| Save password character selection mode. | |
| static void | setPasswordChars (const QString &passwordChars) |
| Save custom password characters. | |
| static auto | isUseTrayIcon (const bool &defaultValue=QVariant().toBool()) -> bool |
| Check whether tray icon support is enabled. | |
| static void | setUseTrayIcon (const bool &useTrayIcon) |
| Save tray icon support flag. | |
| static auto | isHideOnClose (const bool &defaultValue=QVariant().toBool()) -> bool |
| Check whether closing the window hides the application. | |
| static void | setHideOnClose (const bool &hideOnClose) |
| Save hide-on-close flag. | |
| static auto | isStartMinimized (const bool &defaultValue=QVariant().toBool()) -> bool |
| Check whether application should start minimized. | |
| static void | setStartMinimized (const bool &startMinimized) |
| Save start-minimized flag. | |
| static auto | isAlwaysOnTop (const bool &defaultValue=QVariant().toBool()) -> bool |
| Check whether main window should stay always on top. | |
| static void | setAlwaysOnTop (const bool &alwaysOnTop) |
| Save always-on-top flag. | |
| static auto | isAutoPull (const bool &defaultValue=QVariant().toBool()) -> bool |
| Check whether automatic pull is enabled. | |
| static void | setAutoPull (const bool &autoPull) |
| Save automatic pull flag. | |
| static auto | isAutoPush (const bool &defaultValue=QVariant().toBool()) -> bool |
| Check whether automatic push is enabled. | |
| static void | setAutoPush (const bool &autoPush) |
| Save automatic push flag. | |
| static auto | getPassTemplate (const QString &defaultValue=QVariant().toString()) -> QString |
| Get pass entry template. | |
| static void | setPassTemplate (const QString &passTemplate) |
| Save pass entry template. | |
| static auto | isUseTemplate (const bool &defaultValue=QVariant().toBool()) -> bool |
| Check whether template usage is enabled. | |
| static void | setUseTemplate (const bool &useTemplate) |
| Save template usage flag. | |
| static auto | isTemplateAllFields (const bool &defaultValue=QVariant().toBool()) -> bool |
| Check whether template applies to all fields. | |
| static void | setTemplateAllFields (const bool &templateAllFields) |
| Save template-all-fields flag. | |
| static auto | getProfiles () -> QHash< QString, QHash< QString, QString > > |
| Get all configured profiles. | |
| static void | setProfiles (const QHash< QString, QHash< QString, QString > > &profiles) |
| Save all configured profiles. | |
| static auto | getPass () -> Pass * |
| Get currently active pass backend instance. | |
| static auto | getRealPass () -> RealPass * |
| Get real pass backend instance. | |
| static auto | getImitatePass () -> ImitatePass * |
| Get imitate pass backend instance. | |
Singleton settings manager implementation.
Singleton that stores QtPass settings, handles persistence and defaults.
Implementation of QtPassSettings singleton. Handles persistence using QSettings with support for portable mode (qtpass.ini next to executable).
QtPassSettings manages all application configuration including:
Uses QSettings for persistence with a singleton pattern. All getters accept a default value returned when setting is not yet saved.
Definition at line 35 of file qtpasssettings.h.
|
static |
Get panel autoclear delay in seconds.
| defaultValue | Integer returned if not saved. |
Definition at line 355 of file qtpasssettings.cpp.
Here is the caller graph for this function:
|
static |
Get autoclear delay in seconds.
| defaultValue | Integer returned if not saved. |
Definition at line 335 of file qtpasssettings.cpp.
Here is the caller graph for this function:
|
static |
Get clipboard type as enum.
| defaultValue | Default value returned if not saved. |
Definition at line 309 of file qtpasssettings.cpp.
Here is the caller graph for this function:
|
static |
Get clipboard type preference.
| defaultValue | Default value returned if not saved. |
Definition at line 302 of file qtpasssettings.cpp.
Here is the caller graph for this function:
|
static |
Get saved dialog geometry.
| key | Dialog identifier (e.g., "usersDialog"). |
| defaultValue | Byte array returned if not saved. |
Definition at line 247 of file qtpasssettings.cpp.
Here is the caller graph for this function:
|
static |
Get saved dialog position.
| key | Dialog identifier. |
| defaultValue | Point returned if not saved. |
Definition at line 260 of file qtpasssettings.cpp.
Here is the caller graph for this function:
|
static |
Get saved dialog size.
| key | Dialog identifier. |
| defaultValue | Size returned if not saved. |
Definition at line 270 of file qtpasssettings.cpp.
Here is the caller graph for this function:
|
static |
Get saved window geometry.
| defaultValue | Byte array returned if no geometry saved. |
Definition at line 194 of file qtpasssettings.cpp.
Here is the caller graph for this function:
|
static |
Get git executable path.
| defaultValue | String returned if not saved. |
Definition at line 503 of file qtpasssettings.cpp.
Here is the caller graph for this function:
|
static |
Get GPG executable path.
| defaultValue | String returned if not saved. |
Definition at line 512 of file qtpasssettings.cpp.
Here is the caller graph for this function:
|
static |
Get GPG home directory.
| defaultValue | String returned if not saved. |
Definition at line 531 of file qtpasssettings.cpp.
Here is the caller graph for this function:
|
static |
Get imitate pass backend instance.
Definition at line 782 of file qtpasssettings.cpp.
|
static |
Get the singleton instance.
Definition at line 47 of file qtpasssettings.cpp.
Here is the caller graph for this function:
|
static |
Get currently active pass backend instance.
Definition at line 171 of file qtpasssettings.cpp.
Here is the caller graph for this function:
|
static |
Get pass executable path.
| defaultValue | String returned if not saved. |
Definition at line 494 of file qtpasssettings.cpp.
Here is the caller graph for this function:
|
static |
Get GPG signing key for pass.
| defaultValue | String returned if not saved. |
Definition at line 460 of file qtpasssettings.cpp.
Here is the caller graph for this function:
|
static |
Get password store directory path.
| defaultValue | String returned if not saved. |
Definition at line 433 of file qtpasssettings.cpp.
Here is the caller graph for this function:
|
static |
Get pass entry template.
| defaultValue | String returned if not saved. |
Definition at line 748 of file qtpasssettings.cpp.
Here is the caller graph for this function:
|
static |
Get complete password generation configuration.
Definition at line 74 of file qtpasssettings.cpp.
Here is the caller graph for this function:
|
static |
Get saved window position.
| defaultValue | Point returned if no position saved. |
Definition at line 213 of file qtpasssettings.cpp.
Here is the caller graph for this function:
|
static |
Get active profile name.
| defaultValue | String returned if not saved. |
Definition at line 573 of file qtpasssettings.cpp.
Here is the caller graph for this function:
|
static |
Get all configured profiles.
Definition at line 116 of file qtpasssettings.cpp.
Here is the caller graph for this function:
|
static |
Get pwgen executable path.
| defaultValue | String returned if not saved. |
Definition at line 521 of file qtpasssettings.cpp.
Here is the caller graph for this function:
|
static |
Get qrencode executable path.
| defaultValue | String returned if not saved. |
Definition at line 626 of file qtpasssettings.cpp.
Here is the caller graph for this function:
|
static |
Get real pass backend instance.
Definition at line 776 of file qtpasssettings.cpp.
|
static |
Get saved window state.
| defaultValue | Byte array returned if no state saved. |
Definition at line 203 of file qtpasssettings.cpp.
Here is the caller graph for this function:
|
static |
Get saved window size.
| defaultValue | Size returned if no size saved. |
Definition at line 231 of file qtpasssettings.cpp.
Here is the caller graph for this function:
|
static |
Get saved application version.
| defaultValue | String returned if no version saved. |
Definition at line 185 of file qtpasssettings.cpp.
Here is the caller graph for this function:
|
static |
Get WebDAV password.
| defaultValue | String returned if not saved. |
Definition at line 564 of file qtpasssettings.cpp.
|
static |
Get WebDAV URL.
| defaultValue | String returned if not saved. |
Definition at line 546 of file qtpasssettings.cpp.
|
static |
Get WebDAV username.
| defaultValue | String returned if not saved. |
Definition at line 555 of file qtpasssettings.cpp.
|
static |
Initialize executable paths by auto-detecting them.
Definition at line 477 of file qtpasssettings.cpp.
Here is the call graph for this function:
Here is the caller graph for this function:
|
static |
Get whether to auto-add GPG ID when receiving files.
| defaultValue | Boolean returned if not saved. |
Definition at line 411 of file qtpasssettings.cpp.
Here is the caller graph for this function:
|
static |
Check whether main window should stay always on top.
| defaultValue | Value returned if not saved. |
Definition at line 721 of file qtpasssettings.cpp.
Here is the caller graph for this function:
|
static |
Check whether automatic pull is enabled.
| defaultValue | Value returned if not saved. |
Definition at line 730 of file qtpasssettings.cpp.
Here is the caller graph for this function:
|
static |
Check whether automatic push is enabled.
| defaultValue | Value returned if not saved. |
Definition at line 739 of file qtpasssettings.cpp.
Here is the caller graph for this function:
|
static |
Check whether uppercase characters should be avoided.
| defaultValue | Value returned if not saved. |
Definition at line 646 of file qtpasssettings.cpp.
Here is the caller graph for this function:
|
static |
Check whether numeric characters should be avoided.
| defaultValue | Value returned if not saved. |
Definition at line 655 of file qtpasssettings.cpp.
Here is the caller graph for this function:
|
static |
Get dialog maximized state.
| key | Dialog identifier. |
| defaultValue | Boolean returned if not saved. |
Definition at line 280 of file qtpasssettings.cpp.
Here is the caller graph for this function:
|
static |
Get whether to display password as-is (no modification).
| defaultValue | Boolean returned if not saved. |
Definition at line 393 of file qtpasssettings.cpp.
Here is the caller graph for this function:
|
static |
Get whether to hide content (password + username).
| defaultValue | Boolean returned if not saved. |
Definition at line 375 of file qtpasssettings.cpp.
Here is the caller graph for this function:
|
static |
Check whether closing the window hides the application.
| defaultValue | Value returned if not saved. |
Definition at line 703 of file qtpasssettings.cpp.
Here is the caller graph for this function:
|
static |
Get whether to hide password in UI.
| defaultValue | Boolean returned if not saved. |
Definition at line 366 of file qtpasssettings.cpp.
Here is the caller graph for this function:
|
static |
Check whether less random password generation is enabled.
| defaultValue | Value returned if not saved. |
Definition at line 664 of file qtpasssettings.cpp.
Here is the caller graph for this function:
|
static |
Get maximized state.
| defaultValue | Boolean returned if not saved. |
Definition at line 238 of file qtpasssettings.cpp.
Here is the caller graph for this function:
|
static |
Get whether to disable line wrapping.
| defaultValue | Boolean returned if not saved. |
Definition at line 402 of file qtpasssettings.cpp.
Here is the caller graph for this function:
|
static |
Check whether application should start minimized.
| defaultValue | Value returned if not saved. |
Definition at line 712 of file qtpasssettings.cpp.
Here is the caller graph for this function:
|
static |
Check whether template applies to all fields.
| defaultValue | Value returned if not saved. |
Definition at line 766 of file qtpasssettings.cpp.
Here is the caller graph for this function:
|
static |
Get whether to use autoclear for clipboard.
| defaultValue | Boolean returned if not saved. |
Definition at line 326 of file qtpasssettings.cpp.
Here is the caller graph for this function:
|
static |
Get whether to use panel autoclear.
| defaultValue | Boolean returned if not saved. |
Definition at line 345 of file qtpasssettings.cpp.
Here is the caller graph for this function:
|
static |
Check whether Git integration is enabled.
| defaultValue | Value returned if not saved. |
Definition at line 592 of file qtpasssettings.cpp.
Here is the caller graph for this function:
|
static |
Get whether to use monospace font.
| defaultValue | Boolean returned if not saved. |
Definition at line 384 of file qtpasssettings.cpp.
Here is the caller graph for this function:
|
static |
Check whether OTP support is enabled.
| defaultValue | Value returned if not saved. |
Definition at line 608 of file qtpasssettings.cpp.
Here is the caller graph for this function:
|
static |
Get whether to use pass (true) or GPG (false).
| defaultValue | Boolean returned if not saved (defaults to false). |
Definition at line 292 of file qtpasssettings.cpp.
Here is the caller graph for this function:
|
static |
Check whether pwgen support is enabled.
| defaultValue | Value returned if not saved. |
Definition at line 637 of file qtpasssettings.cpp.
Here is the caller graph for this function:
|
static |
Check whether qrencode support is enabled.
| defaultValue | Value returned if not saved. |
Definition at line 616 of file qtpasssettings.cpp.
Here is the caller graph for this function:
|
static |
Get whether to use selection (X11) for clipboard.
| defaultValue | Boolean returned if not saved. |
Definition at line 317 of file qtpasssettings.cpp.
Here is the caller graph for this function:
|
static |
Check whether symbol characters are enabled.
| defaultValue | Value returned if not saved. |
Definition at line 673 of file qtpasssettings.cpp.
Here is the caller graph for this function:
|
static |
Check whether template usage is enabled.
| defaultValue | Value returned if not saved. |
Definition at line 757 of file qtpasssettings.cpp.
Here is the caller graph for this function:
|
static |
Check whether tray icon support is enabled.
| defaultValue | Value returned if not saved. |
Definition at line 694 of file qtpasssettings.cpp.
Here is the caller graph for this function:
|
static |
Check whether WebDAV integration is enabled.
| defaultValue | Value returned if not saved. |
Definition at line 537 of file qtpasssettings.cpp.
Here is the caller graph for this function:
|
static |
Save add GPG ID setting.
| addGPGId | true to auto-add GPG IDs. |
Definition at line 416 of file qtpasssettings.cpp.
Here is the call graph for this function:
|
static |
Save always-on-top flag.
| alwaysOnTop | Whether always-on-top should be enabled. |
Definition at line 726 of file qtpasssettings.cpp.
Here is the call graph for this function:
|
static |
Save panel autoclear seconds.
| autoClearPanelSeconds | Seconds to wait before clearing panel. |
Definition at line 360 of file qtpasssettings.cpp.
Here is the call graph for this function:
Here is the caller graph for this function:
|
static |
Save autoclear seconds.
| autoClearSeconds | Seconds to wait before clearing. |
Definition at line 340 of file qtpasssettings.cpp.
Here is the call graph for this function:
Here is the caller graph for this function:
|
static |
Save automatic pull flag.
| autoPull | Whether automatic pull should be enabled. |
Definition at line 735 of file qtpasssettings.cpp.
Here is the call graph for this function:
|
static |
Save automatic push flag.
| autoPush | Whether automatic push should be enabled. |
Definition at line 744 of file qtpasssettings.cpp.
Here is the call graph for this function:
|
static |
Save uppercase avoidance flag.
| avoidCapitals | Whether uppercase characters should be avoided. |
Definition at line 651 of file qtpasssettings.cpp.
Here is the call graph for this function:
|
static |
Save numeric avoidance flag.
| avoidNumbers | Whether numeric characters should be avoided. |
Definition at line 660 of file qtpasssettings.cpp.
Here is the call graph for this function:
|
static |
Save clipboard type.
| clipBoardType | Clipboard type to save. |
Definition at line 313 of file qtpasssettings.cpp.
Here is the call graph for this function:
|
static |
Save dialog geometry.
| key | Dialog identifier. |
| geometry | Dialog geometry to save. |
Definition at line 254 of file qtpasssettings.cpp.
Here is the call graph for this function:
Here is the caller graph for this function:
|
static |
Save dialog maximized state.
| key | Dialog identifier. |
| maximized | Maximized state to save. |
Definition at line 286 of file qtpasssettings.cpp.
Here is the call graph for this function:
Here is the caller graph for this function:
|
static |
Save dialog position.
| key | Dialog identifier. |
| pos | Dialog position to save. |
Definition at line 266 of file qtpasssettings.cpp.
Here is the call graph for this function:
Here is the caller graph for this function:
|
static |
Save dialog size.
| key | Dialog identifier. |
| size | Dialog size to save. |
Definition at line 276 of file qtpasssettings.cpp.
Here is the call graph for this function:
Here is the caller graph for this function:
|
static |
Save display as-is setting.
| displayAsIs | true to display unmodified. |
Definition at line 398 of file qtpasssettings.cpp.
Here is the call graph for this function:
|
static |
Save window geometry.
| geometry | Window geometry to save. |
Definition at line 199 of file qtpasssettings.cpp.
Here is the call graph for this function:
Here is the caller graph for this function:
|
static |
Save git executable path.
| gitExecutable | Path to git. |
Definition at line 508 of file qtpasssettings.cpp.
Here is the call graph for this function:
Here is the caller graph for this function:
|
static |
Save GPG executable path.
| gpgExecutable | Path to GPG executable. |
Definition at line 517 of file qtpasssettings.cpp.
Here is the call graph for this function:
Here is the caller graph for this function:
|
static |
Save hide content setting.
| hideContent | true to hide content. |
Definition at line 380 of file qtpasssettings.cpp.
Here is the call graph for this function:
|
static |
Save hide-on-close flag.
| hideOnClose | Whether close action should hide the application. |
Definition at line 708 of file qtpasssettings.cpp.
Here is the call graph for this function:
|
static |
Save hide password setting.
| hidePassword | true to hide password. |
Definition at line 371 of file qtpasssettings.cpp.
Here is the call graph for this function:
|
static |
Save less-random generation flag.
| lessRandom | Whether less-random generation is enabled. |
Definition at line 669 of file qtpasssettings.cpp.
Here is the call graph for this function:
|
static |
Save maximized state.
| maximized | Maximized state to save. |
Definition at line 243 of file qtpasssettings.cpp.
Here is the call graph for this function:
Here is the caller graph for this function:
|
static |
Save no line wrapping setting.
| noLineWrapping | true to disable wrapping. |
Definition at line 407 of file qtpasssettings.cpp.
Here is the call graph for this function:
|
static |
Save pass executable path.
| passExecutable | Path to pass. |
Definition at line 499 of file qtpasssettings.cpp.
Here is the call graph for this function:
Here is the caller graph for this function:
|
static |
Save GPG signing key.
| passSigningKey | Key ID to use for signing. |
Definition at line 465 of file qtpasssettings.cpp.
Here is the call graph for this function:
|
static |
Save password store path.
| passStore | Path to password store. |
Definition at line 456 of file qtpasssettings.cpp.
Here is the call graph for this function:
Here is the caller graph for this function:
|
static |
Save pass entry template.
| passTemplate | Pass template. |
Definition at line 753 of file qtpasssettings.cpp.
Here is the call graph for this function:
Here is the caller graph for this function:
|
static |
Save custom password characters.
| passwordChars | Custom characters used for password generation. |
Definition at line 690 of file qtpasssettings.cpp.
Here is the call graph for this function:
|
static |
Save password character selection mode.
| passwordCharsSelection | Password character selection mode. |
Definition at line 685 of file qtpasssettings.cpp.
Here is the call graph for this function:
|
static |
Save complete password generation configuration.
| config | Password generation configuration. |
Definition at line 94 of file qtpasssettings.cpp.
Here is the call graph for this function:
|
static |
Save password length setting.
| passwordLength | Password length. |
Definition at line 682 of file qtpasssettings.cpp.
Here is the call graph for this function:
|
static |
Save window position.
| pos | Window position to save. |
Definition at line 225 of file qtpasssettings.cpp.
Here is the call graph for this function:
Here is the caller graph for this function:
|
static |
Save active profile name.
| profile | Profile name. |
Definition at line 578 of file qtpasssettings.cpp.
Here is the call graph for this function:
|
static |
Save all configured profiles.
| profiles | Profile map keyed by profile name. |
Definition at line 156 of file qtpasssettings.cpp.
Here is the call graph for this function:
|
static |
Save pwgen executable path.
| pwgenExecutable | Path to pwgen. |
Definition at line 527 of file qtpasssettings.cpp.
Here is the call graph for this function:
Here is the caller graph for this function:
|
static |
Save qrencode executable path.
| qrencodeExecutable | Path to qrencode executable. |
Definition at line 632 of file qtpasssettings.cpp.
Here is the call graph for this function:
|
static |
Save window state.
| saveState | Window state to save. |
Definition at line 209 of file qtpasssettings.cpp.
Here is the call graph for this function:
Here is the caller graph for this function:
|
static |
Save window size.
| size | Window size to save. |
Definition at line 234 of file qtpasssettings.cpp.
Here is the call graph for this function:
Here is the caller graph for this function:
|
static |
Save start-minimized flag.
| startMinimized | Whether application should start minimized. |
Definition at line 717 of file qtpasssettings.cpp.
Here is the call graph for this function:
|
static |
Save template-all-fields flag.
| templateAllFields | Whether template should apply to all fields. |
Definition at line 771 of file qtpasssettings.cpp.
Here is the call graph for this function:
|
static |
Save use autoclear setting.
| useAutoclear | true to enable autoclear. |
Definition at line 331 of file qtpasssettings.cpp.
Here is the call graph for this function:
|
static |
Save use autoclear panel setting.
| useAutoclearPanel | true to enable panel autoclear. |
Definition at line 350 of file qtpasssettings.cpp.
Here is the call graph for this function:
|
static |
Save Git integration flag.
| useGit | Whether to enable Git integration. |
Definition at line 604 of file qtpasssettings.cpp.
Here is the call graph for this function:
|
static |
Save use monospace setting.
| useMonospace | true to use monospace font. |
Definition at line 389 of file qtpasssettings.cpp.
Here is the call graph for this function:
|
static |
Save OTP support flag.
| useOtp | Whether to enable OTP support. |
Definition at line 612 of file qtpasssettings.cpp.
Here is the call graph for this function:
|
static |
Save use pass setting.
| usePass | true to use pass, false for GPG. |
Definition at line 297 of file qtpasssettings.cpp.
Here is the call graph for this function:
Here is the caller graph for this function:
|
static |
Save pwgen support flag.
| usePwgen | Whether to enable pwgen support. |
Definition at line 642 of file qtpasssettings.cpp.
Here is the call graph for this function:
Here is the caller graph for this function:
|
static |
Save qrencode support flag.
| useQrencode | Whether to enable qrencode support. |
Definition at line 622 of file qtpasssettings.cpp.
Here is the call graph for this function:
|
static |
Save use selection setting.
| useSelection | true to use selection. |
Definition at line 322 of file qtpasssettings.cpp.
Here is the call graph for this function:
|
static |
Save symbol usage flag.
| useSymbols | Whether symbol characters are enabled. |
Definition at line 678 of file qtpasssettings.cpp.
Here is the call graph for this function:
|
static |
Save template usage flag.
| useTemplate | Whether template usage should be enabled. |
Definition at line 762 of file qtpasssettings.cpp.
Here is the call graph for this function:
|
static |
Save tray icon support flag.
| useTrayIcon | Whether tray icon support is enabled. |
Definition at line 699 of file qtpasssettings.cpp.
Here is the call graph for this function:
|
static |
Save WebDAV integration flag.
| useWebDav | Whether to enable WebDAV. |
Definition at line 542 of file qtpasssettings.cpp.
Here is the call graph for this function:
|
static |
Save application version.
| version | Version string to save. |
Definition at line 190 of file qtpasssettings.cpp.
Here is the call graph for this function:
Here is the caller graph for this function:
|
static |
Save WebDAV password.
| webDavPassword | WebDAV password. |
Definition at line 569 of file qtpasssettings.cpp.
Here is the call graph for this function:
|
static |
Save WebDAV URL.
| webDavUrl | WebDAV URL. |
Definition at line 551 of file qtpasssettings.cpp.
Here is the call graph for this function:
|
static |
Save WebDAV username.
| webDavUser | WebDAV username. |
Definition at line 560 of file qtpasssettings.cpp.
Here is the call graph for this function: