aboutsummaryrefslogtreecommitdiff
path: root/src/bookmarks/bookmarkswidget.h
diff options
context:
space:
mode:
authorAqua-sama <aqua@iserlohn-fortress.net>2020-01-17 13:39:59 +0200
committerAqua-sama <aqua@iserlohn-fortress.net>2020-01-17 13:39:59 +0200
commit4c73f86fc6cbdaaee90f9f8e40af36c1ab84c374 (patch)
tree63b42986ffccb3c0fdb3b978f3c78b56ca5a03a8 /src/bookmarks/bookmarkswidget.h
parentCreate default profile when the one set doesn't exist (diff)
parentParse Tags and Descriptions in FFJson (diff)
downloadsmolbote-4c73f86fc6cbdaaee90f9f8e40af36c1ab84c374.tar.xz
Merge branch 'firefox-bookmarks-json-importer'
Diffstat (limited to 'src/bookmarks/bookmarkswidget.h')
-rw-r--r--src/bookmarks/bookmarkswidget.h50
1 files changed, 50 insertions, 0 deletions
diff --git a/src/bookmarks/bookmarkswidget.h b/src/bookmarks/bookmarkswidget.h
new file mode 100644
index 0000000..149d2a6
--- /dev/null
+++ b/src/bookmarks/bookmarkswidget.h
@@ -0,0 +1,50 @@
+/*
+ * This file is part of smolbote. It's copyrighted by the contributors recorded
+ * in the version control history of the file, available from its original
+ * location: https://neueland.iserlohn-fortress.net/gitea/aqua/smolbote
+ *
+ * SPDX-License-Identifier: GPL-3.0
+ */
+
+#ifndef BOOKMARKSDIALOG_H
+#define BOOKMARKSDIALOG_H
+
+#include <QFile>
+#include <QShortcut>
+#include <QWidget>
+#include <functional>
+
+namespace Ui
+{
+class BookmarksDialog;
+}
+
+class BookmarksView;
+class BookmarkModel;
+class BookmarksWidget : public QWidget
+{
+ Q_OBJECT
+
+public:
+ explicit BookmarksWidget(const QString &path, QWidget *parent = nullptr);
+ ~BookmarksWidget() override;
+
+protected:
+ void editBookmark(const QModelIndex &index);
+
+signals:
+ void showContextMenu(const QUrl &url, const QPoint &pos);
+ void openUrl(const QUrl &url);
+
+public slots:
+ void save();
+ void addBookmark(const QString &title, const QString &url);
+ void search(const QString &term, const std::function<void(QStringList &)> &callback) const;
+
+private:
+ Ui::BookmarksDialog *ui;
+ QString m_bookmarksPath;
+ BookmarkModel *model;
+};
+
+#endif // BOOKMARKSDIALOG_H