aboutsummaryrefslogtreecommitdiff
path: root/src/mainwindow.h
diff options
context:
space:
mode:
authorAqua-sama <aqua@iserlohn-fortress.net>2017-01-16 17:35:08 +0100
committerAqua-sama <aqua@iserlohn-fortress.net>2017-01-16 17:35:08 +0100
commit06c640ce4b69fd2abe6df35cdb6a0387795e4220 (patch)
treeec2d1c3c5fa6a99220e6c92e4e39a751840935e5 /src/mainwindow.h
parentrenamed scripts/ to util/ (diff)
downloadsmolbote-06c640ce4b69fd2abe6df35cdb6a0387795e4220.tar.xz
Added About dialog
Diffstat (limited to 'src/mainwindow.h')
-rw-r--r--src/mainwindow.h9
1 files changed, 5 insertions, 4 deletions
diff --git a/src/mainwindow.h b/src/mainwindow.h
index f084b95..63ff93a 100644
--- a/src/mainwindow.h
+++ b/src/mainwindow.h
@@ -50,8 +50,11 @@ protected:
void closeEvent(QCloseEvent *event) override;
private slots:
+ void about();
+
void loadProfile(const QString &name);
- void handleLoadProfile();
+ void loadProfileGUI();
+ void execProfileEditor();
void handleNewWindow(const QUrl &url = QUrl(""));
void handleTabChanged(QWebEngineView *view);
@@ -59,8 +62,6 @@ private slots:
void handleUrlUpdated(const QUrl &url);
void handleTitleUpdated(const QString &title);
- void createProfileDialog();
-
private:
Browser *browserInstance;
DownloadDialog *downloadManager;
@@ -69,7 +70,7 @@ private:
// ui
Ui::MainWindow *ui;
- QMenu *browserMenu, *profileMenu;
+ QMenu *profileMenu;
QToolBar *navigationToolBar, *tabToolBar;
WebViewTabBar *tabBar;
QLineEdit *urlLineEdit;