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