2020-11-27 23:33:26 +00:00
|
|
|
#pragma once
|
|
|
|
|
2022-02-01 17:09:40 +00:00
|
|
|
#include <hex/ui/view.hpp>
|
2020-11-27 23:33:26 +00:00
|
|
|
|
|
|
|
#include <vector>
|
|
|
|
#include <list>
|
|
|
|
|
2021-12-07 21:47:41 +00:00
|
|
|
namespace hex::plugin::builtin {
|
2020-11-27 23:33:26 +00:00
|
|
|
|
|
|
|
class ViewBookmarks : public View {
|
|
|
|
public:
|
2021-01-20 19:16:24 +00:00
|
|
|
ViewBookmarks();
|
2020-11-27 23:33:26 +00:00
|
|
|
~ViewBookmarks() override;
|
|
|
|
|
2020-12-22 17:10:01 +00:00
|
|
|
void drawContent() override;
|
2022-02-01 17:09:40 +00:00
|
|
|
|
|
|
|
private:
|
|
|
|
std::list<ImHexApi::Bookmarks::Entry> m_bookmarks;
|
2020-11-27 23:33:26 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
}
|