You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
73 lines
3.3 KiB
73 lines
3.3 KiB
/* ============================================================ |
|
* Falkon - Qt web browser |
|
* Copyright (C) 2010-2016 David Rosca <nowrep@gmail.com> |
|
* |
|
* 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 3 of the License, or |
|
* (at your option) any later version. |
|
* |
|
* 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 "qzsettings.h" |
|
#include "webview.h" |
|
|
|
QzSettings::QzSettings() |
|
{ |
|
loadSettings(); |
|
} |
|
|
|
void QzSettings::loadSettings() |
|
{ |
|
Settings settings; |
|
settings.beginGroup("AddressBar"); |
|
selectAllOnDoubleClick = settings.value("SelectAllTextOnDoubleClick", true).toBool(); |
|
selectAllOnClick = settings.value("SelectAllTextOnClick", false).toBool(); |
|
showLoadingProgress = settings.value("ShowLoadingProgress", false).toBool(); |
|
showLocationSuggestions = settings.value("showSuggestions", 0).toInt(); |
|
showSwitchTab = settings.value("showSwitchTab", true).toBool(); |
|
alwaysShowGoIcon = settings.value("alwaysShowGoIcon", false).toBool(); |
|
useInlineCompletion = settings.value("useInlineCompletion", true).toBool(); |
|
settings.endGroup(); |
|
|
|
settings.beginGroup("SearchEngines"); |
|
searchOnEngineChange = settings.value("SearchOnEngineChange", true).toBool(); |
|
searchFromAddressBar = settings.value("SearchFromAddressBar", true).toBool(); |
|
searchWithDefaultEngine = settings.value("SearchWithDefaultEngine", true).toBool(); |
|
showABSearchSuggestions = settings.value("showSearchSuggestions", true).toBool(); |
|
showWSBSearchSuggestions = settings.value("showSuggestions", true).toBool(); |
|
settings.endGroup(); |
|
|
|
settings.beginGroup("Web-Browser-Settings"); |
|
defaultZoomLevel = settings.value("DefaultZoomLevel", WebView::zoomLevels().indexOf(100)).toInt(); |
|
loadTabsOnActivation = settings.value("LoadTabsOnActivation", true).toBool(); |
|
autoOpenProtocols = settings.value("AutomaticallyOpenProtocols", QStringList()).toStringList(); |
|
blockedProtocols = settings.value("BlockOpeningProtocols", QStringList()).toStringList(); |
|
settings.endGroup(); |
|
|
|
settings.beginGroup("Browser-Tabs-Settings"); |
|
newTabPosition = settings.value("OpenNewTabsSelected", false).toBool() ? Qz::NT_CleanSelectedTab : Qz::NT_CleanNotSelectedTab; |
|
tabsOnTop = settings.value("TabsOnTop", true).toBool(); |
|
openPopupsInTabs = settings.value("OpenPopupsInTabs", false).toBool(); |
|
alwaysSwitchTabsWithWheel = settings.value("AlwaysSwitchTabsWithWheel", false).toBool(); |
|
settings.endGroup(); |
|
} |
|
|
|
void QzSettings::saveSettings() |
|
{ |
|
Settings settings; |
|
settings.beginGroup("Web-Browser-Settings"); |
|
settings.setValue("AutomaticallyOpenProtocols", autoOpenProtocols); |
|
settings.setValue("BlockOpeningProtocols", blockedProtocols); |
|
settings.endGroup(); |
|
|
|
settings.beginGroup("Browser-Tabs-Settings"); |
|
settings.setValue("TabsOnTop", tabsOnTop); |
|
settings.endGroup(); |
|
}
|
|
|