/* * Copyright (C) 2024 KeePassXC Team * Copyright (C) 2010 Felix Geyer * * 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 . */ #ifndef KEEPASSX_DATABASEWIDGET_H #define KEEPASSX_DATABASEWIDGET_H #include #include "core/Database.h" #include "core/Group.h" #include "core/Metadata.h" #include "gui/MessageWidget.h" #include "gui/entry/EntryModel.h" #include "remote/RemoteHandler.h" class DatabaseOpenDialog; class DatabaseOpenWidget; class DatabaseSettingsDialog; class ReportsDialog; class FileWatcher; class EditEntryWidget; class EditGroupWidget; class EntryView; class EntrySearcher; class GroupView; class QFile; class QMenu; class QSplitter; class QLabel; class EntryPreviewWidget; class TagView; class ElidedLabel; class RemoteSettings; struct RemoteParams; namespace Ui { class SearchWidget; } class DatabaseWidget : public QStackedWidget { Q_OBJECT public: friend class DatabaseOpenDialog; enum class Mode { None, ViewMode, EditEntryMode, EditGroupMode, LockedMode, ReportsMode, DatabaseSettingsMode }; explicit DatabaseWidget(QSharedPointer db, QWidget* parent = nullptr); explicit DatabaseWidget(const QString& filePath, QWidget* parent = nullptr); ~DatabaseWidget() override; void setFocus(Qt::FocusReason reason); QSharedPointer database() const; DatabaseWidget::Mode currentMode() const; bool isLocked() const; bool isSaving() const; bool isSorted() const; bool isSearchActive() const; bool isEntryViewActive() const; bool isEntryEditActive() const; bool isGroupEditActive() const; QString getCurrentSearch(); void refreshSearch(); GroupView* groupView(); EntryView* entryView(); Group* currentGroup() const; bool canCloneCurrentGroup() const; bool canDeleteCurrentGroup() const; bool isGroupSelected() const; bool isRecycleBinSelected() const; int numberOfSelectedEntries() const; int currentEntryIndex() const; QString displayName() const; QString displayFileName() const; QString displayFilePath() const; QStringList customEntryAttributes() const; bool isEditWidgetModified() const; void clearAllWidgets(); Entry* currentSelectedEntry() const; bool currentEntryHasTitle(); bool currentEntryHasUsername(); bool currentEntryHasPassword(); bool currentEntryHasUrl(); bool currentEntryHasNotes(); bool currentEntryHasTotp(); #ifdef KPXC_FEATURE_SSHAGENT bool currentEntryHasSshKey(); #endif bool currentEntryHasAutoTypeEnabled(); QByteArray entryViewState() const; bool setEntryViewState(const QByteArray& state) const; QHash> splitterSizes() const; void setSplitterSizes(const QHash>& sizes); void setSearchStringForAutoType(const QString& search); void syncWithRemote(const RemoteParams* params); void syncDatabaseWithLockedDatabase(const QString& filePath, const RemoteParams* params); QList getRemoteParams() const; signals: // relayed Database signals void databaseFilePathChanged(const QString& oldPath, const QString& newPath); void databaseModified(); void databaseNonDataChanged(); void databaseSaved(); void databaseAboutToUnlock(); void databaseUnlocked(); void databaseLockRequested(); void databaseLocked(); // Emitted in replaceDatabase, may be caused by lock, reload, unlock, load. void databaseReplaced(const QSharedPointer& oldDb, const QSharedPointer& newDb); void closeRequest(); void currentModeChanged(DatabaseWidget::Mode mode); void groupChanged(); void entrySelectionChanged(); void requestOpenDatabase(const QString& filePath, bool inBackground, const QString& password, const QString& keyFile); void databaseMerged(QSharedPointer mergedDb); void databaseSyncInProgress(); void databaseSyncCompleted(const QString& syncName); void databaseSyncFailed(const QString& syncName, const QString& error); void databaseSyncUnlockFailed(const RemoteHandler::RemoteResult& result); void databaseSyncUnlocked(const RemoteHandler::RemoteResult& result); void unlockDatabaseInDialogForSync(const QString& filePath); void updateSyncProgress(int percentage, QString message); void groupContextMenuRequested(const QPoint& globalPos); void entryContextMenuRequested(const QPoint& globalPos); void listModeAboutToActivate(); void listModeActivated(); void searchModeAboutToActivate(); void searchModeActivated(); void splitterSizesChanged(); void entryViewStateChanged(); void clearSearch(); void requestGlobalAutoType(const QString& search); void requestSearch(const QString& search); public slots: bool lock(); bool save(); bool saveAs(); bool saveBackup(); void replaceDatabase(QSharedPointer db); void createEntry(); void cloneEntry(); void deleteSelectedEntries(); void restoreSelectedEntries(); void deleteEntries(QList entries, bool confirm = true); void focusOnEntries(bool editIfFocused = false); void focusOnGroups(bool editIfFocused = false); void moveEntryUp(); void moveEntryDown(); void copyTitle(); void copyUsername(); void copyPassword(); void copyURL(); void copyNotes(); void copyAttribute(QAction* action); bool copyFocusedTextSelection(); void filterByTag(); void setTag(QAction* action); void showTotp(); void showTotpKeyQrCode(); void copyTotp(); void copyPasswordTotp(); void setupTotp(); #ifdef KPXC_FEATURE_SSHAGENT void addToAgent(); void removeFromAgent(); #endif void performAutoType(const QString& sequence = {}); void performAutoTypeUsername(); void performAutoTypeUsernameEnter(); void performAutoTypePassword(); void performAutoTypePasswordEnter(); void performAutoTypeTOTP(); void setClipboardTextAndMinimize(const QString& text); void openUrl(); void downloadSelectedFavicons(); void downloadAllFavicons(); void downloadFaviconInBackground(Entry* entry); void openUrlForEntry(Entry* entry); void createGroup(); void cloneGroup(); void deleteGroup(); void switchToMainView(bool previousDialogAccepted = false); void switchToEntryEdit(); void switchToGroupEdit(); void sortGroupsAsc(); void sortGroupsDesc(); void switchToDatabaseSecurity(); void switchToDatabaseReports(); void switchToDatabaseSettings(); void switchToRemoteSettings(); #ifdef KPXC_FEATURE_BROWSER void switchToPasskeys(); void showImportPasskeyDialog(bool isEntry = false); void removePasskeyFromEntry(); bool currentEntryHasPasskey(); #endif void switchToOpenDatabase(); void switchToOpenDatabase(const QString& filePath); void switchToOpenDatabase(const QString& filePath, const QString& password, const QString& keyFile); void performUnlockDatabase(const QString& password, const QString& keyfile = {}); void emptyRecycleBin(); // Search related slots void search(const QString& searchtext); void saveSearch(const QString& searchtext); void deleteSearch(const QString& name); void setSearchCaseSensitive(bool state); void setSearchLimitGroup(bool state); void endSearch(); void showMessage(const QString& text, MessageWidget::MessageType type, bool showClosebutton = true, int autoHideTimeout = MessageWidget::DefaultAutoHideTimeout); void showErrorMessage(const QString& errorMessage); void hideMessage(); void triggerAutosaveTimer(); protected: void closeEvent(QCloseEvent* event) override; void showEvent(QShowEvent* event) override; bool focusNextPrevChild(bool next) override; private slots: void entryActivationSignalReceived(Entry* entry, EntryModel::ModelColumn column); void switchBackToEntryEdit(); void switchToHistoryView(Entry* entry); void switchToEntryEdit(Entry*); void switchToEntryEdit(Entry* entry, bool create); void switchToGroupEdit(Group* entry, bool create); void emitGroupContextMenuRequested(const QPoint& pos); void emitEntryContextMenuRequested(const QPoint& pos); void onEntryChanged(Entry* entry); void onGroupChanged(); void onDatabaseModified(); void onDatabaseNonDataChanged(); void onAutosaveDelayTimeout(); void connectDatabaseSignals(); void loadDatabase(bool accepted); void unlockDatabase(bool accepted); void mergeDatabase(bool accepted); void syncUnlockedDatabase(bool accepted); bool syncWithDatabase(const QSharedPointer& otherDb, QString& error); void uploadAndFinishSync(const RemoteParams* params, RemoteHandler::RemoteResult result); void finishSync(const RemoteParams* params, RemoteHandler::RemoteResult result); void emitCurrentModeChanged(); // Database autoreload slots void reloadDatabaseFile(); void restoreGroupEntryFocus(const QUuid& groupUuid, const QUuid& EntryUuid); void onConfigChanged(Config::ConfigKey key); private: int addChildWidget(QWidget* w); void processAutoOpen(); void openDatabaseFromEntry(const Entry* entry, bool inBackground = true); void performIconDownloads(const QList& entries, bool force = false, bool downloadInBackground = false); bool performSave(QString& errorMessage, const QString& fileName = {}); QSharedPointer m_db; QPointer m_mainWidget; QPointer m_mainSplitter; QPointer m_groupSplitter; QPointer m_messageWidget; QPointer m_previewView; QPointer m_previewSplitter; QPointer m_searchingLabel; QPointer m_shareLabel; QPointer m_editEntryWidget; QPointer m_editGroupWidget; QPointer m_historyEditEntryWidget; QPointer m_reportsDialog; QPointer m_databaseSettingDialog; QPointer m_databaseOpenWidget; QPointer m_groupView; QPointer m_tagView; QPointer m_entryView; QScopedPointer m_newGroup; QScopedPointer m_newEntry; QPointer m_newParent; QUuid m_groupBeforeLock; QUuid m_entryBeforeLock; int m_saveAttempts; bool m_attemptingLock = false; QScopedPointer m_remoteSettings; // Search state QScopedPointer m_entrySearcher; QString m_lastSearchText; QString m_nextSearchLabelText; bool m_searchLimitGroup; // Autoreload bool m_blockAutoSave; // Autosave delay QPointer m_autosaveTimer; // Auto-Type related QString m_searchStringForAutoType; }; #endif // KEEPASSX_DATABASEWIDGET_H