aboutsummaryrefslogtreecommitdiff
path: root/lib/bookmarks/bookmarkswidget.h
diff options
context:
space:
mode:
Diffstat (limited to 'lib/bookmarks/bookmarkswidget.h')
-rw-r--r--lib/bookmarks/bookmarkswidget.h50
1 files changed, 0 insertions, 50 deletions
diff --git a/lib/bookmarks/bookmarkswidget.h b/lib/bookmarks/bookmarkswidget.h
deleted file mode 100644
index 149d2a6..0000000
--- a/lib/bookmarks/bookmarkswidget.h
+++ /dev/null
@@ -1,50 +0,0 @@
-/*
- * 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