Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/keepassxreboot/keepassxc.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
path: root/src/gui
diff options
context:
space:
mode:
authorvarjolintu <sami.vanttinen@protonmail.com>2021-10-09 21:46:39 +0300
committerJonathan White <support@dmapps.us>2021-10-11 07:19:06 +0300
commitb6716bdfe5b0430a62973cf2702198a233f27c02 (patch)
treec459662b905c2e5729e88192736ed1a18bfb6cf0 /src/gui
parentc7cdce6e33533c889e057a8e8f95b618f3d1ee41 (diff)
Add Browser Integration to Group Edit page
Closes #1789 and closes #3998
Diffstat (limited to 'src/gui')
-rw-r--r--src/gui/entry/EditEntryWidget.cpp127
-rw-r--r--src/gui/entry/EditEntryWidget.h4
-rw-r--r--src/gui/entry/EditEntryWidgetBrowser.ui36
-rw-r--r--src/gui/group/EditGroupWidget.cpp104
-rw-r--r--src/gui/group/EditGroupWidget.h10
-rw-r--r--src/gui/group/EditGroupWidgetBrowser.ui174
6 files changed, 410 insertions, 45 deletions
diff --git a/src/gui/entry/EditEntryWidget.cpp b/src/gui/entry/EditEntryWidget.cpp
index 9a70b2118..e736efaad 100644
--- a/src/gui/entry/EditEntryWidget.cpp
+++ b/src/gui/entry/EditEntryWidget.cpp
@@ -1,6 +1,6 @@
/*
* Copyright (C) 2010 Felix Geyer <debfx@fobos.de>
- * Copyright (C) 2020 KeePassXC Team <team@keepassxc.org>
+ * Copyright (C) 2021 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
@@ -36,6 +36,7 @@
#include "core/Database.h"
#include "core/Entry.h"
#include "core/EntryAttributes.h"
+#include "core/Group.h"
#include "core/Metadata.h"
#include "core/TimeDelta.h"
#ifdef WITH_XC_SSHAGENT
@@ -263,6 +264,11 @@ void EditEntryWidget::setupBrowser()
m_additionalURLsDataModel->setEntryAttributes(m_entryAttributes);
m_browserUi->additionalURLsView->setModel(m_additionalURLsDataModel);
+ m_browserUi->messageWidget->setCloseButtonVisible(false);
+ m_browserUi->messageWidget->setAutoHideTimeout(-1);
+ m_browserUi->messageWidget->setAnimate(false);
+ m_browserUi->messageWidget->setVisible(false);
+
// Use a custom item delegate to align the icon to the right side
auto iconDelegate = new URLModelIconDelegate(m_browserUi->additionalURLsView);
m_browserUi->additionalURLsView->setItemDelegate(iconDelegate);
@@ -296,14 +302,26 @@ void EditEntryWidget::updateBrowser()
return;
}
- auto skip = m_browserUi->skipAutoSubmitCheckbox->isChecked();
- auto hide = m_browserUi->hideEntryCheckbox->isChecked();
- auto onlyHttpAuth = m_browserUi->onlyHttpAuthCheckbox->isChecked();
- auto notHttpAuth = m_browserUi->notHttpAuthCheckbox->isChecked();
- m_customData->set(BrowserService::OPTION_SKIP_AUTO_SUBMIT, (skip ? TRUE_STR : FALSE_STR));
- m_customData->set(BrowserService::OPTION_HIDE_ENTRY, (hide ? TRUE_STR : FALSE_STR));
- m_customData->set(BrowserService::OPTION_ONLY_HTTP_AUTH, (onlyHttpAuth ? TRUE_STR : FALSE_STR));
- m_customData->set(BrowserService::OPTION_NOT_HTTP_AUTH, (notHttpAuth ? TRUE_STR : FALSE_STR));
+ // Only update the custom data if no group level settings are used (checkbox is enabled)
+ if (m_browserUi->hideEntryCheckbox->isEnabled()) {
+ auto hide = m_browserUi->hideEntryCheckbox->isChecked();
+ m_customData->set(BrowserService::OPTION_HIDE_ENTRY, (hide ? TRUE_STR : FALSE_STR));
+ }
+
+ if (m_browserUi->skipAutoSubmitCheckbox->isEnabled()) {
+ auto skip = m_browserUi->skipAutoSubmitCheckbox->isChecked();
+ m_customData->set(BrowserService::OPTION_SKIP_AUTO_SUBMIT, (skip ? TRUE_STR : FALSE_STR));
+ }
+
+ if (m_browserUi->onlyHttpAuthCheckbox->isEnabled()) {
+ auto onlyHttpAuth = m_browserUi->onlyHttpAuthCheckbox->isChecked();
+ m_customData->set(BrowserService::OPTION_ONLY_HTTP_AUTH, (onlyHttpAuth ? TRUE_STR : FALSE_STR));
+ }
+
+ if (m_browserUi->notHttpAuthCheckbox->isEnabled()) {
+ auto notHttpAuth = m_browserUi->notHttpAuthCheckbox->isChecked();
+ m_customData->set(BrowserService::OPTION_NOT_HTTP_AUTH, (notHttpAuth ? TRUE_STR : FALSE_STR));
+ }
}
void EditEntryWidget::insertURL()
@@ -941,34 +959,55 @@ void EditEntryWidget::setForms(Entry* entry, bool restore)
setupBrowser();
}
- if (m_customData->contains(BrowserService::OPTION_SKIP_AUTO_SUBMIT)) {
- // clang-format off
- m_browserUi->skipAutoSubmitCheckbox->setChecked(m_customData->value(BrowserService::OPTION_SKIP_AUTO_SUBMIT) == TRUE_STR);
- // clang-format on
- } else {
- m_browserUi->skipAutoSubmitCheckbox->setChecked(false);
- }
-
- if (m_customData->contains(BrowserService::OPTION_HIDE_ENTRY)) {
- m_browserUi->hideEntryCheckbox->setChecked(m_customData->value(BrowserService::OPTION_HIDE_ENTRY)
- == TRUE_STR);
- } else {
- m_browserUi->hideEntryCheckbox->setChecked(false);
+ auto hideEntriesCheckBoxEnabled = true;
+ auto skipAutoSubmitCheckBoxEnabled = true;
+ auto onlyHttpAuthCheckBoxEnabled = true;
+ auto notHttpAuthCheckBoxEnabled = true;
+ auto hideEntries = false;
+ auto skipAutoSubmit = false;
+ auto onlyHttpAuth = false;
+ auto notHttpAuth = false;
+
+ const auto group = m_entry->group();
+ if (group) {
+ hideEntries = group->resolveCustomDataTriState(BrowserService::OPTION_HIDE_ENTRY) == Group::Enable;
+ skipAutoSubmit = group->resolveCustomDataTriState(BrowserService::OPTION_SKIP_AUTO_SUBMIT) == Group::Enable;
+ onlyHttpAuth = group->resolveCustomDataTriState(BrowserService::OPTION_ONLY_HTTP_AUTH) == Group::Enable;
+ notHttpAuth = group->resolveCustomDataTriState(BrowserService::OPTION_NOT_HTTP_AUTH) == Group::Enable;
+
+ hideEntriesCheckBoxEnabled =
+ group->resolveCustomDataTriState(BrowserService::OPTION_HIDE_ENTRY) == Group::Inherit;
+ skipAutoSubmitCheckBoxEnabled =
+ group->resolveCustomDataTriState(BrowserService::OPTION_SKIP_AUTO_SUBMIT) == Group::Inherit;
+ onlyHttpAuthCheckBoxEnabled =
+ group->resolveCustomDataTriState(BrowserService::OPTION_ONLY_HTTP_AUTH) == Group::Inherit;
+ notHttpAuthCheckBoxEnabled =
+ group->resolveCustomDataTriState(BrowserService::OPTION_NOT_HTTP_AUTH) == Group::Inherit;
}
- if (m_customData->contains(BrowserService::OPTION_ONLY_HTTP_AUTH)) {
- m_browserUi->onlyHttpAuthCheckbox->setChecked(m_customData->value(BrowserService::OPTION_ONLY_HTTP_AUTH)
- == TRUE_STR);
- } else {
- m_browserUi->onlyHttpAuthCheckbox->setChecked(false);
+ // Show information about group level settings
+ if (!hideEntriesCheckBoxEnabled || !skipAutoSubmitCheckBoxEnabled || !onlyHttpAuthCheckBoxEnabled
+ || !notHttpAuthCheckBoxEnabled) {
+ m_browserUi->messageWidget->showMessage(
+ tr("Some Browser Integration settings are overridden by group settings."), MessageWidget::Information);
+ m_browserUi->messageWidget->setVisible(true);
}
- if (m_customData->contains(BrowserService::OPTION_NOT_HTTP_AUTH)) {
- m_browserUi->notHttpAuthCheckbox->setChecked(m_customData->value(BrowserService::OPTION_NOT_HTTP_AUTH)
- == TRUE_STR);
- } else {
- m_browserUi->notHttpAuthCheckbox->setChecked(false);
- }
+ // Disable checkboxes based on group level settings
+ updateBrowserIntegrationCheckbox(
+ m_browserUi->hideEntryCheckbox, hideEntriesCheckBoxEnabled, hideEntries, BrowserService::OPTION_HIDE_ENTRY);
+ updateBrowserIntegrationCheckbox(m_browserUi->skipAutoSubmitCheckbox,
+ skipAutoSubmitCheckBoxEnabled,
+ skipAutoSubmit,
+ BrowserService::OPTION_SKIP_AUTO_SUBMIT);
+ updateBrowserIntegrationCheckbox(m_browserUi->onlyHttpAuthCheckbox,
+ onlyHttpAuthCheckBoxEnabled,
+ onlyHttpAuth,
+ BrowserService::OPTION_ONLY_HTTP_AUTH);
+ updateBrowserIntegrationCheckbox(m_browserUi->notHttpAuthCheckbox,
+ notHttpAuthCheckBoxEnabled,
+ notHttpAuth,
+ BrowserService::OPTION_NOT_HTTP_AUTH);
m_browserUi->addURLButton->setEnabled(!m_history);
m_browserUi->removeURLButton->setEnabled(false);
@@ -1163,6 +1202,28 @@ void EditEntryWidget::updateEntryData(Entry* entry) const
#endif
}
+void EditEntryWidget::updateBrowserIntegrationCheckbox(QCheckBox* checkBox,
+ bool enabled,
+ bool value,
+ const QString& option)
+{
+ auto block = checkBox->signalsBlocked();
+ checkBox->blockSignals(true);
+
+ if (enabled) {
+ if (m_customData->contains(option)) {
+ checkBox->setChecked(m_customData->value(option) == TRUE_STR);
+ } else {
+ checkBox->setChecked(false);
+ }
+ } else {
+ checkBox->setChecked(value);
+ }
+ checkBox->setEnabled(enabled);
+
+ checkBox->blockSignals(block);
+}
+
void EditEntryWidget::cancel()
{
if (m_history) {
diff --git a/src/gui/entry/EditEntryWidget.h b/src/gui/entry/EditEntryWidget.h
index 4616e1af5..89422c0d4 100644
--- a/src/gui/entry/EditEntryWidget.h
+++ b/src/gui/entry/EditEntryWidget.h
@@ -1,6 +1,6 @@
/*
* Copyright (C) 2010 Felix Geyer <debfx@fobos.de>
- * Copyright (C) 2017 KeePassXC Team <team@keepassxc.org>
+ * Copyright (C) 2021 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
@@ -20,6 +20,7 @@
#define KEEPASSX_EDITENTRYWIDGET_H
#include <QButtonGroup>
+#include <QCheckBox>
#include <QCompleter>
#include <QPointer>
#include <QTimer>
@@ -152,6 +153,7 @@ private:
void setForms(Entry* entry, bool restore = false);
QMenu* createPresetsMenu();
void updateEntryData(Entry* entry) const;
+ void updateBrowserIntegrationCheckbox(QCheckBox* checkBox, bool enabled, bool value, const QString& option);
#ifdef WITH_XC_SSHAGENT
bool getOpenSSHKey(OpenSSHKey& key, bool decrypt = false);
#endif
diff --git a/src/gui/entry/EditEntryWidgetBrowser.ui b/src/gui/entry/EditEntryWidgetBrowser.ui
index 5f117e987..093d141e8 100644
--- a/src/gui/entry/EditEntryWidgetBrowser.ui
+++ b/src/gui/entry/EditEntryWidgetBrowser.ui
@@ -31,22 +31,32 @@
</widget>
</item>
<item>
+ <widget class="MessageWidget" name="messageWidget" native="true">
+ <property name="sizePolicy">
+ <sizepolicy hsizetype="Preferred" vsizetype="Preferred">
+ <horstretch>0</horstretch>
+ <verstretch>0</verstretch>
+ </sizepolicy>
+ </property>
+ </widget>
+ </item>
+ <item>
<widget class="QGroupBox" name="groupBox_2">
<property name="title">
<string>General</string>
</property>
<layout class="QVBoxLayout" name="verticalLayout_2">
<item>
- <widget class="QCheckBox" name="skipAutoSubmitCheckbox">
+ <widget class="QCheckBox" name="hideEntryCheckbox">
<property name="text">
- <string>Skip Auto-Submit for this entry</string>
+ <string>Hide this entry from the browser extension</string>
</property>
</widget>
</item>
<item>
- <widget class="QCheckBox" name="hideEntryCheckbox">
+ <widget class="QCheckBox" name="skipAutoSubmitCheckbox">
<property name="text">
- <string>Hide this entry from the browser extension</string>
+ <string>Skip Auto-Submit for this entry</string>
</property>
</widget>
</item>
@@ -69,16 +79,16 @@
<string>Do not use this entry with HTTP Basic Auth</string>
</property>
</widget>
- </item>
+ </item>
</layout>
</widget>
</item>
<item>
<widget class="QGroupBox" name="groupBox_3">
- <property name="title">
- <string>Additional URL's</string>
- </property>
- <layout class="QHBoxLayout" name="horizontalLayout_1">
+ <property name="title">
+ <string>Additional URL's</string>
+ </property>
+ <layout class="QHBoxLayout" name="horizontalLayout_1">
<item>
<widget class="QListView" name="additionalURLsView">
<property name="minimumSize">
@@ -147,9 +157,15 @@
</item>
</layout>
</widget>
+ <customwidgets>
+ <customwidget>
+ <class>MessageWidget</class>
+ <extends>QWidget</extends>
+ <header>gui/MessageWidget.h</header>
+ </customwidget>
+ </customwidgets>
<tabstops>
<tabstop>skipAutoSubmitCheckbox</tabstop>
- <tabstop>hideEntryCheckbox</tabstop>
<tabstop>onlyHttpAuthCheckbox</tabstop>
<tabstop>additionalURLsView</tabstop>
<tabstop>addURLButton</tabstop>
diff --git a/src/gui/group/EditGroupWidget.cpp b/src/gui/group/EditGroupWidget.cpp
index 15d8fd4a5..687dd056d 100644
--- a/src/gui/group/EditGroupWidget.cpp
+++ b/src/gui/group/EditGroupWidget.cpp
@@ -1,5 +1,6 @@
/*
* Copyright (C) 2011 Felix Geyer <debfx@fobos.de>
+ * Copyright (C) 2021 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
@@ -17,6 +18,10 @@
#include "EditGroupWidget.h"
#include "ui_EditGroupWidgetMain.h"
+#if defined(WITH_XC_BROWSER)
+#include "browser/BrowserService.h"
+#include "ui_EditGroupWidgetBrowser.h"
+#endif
#include "core/Config.h"
#include "core/Metadata.h"
@@ -65,12 +70,23 @@ EditGroupWidget::EditGroupWidget(QWidget* parent)
, m_editGroupWidgetMain(new QScrollArea())
, m_editGroupWidgetIcons(new EditWidgetIcons())
, m_editWidgetProperties(new EditWidgetProperties())
+#if defined(WITH_XC_BROWSER)
+ , m_browserSettingsChanged(false)
+ , m_browserUi(new Ui::EditGroupWidgetBrowser())
+ , m_browserWidget(new QScrollArea())
+#endif
, m_group(nullptr)
{
m_mainUi->setupUi(m_editGroupWidgetMain);
addPage(tr("Group"), icons()->icon("document-edit"), m_editGroupWidgetMain);
addPage(tr("Icon"), icons()->icon("preferences-desktop-icons"), m_editGroupWidgetIcons);
+#if defined(WITH_XC_BROWSER)
+ if (config()->get(Config::Browser_Enabled).toBool()) {
+ addPage(tr("Browser Integration"), icons()->icon("internet-web-browser"), m_browserWidget);
+ m_browserUi->setupUi(m_browserWidget);
+ }
+#endif
#if defined(WITH_XC_KEESHARE)
addEditPage(new EditGroupPageKeeShare(this));
#endif
@@ -116,6 +132,33 @@ void EditGroupWidget::setupModifiedTracking()
// Icon tab
connect(m_editGroupWidgetIcons, SIGNAL(widgetUpdated()), SLOT(setModified()));
+
+#if defined(WITH_XC_BROWSER)
+ if (config()->get(Config::Browser_Enabled).toBool()) {
+ // Browser integration tab
+ connect(
+ m_browserUi->browserIntegrationHideEntriesComboBox, SIGNAL(currentIndexChanged(int)), SLOT(setModified()));
+ connect(m_browserUi->browserIntegrationSkipAutoSubmitComboBox,
+ SIGNAL(currentIndexChanged(int)),
+ SLOT(setModified()));
+ connect(
+ m_browserUi->browserIntegrationOnlyHttpAuthComboBox, SIGNAL(currentIndexChanged(int)), SLOT(setModified()));
+ connect(
+ m_browserUi->browserIntegrationNotHttpAuthComboBox, SIGNAL(currentIndexChanged(int)), SLOT(setModified()));
+ connect(m_browserUi->browserIntegrationHideEntriesComboBox,
+ SIGNAL(currentIndexChanged(int)),
+ SLOT(updateBrowserModified()));
+ connect(m_browserUi->browserIntegrationSkipAutoSubmitComboBox,
+ SIGNAL(currentIndexChanged(int)),
+ SLOT(updateBrowserModified()));
+ connect(m_browserUi->browserIntegrationOnlyHttpAuthComboBox,
+ SIGNAL(currentIndexChanged(int)),
+ SLOT(updateBrowserModified()));
+ connect(m_browserUi->browserIntegrationNotHttpAuthComboBox,
+ SIGNAL(currentIndexChanged(int)),
+ SLOT(updateBrowserModified()));
+ }
+#endif
}
void EditGroupWidget::loadGroup(Group* group, bool create, const QSharedPointer<Database>& database)
@@ -170,6 +213,37 @@ void EditGroupWidget::loadGroup(Group* group, bool create, const QSharedPointer<
page.set(m_temporaryGroup.data(), m_db);
}
+#ifdef WITH_XC_BROWSER
+ if (config()->get(Config::Browser_Enabled).toBool()) {
+ auto inheritHideEntries = false;
+ auto inheritSkipSubmit = false;
+ auto inheritOnlyHttp = false;
+ auto inheritNoHttp = false;
+
+ auto parent = group->parentGroup();
+ if (parent) {
+ inheritHideEntries = parent->resolveCustomDataTriState(BrowserService::OPTION_HIDE_ENTRY);
+ inheritSkipSubmit = parent->resolveCustomDataTriState(BrowserService::OPTION_SKIP_AUTO_SUBMIT);
+ inheritOnlyHttp = parent->resolveCustomDataTriState(BrowserService::OPTION_ONLY_HTTP_AUTH);
+ inheritNoHttp = parent->resolveCustomDataTriState(BrowserService::OPTION_NOT_HTTP_AUTH);
+ }
+
+ addTriStateItems(m_browserUi->browserIntegrationHideEntriesComboBox, inheritHideEntries);
+ addTriStateItems(m_browserUi->browserIntegrationSkipAutoSubmitComboBox, inheritSkipSubmit);
+ addTriStateItems(m_browserUi->browserIntegrationOnlyHttpAuthComboBox, inheritOnlyHttp);
+ addTriStateItems(m_browserUi->browserIntegrationNotHttpAuthComboBox, inheritNoHttp);
+
+ m_browserUi->browserIntegrationHideEntriesComboBox->setCurrentIndex(
+ indexFromTriState(group->resolveCustomDataTriState(BrowserService::OPTION_HIDE_ENTRY, false)));
+ m_browserUi->browserIntegrationSkipAutoSubmitComboBox->setCurrentIndex(
+ indexFromTriState(group->resolveCustomDataTriState(BrowserService::OPTION_SKIP_AUTO_SUBMIT, false)));
+ m_browserUi->browserIntegrationOnlyHttpAuthComboBox->setCurrentIndex(
+ indexFromTriState(group->resolveCustomDataTriState(BrowserService::OPTION_ONLY_HTTP_AUTH, false)));
+ m_browserUi->browserIntegrationNotHttpAuthComboBox->setCurrentIndex(
+ indexFromTriState(group->resolveCustomDataTriState(BrowserService::OPTION_NOT_HTTP_AUTH, false)));
+ }
+#endif
+
setCurrentPage(0);
m_mainUi->editName->setFocus();
@@ -217,6 +291,27 @@ void EditGroupWidget::apply()
page.assign();
}
+#ifdef WITH_XC_BROWSER
+ if (config()->get(Config::Browser_Enabled).toBool()) {
+ if (!m_browserSettingsChanged) {
+ return;
+ }
+
+ m_temporaryGroup->setCustomDataTriState(
+ BrowserService::OPTION_HIDE_ENTRY,
+ triStateFromIndex(m_browserUi->browserIntegrationHideEntriesComboBox->currentIndex()));
+ m_temporaryGroup->setCustomDataTriState(
+ BrowserService::OPTION_SKIP_AUTO_SUBMIT,
+ triStateFromIndex(m_browserUi->browserIntegrationSkipAutoSubmitComboBox->currentIndex()));
+ m_temporaryGroup->setCustomDataTriState(
+ BrowserService::OPTION_ONLY_HTTP_AUTH,
+ triStateFromIndex(m_browserUi->browserIntegrationOnlyHttpAuthComboBox->currentIndex()));
+ m_temporaryGroup->setCustomDataTriState(
+ BrowserService::OPTION_NOT_HTTP_AUTH,
+ triStateFromIndex(m_browserUi->browserIntegrationNotHttpAuthComboBox->currentIndex()));
+ }
+#endif
+
// Icons add/remove are applied globally outside the transaction!
m_group->copyDataFrom(m_temporaryGroup.data());
@@ -243,7 +338,7 @@ void EditGroupWidget::cancel()
if (isModified()) {
auto result = MessageBox::question(this,
QString(),
- tr("Entry has unsaved changes"),
+ tr("Group has unsaved changes"),
MessageBox::Cancel | MessageBox::Save | MessageBox::Discard,
MessageBox::Cancel);
if (result == MessageBox::Cancel) {
@@ -259,6 +354,13 @@ void EditGroupWidget::cancel()
emit editFinished(false);
}
+#ifdef WITH_XC_BROWSER
+void EditGroupWidget::updateBrowserModified()
+{
+ m_browserSettingsChanged = true;
+}
+#endif
+
void EditGroupWidget::clear()
{
m_group = nullptr;
diff --git a/src/gui/group/EditGroupWidget.h b/src/gui/group/EditGroupWidget.h
index 03e93d2c3..e61e38c54 100644
--- a/src/gui/group/EditGroupWidget.h
+++ b/src/gui/group/EditGroupWidget.h
@@ -1,5 +1,6 @@
/*
* Copyright (C) 2011 Felix Geyer <debfx@fobos.de>
+ * Copyright (C) 2021 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
@@ -31,6 +32,7 @@ class EditWidgetProperties;
namespace Ui
{
class EditGroupWidgetMain;
+ class EditGroupWidgetBrowser;
class EditWidget;
} // namespace Ui
@@ -69,6 +71,9 @@ private slots:
void apply();
void save();
void cancel();
+#ifdef WITH_XC_BROWSER
+ void updateBrowserModified();
+#endif
private:
void addTriStateItems(QComboBox* comboBox, bool inheritValue);
@@ -81,6 +86,11 @@ private:
QPointer<QScrollArea> m_editGroupWidgetMain;
QPointer<EditWidgetIcons> m_editGroupWidgetIcons;
QPointer<EditWidgetProperties> m_editWidgetProperties;
+#ifdef WITH_XC_BROWSER
+ bool m_browserSettingsChanged;
+ const QScopedPointer<Ui::EditGroupWidgetBrowser> m_browserUi;
+ QPointer<QScrollArea> m_browserWidget;
+#endif
QScopedPointer<Group> m_temporaryGroup;
QPointer<Group> m_group;
diff --git a/src/gui/group/EditGroupWidgetBrowser.ui b/src/gui/group/EditGroupWidgetBrowser.ui
new file mode 100644
index 000000000..f043438d0
--- /dev/null
+++ b/src/gui/group/EditGroupWidgetBrowser.ui
@@ -0,0 +1,174 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<ui version="4.0">
+ <class>EditGroupWidgetBrowser</class>
+ <widget class="QScrollArea" name="EditGroupWidgetBrowser">
+ <property name="geometry">
+ <rect>
+ <x>0</x>
+ <y>0</y>
+ <width>539</width>
+ <height>523</height>
+ </rect>
+ </property>
+ <property name="windowTitle">
+ <string>Edit Group</string>
+ </property>
+ <property name="frameShape">
+ <enum>QFrame::NoFrame</enum>
+ </property>
+ <property name="frameShadow">
+ <enum>QFrame::Plain</enum>
+ </property>
+ <property name="horizontalScrollBarPolicy">
+ <enum>Qt::ScrollBarAlwaysOff</enum>
+ </property>
+ <property name="sizeAdjustPolicy">
+ <enum>QAbstractScrollArea::AdjustToContents</enum>
+ </property>
+ <property name="widgetResizable">
+ <bool>true</bool>
+ </property>
+ <widget class="QWidget" name="container">
+ <property name="geometry">
+ <rect>
+ <x>0</x>
+ <y>0</y>
+ <width>539</width>
+ <height>523</height>
+ </rect>
+ </property>
+ <layout class="QVBoxLayout" name="verticalLayout_1">
+ <property name="leftMargin">
+ <number>0</number>
+ </property>
+ <property name="topMargin">
+ <number>0</number>
+ </property>
+ <property name="rightMargin">
+ <number>0</number>
+ </property>
+ <property name="bottomMargin">
+ <number>0</number>
+ </property>
+ <item>
+ <widget class="QLabel" name="label">
+ <property name="text">
+ <string>These settings affect to the group's behaviour with the browser extension.</string>
+ </property>
+ </widget>
+ </item>
+ <item>
+ <layout class="QGridLayout" name="gridLayout" rowstretch="0,0,0,1" columnstretch="0,1" rowminimumheight="0,0,0,1">
+    <property name="leftMargin">
+   <number>0</number>
+   </property>
+   <property name="topMargin">
+   <number>10</number>
+   </property>
+   <property name="rightMargin">
+   <number>0</number>
+   </property>
+   <property name="bottomMargin">
+   <number>0</number>
+   </property>
+   <property name="horizontalSpacing">
+   <number>10</number>
+   </property>
+   <property name="verticalSpacing">
+   <number>8</number>
+   </property>
+   <item row="0" column="0">
+   <widget class="QLabel" name="browserIntegrationHideEntriesLabel">
+   <property name="text">
+   <string>Hide entries from browser extension:</string>
+   </property>
+   <property name="alignment">
+   <set>Qt::AlignLeading|Qt::AlignLeft|Qt::AlignRight|Qt::AlignTrailing|Qt::AlignVCenter</set>
+   </property>
+   </widget>
+   </item>
+   <item row="0" column="1">
+   <widget class="QComboBox" name="browserIntegrationHideEntriesComboBox">
+   <property name="accessibleName">
+   <string>Hide entries from browser extension toggle for this and sub groups</string>
+   </property>
+   </widget>
+   </item>
+   <item row="1" column="0">
+   <widget class="QLabel" name="browserIntegrationSkipAutoSubmitLabel">
+   <property name="text">
+   <string>Skip Auto-Submit for entries:</string>
+   </property>
+   <property name="alignment">
+   <set>Qt::AlignLeading|Qt::AlignLeft|Qt::AlignRight|Qt::AlignTrailing|Qt::AlignVCenter</set>
+   </property>
+   </widget>
+   </item>
+   <item row="1" column="1">
+   <widget class="QComboBox" name="browserIntegrationSkipAutoSubmitComboBox">
+   <property name="accessibleName">
+   <string>Skip Auto-Submit toggle for this and sub groups</string>
+   </property>
+   </widget>
+   </item>
+   <item row="2" column="0">
+   <widget class="QLabel" name="browserIntegrationOnlyHttpAuthLabel">
+   <property name="text">
+   <string>Use entries only with HTTP Basic Auth:</string>
+   </property>
+   <property name="alignment">
+   <set>Qt::AlignLeading|Qt::AlignLeft|Qt::AlignRight|Qt::AlignTrailing|Qt::AlignVCenter</set>
+   </property>
+   </widget>
+   </item>
+   <item row="2" column="1">
+   <widget class="QComboBox" name="browserIntegrationOnlyHttpAuthComboBox">
+   <property name="accessibleName">
+   <string>Only HTTP Auth toggle for this and sub groups</string>
+   </property>
+   </widget>
+   </item>
+   <item row="3" column="0">
+   <widget class="QLabel" name="browserIntegrationNotHttpAuthLabel">
+    <property name="text">
+    <string>Do not use entries with HTTP Basic Auth:</string>
+    </property>
+    <property name="alignment">
+    <set>Qt::AlignLeading|Qt::AlignLeft|Qt::AlignRight|Qt::AlignTrailing|Qt::AlignVCenter</set>
+    </property>
+    </widget>
+    </item>
+    <item row="3" column="1">
+    <widget class="QComboBox" name="browserIntegrationNotHttpAuthComboBox">
+    <property name="accessibleName">
+    <string>Do not use HTTP Auth toggle for this and sub groups</string>
+    </property>
+    </widget>
+    </item>
+    <item row="4" column="0">
+    <spacer name="verticalSpacer_1">
+    <property name="orientation">
+    <enum>Qt::Vertical</enum>
+    </property>
+    <property name="sizeHint" stdset="0">
+    <size>
+    <width>20</width>
+    <height>40</height>
+   </size>
+   </property>
+   </spacer>
+   </item>
+   </layout>
+  </item>
+ </layout>
+ </widget>
+ </widget>
+ <tabstops>
+ <tabstop>browserIntegrationHideEntriesComboBox</tabstop>
+ <tabstop>browserIntegrationSkipAutoSubmitComboBox</tabstop>
+ <tabstop>browserIntegrationOnlyHttpAuthComboBox</tabstop>
+ <tabstop>browserIntegrationNotHttpAuthComboBox</tabstop>
+ </tabstops>
+ <resources/>
+ <connections/>
+</ui>