blob: 1a2d07fac9e6db9431971740260a90d7486f61e7 (
plain) (
blame)
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
|
#include "tabbrowsinghistory.hpp"
TabBrowsingHistory::TabBrowsingHistory()
{
}
bool TabBrowsingHistory::canGoBack() const
{
return this->history.size() > 0;
}
bool TabBrowsingHistory::canGoForward() const
{
return false;
}
void TabBrowsingHistory::pushUrl(const QUrl &url)
{
this->beginInsertRows(QModelIndex{}, this->history.length(),this->history.length() + 1);
this->history.push_back(url);
this->endInsertRows();
}
int TabBrowsingHistory::rowCount(const QModelIndex &parent) const
{
return history.size();
}
bool TabBrowsingHistory::setData(const QModelIndex &index, const QVariant &value, int role)
{
return false;
}
QVariant TabBrowsingHistory::data(const QModelIndex &index, int role) const
{
if(role != Qt::DisplayRole) {
return QVariant{};
}
return history.at(index.row()).toString();
}
|