2020-11-28 00:33:26 +01:00
|
|
|
#pragma once
|
|
|
|
|
|
|
|
#include "views/view.hpp"
|
|
|
|
|
|
|
|
#include <vector>
|
|
|
|
#include <list>
|
|
|
|
|
2020-11-28 21:55:52 +01:00
|
|
|
#include "helpers/utils.hpp"
|
2020-11-28 00:33:26 +01:00
|
|
|
|
|
|
|
namespace hex {
|
|
|
|
|
|
|
|
namespace prv { class Provider; }
|
|
|
|
|
|
|
|
class ViewBookmarks : public View {
|
|
|
|
public:
|
2020-12-27 15:39:06 +01:00
|
|
|
explicit ViewBookmarks();
|
2020-11-28 00:33:26 +01:00
|
|
|
~ViewBookmarks() override;
|
|
|
|
|
2020-12-22 18:10:01 +01:00
|
|
|
void drawContent() override;
|
|
|
|
void drawMenu() override;
|
2020-11-28 00:33:26 +01:00
|
|
|
|
|
|
|
private:
|
|
|
|
std::list<Bookmark> m_bookmarks;
|
|
|
|
};
|
|
|
|
|
|
|
|
}
|