aboutsummaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorAqua-sama <aqua@iserlohn-fortress.net>2017-08-24 16:57:43 +0200
committerAqua-sama <aqua@iserlohn-fortress.net>2017-08-24 16:57:43 +0200
commitc27723554a18f634324da1eb0fa8827f559555ec (patch)
tree03e501fb1703e49e8bd007e0086b986a03ed58be /src
parentCleaned up code (diff)
downloadsmolbote-c27723554a18f634324da1eb0fa8827f559555ec.tar.xz
AStyle pass
Diffstat (limited to 'src')
-rw-r--r--src/lib/navigation/addressbar.cpp22
-rw-r--r--src/lib/navigation/addressbar.h20
-rw-r--r--src/lib/navigation/urllineedit.cpp6
-rw-r--r--src/mainwindow.cpp4
4 files changed, 46 insertions, 6 deletions
diff --git a/src/lib/navigation/addressbar.cpp b/src/lib/navigation/addressbar.cpp
index dd9991d..909c89a 100644
--- a/src/lib/navigation/addressbar.cpp
+++ b/src/lib/navigation/addressbar.cpp
@@ -1,3 +1,23 @@
+/*******************************************************************************
+ **
+ ** smolbote: yet another qute browser
+ ** Copyright (C) 2017 Xian Nox
+ **
+ ** 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 "addressbar.h"
#include <QHBoxLayout>
@@ -12,7 +32,7 @@ AddressBar::AddressBar(QWidget *parent) : QWidget(parent)
setFocusProxy(m_urlLineEdit);
_layout->addWidget(m_urlLineEdit);
- connect(m_urlLineEdit, &UrlLineEdit::returnPressed, [&](){
+ connect(m_urlLineEdit, &UrlLineEdit::returnPressed, [&]() {
if(m_urlLineEdit->text().startsWith('#')) {
QString term = m_urlLineEdit->text().mid(1);
term.replace(' ', '+');
diff --git a/src/lib/navigation/addressbar.h b/src/lib/navigation/addressbar.h
index b5b312a..8b037e1 100644
--- a/src/lib/navigation/addressbar.h
+++ b/src/lib/navigation/addressbar.h
@@ -1,3 +1,23 @@
+/*******************************************************************************
+ **
+ ** smolbote: yet another qute browser
+ ** Copyright (C) 2017 Xian Nox
+ **
+ ** 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/>.
+ **
+ ******************************************************************************/
+
#ifndef ADDRESSBAR_H
#define ADDRESSBAR_H
diff --git a/src/lib/navigation/urllineedit.cpp b/src/lib/navigation/urllineedit.cpp
index 85bcacc..5ba0701 100644
--- a/src/lib/navigation/urllineedit.cpp
+++ b/src/lib/navigation/urllineedit.cpp
@@ -56,10 +56,10 @@ UrlLineEdit::UrlLineEdit(QWidget *parent) :
listWidget->addItem("start.duckduckgo.com");
listWidget->addItem("neueland.iserlohn-fortress.net");
- connect(listWidget, &QListWidget::itemSelectionChanged, [this](){
+ connect(listWidget, &QListWidget::itemSelectionChanged, [this]() {
setText(listWidget->currentItem()->text());
});
- connect(listWidget, &QListWidget::itemActivated, [this](QListWidgetItem *item){
+ connect(listWidget, &QListWidget::itemActivated, [this](QListWidgetItem *item) {
setText(listWidget->currentItem()->text());;
this->m_menu->hide();
});
@@ -72,7 +72,7 @@ UrlLineEdit::UrlLineEdit(QWidget *parent) :
// connect signals
connect(this, SIGNAL(textEdited(QString)), this, SLOT(showCompleter(QString)));
- connect(this, &QLineEdit::returnPressed, [this](){
+ connect(this, &QLineEdit::returnPressed, [this]() {
m_menu->hide();
});
diff --git a/src/mainwindow.cpp b/src/mainwindow.cpp
index 6306f62..bce1716 100644
--- a/src/mainwindow.cpp
+++ b/src/mainwindow.cpp
@@ -91,10 +91,10 @@ MainWindow::MainWindow(QUrl defaultUrl, QWidget *parent) :
this->addToolBar(Qt::TopToolBarArea, navigationToolBar);
// connect signals
- connect(m_addressBar, &AddressBar::addressEntered, [&](const QUrl &url){
+ connect(m_addressBar, &AddressBar::addressEntered, [&](const QUrl &url) {
tabBar->currentView()->load(url);
});
- connect(m_addressBar, &AddressBar::searchTermEntered, [&](const QString &string){
+ connect(m_addressBar, &AddressBar::searchTermEntered, [&](const QString &string) {
QString term = string.mid(1);
term.replace(' ', '+');
tabBar->currentView()->load(QUrl::fromUserInput(qApp->settings()->value("general.search").toString().replace("$term", term)));