summaryrefslogtreecommitdiff
path: root/src/rekonqwindow_class.cpp
blob: cf72144890066b988cf529973558b7dc088421d9 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
/* ============================================================
 *     The rekonq project
 * ============================================================
 * SPDX-License-Identifier: GPL-2.0-or-later
 * Copyright (C) 2013 by Andrea Diamantini <adjam7 at gmail dot com>
 * SPDX-License-Identifier: GPL-3.0-only
 * Copyright (C) 2022 aqua <aqua@iserlohn-fortress.net>
 * ============================================================ */

#include "rekonqwindow.hpp"
#include "ui_rekonqwindow.h"
#include <QRegularExpression>
#include <qglobal.h>
#include <rview.hpp>

#ifndef REKONQ_TEST
#include "application.hpp"
#include "bookmarks/bookmarkstreemodel.hpp"
#include "settings/settingsdialog.h"
#include "taskmanager.h"
#include <spdlog/spdlog.h>
#endif

#if defined(QT_DEBUG) && !defined(REKONQ_TEST)
#include "test/rview_fake.h"
#endif

RekonqWindow::RekonqWindow(QWidget *parent) : QMainWindow(parent), ui(new Ui::RekonqWindow)
{
  ui->setupUi(this);

#ifndef REKONQ_TEST
  ui->bookmarksPanel->setModel(Application::instance()->bookmarks());
  ui->bookmarksToolBar->setModel(Application::instance()->bookmarks());
  ui->menuBookmarks->setModel(Application::instance()->bookmarks());
#endif
  connect(ui->bookmarksPanel, &BookmarksPanel::loadUrl, this,
          qOverload<const QUrl &, rekonq::OpenType>(&RekonqWindow::loadUrl));
  connect(ui->bookmarksToolBar, &BookmarkToolBar::loadUrl, this,
          qOverload<const QUrl &, rekonq::OpenType>(&RekonqWindow::loadUrl));
  connect(ui->menuBookmarks, &BookmarksMenu::loadUrl, this,
          qOverload<const QUrl &, rekonq::OpenType>(&RekonqWindow::loadUrl));

  connect(ui->tabs, &TabBar::currentChanged, this, [this](RekonqView *view) {
    if (view == nullptr) { // last tab has been closed
      close();
      return;
    }

    ui->views->setCurrentWidget(view);
    ui->urlBar->setCurrentView(view);
  });
  connect(ui->tabs, &TabBar::removeView, this, [this](RekonqView *view) { ui->views->removeWidget(view); });

  connect(ui->back, &QToolButton::clicked, this, [this]() { currentView()->back(); });
  connect(ui->forward, &QToolButton::clicked, this, [this]() { currentView()->forward(); });
  connect(ui->refresh, &QToolButton::clicked, this, [this]() { currentView()->refresh(); });
  connect(ui->home, &QToolButton::clicked, this, [this]() { loadUrl(rekonq::HomePage, rekonq::CurrentTab); });

  auto *actionFocusUrlBar = new QAction(this);
  actionFocusUrlBar->setShortcut({"F6"});
  connect(actionFocusUrlBar, &QAction::triggered, this, [this]() {
    ui->urlBar->setFocus();
    ui->urlBar->selectAll();
  });
  addAction(actionFocusUrlBar);

  // connect menu actions
  // file menu
#if defined(QT_DEBUG) && !defined(REKONQ_TEST)
  {
    auto *actionNewDebugTab = new QAction(tr("New Debug Tab"), ui->menuFile);
    connect(actionNewDebugTab, &QAction::triggered, this, [this]() { addView(new RekonqView_fake(this)); });
    ui->menuFile->insertAction(ui->actionNewTab, actionNewDebugTab);
  }
#endif
  connect(ui->actionNewTab, &QAction::triggered, this,
          [this]() { loadUrl(rekonq::NewTabPage, rekonq::NewFocusedTab); });
  connect(ui->actionCloseTab, &QAction::triggered, this,
          [this]() { emit ui->tabs->tabCloseRequested(ui->tabs->currentIndex()); });
  connect(ui->actionQuit, &QAction::triggered, qApp, &QApplication::quit);
  // edit menu
  // view menu
  // history menu
  // bookmarks menu
  connect(ui->actionShowBookmarksPanel, &QAction::triggered, this, &RekonqWindow::showBookmarksPanel);
  // settings menu
#ifndef REKONQ_TEST
  connect(ui->actionSettings, &QAction::triggered, this,
          [this]() { (new SettingsDialog(Application::instance()->settings(), this))->show(); });
  connect(ui->actionTaskManager, &QAction::triggered, this, [this]() { (new TaskManager(this))->show(); });
#endif
  // help menu
  connect(ui->actionAboutQt, &QAction::triggered, qApp, &QApplication::aboutQt);

  connect(ui->newTab, &QToolButton::clicked, ui->actionNewTab, &QAction::trigger);
}

RekonqWindow::~RekonqWindow() { delete ui; }

void RekonqWindow::setupShortcuts(RekonqSettings *settings)
{
  settings->beginGroup("Shortcuts");

  for (auto *action : findChildren<QAction *>(QRegularExpression("^action.*"))) {
    const auto shortcut = settings->value(action->objectName());
    if (!shortcut.isNull()) {
      action->setShortcut(shortcut.toString());
#ifndef REKONQ_TEST
      spdlog::debug("Set shortcut {} -> {}", qUtf8Printable(shortcut.toString()), qUtf8Printable(action->objectName()));
#endif
    }
  }

  settings->endGroup();
}

void RekonqWindow::showBookmarksPanel(bool on) { ui->bookmarksPanel->setVisible(on); }