966f3b8597
* sys: Initial effort to replace existing project files with a better system * sys: Added back marking provider as dirty * sys: Remove git commit information from project files * sys: Format data processor save file nicely * fix: Automatic pattern loading not working correctly * ui: Added warning popup when closing a provider with modifications Closes #604 * sys: Fixed build issues * tests: Removed useless debug logs * patterns: Updated pattern language * sys: Added log message when crashing with a signal * sys: Make sure abnormal termination handlers are being called more reliably
21 lines
318 B
C++
21 lines
318 B
C++
#pragma once
|
|
|
|
#include <hex/ui/view.hpp>
|
|
|
|
#include <vector>
|
|
#include <list>
|
|
|
|
namespace hex::plugin::builtin {
|
|
|
|
class ViewBookmarks : public View {
|
|
public:
|
|
ViewBookmarks();
|
|
~ViewBookmarks() override;
|
|
|
|
void drawContent() override;
|
|
|
|
private:
|
|
std::string m_currFilter;
|
|
};
|
|
|
|
} |