aboutsummaryrefslogtreecommitdiff
path: root/src/bookmarks/bookmarkswidget.h
blob: 432d936e8e131be7b40e9126b099500f95efaa61 (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
/*
 * 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;
    const BookmarkModel *model() const { return m_model; };

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 *m_model;
};

#endif // BOOKMARKSDIALOG_H