2022-02-06 21:02:31 +01:00
|
|
|
#include "content/views/view_hex_editor.hpp"
|
2021-12-07 22:47:41 +01:00
|
|
|
#include "content/views/view_pattern_editor.hpp"
|
|
|
|
#include "content/views/view_pattern_data.hpp"
|
|
|
|
#include "content/views/view_hashes.hpp"
|
|
|
|
#include "content/views/view_information.hpp"
|
2022-03-04 19:06:29 +01:00
|
|
|
#include "content/views/view_about.hpp"
|
2021-12-07 22:47:41 +01:00
|
|
|
#include "content/views/view_tools.hpp"
|
|
|
|
#include "content/views/view_strings.hpp"
|
|
|
|
#include "content/views/view_data_inspector.hpp"
|
|
|
|
#include "content/views/view_disassembler.hpp"
|
|
|
|
#include "content/views/view_bookmarks.hpp"
|
|
|
|
#include "content/views/view_patches.hpp"
|
|
|
|
#include "content/views/view_command_palette.hpp"
|
|
|
|
#include "content/views/view_settings.hpp"
|
|
|
|
#include "content/views/view_data_processor.hpp"
|
|
|
|
#include "content/views/view_yara.hpp"
|
|
|
|
#include "content/views/view_constants.hpp"
|
|
|
|
#include "content/views/view_store.hpp"
|
|
|
|
#include "content/views/view_diff.hpp"
|
2021-12-12 00:41:44 +01:00
|
|
|
#include "content/views/view_provider_settings.hpp"
|
2021-12-07 22:47:41 +01:00
|
|
|
|
|
|
|
namespace hex::plugin::builtin {
|
|
|
|
|
|
|
|
void registerViews() {
|
|
|
|
ContentRegistry::Views::add<ViewHexEditor>();
|
|
|
|
ContentRegistry::Views::add<ViewPatternEditor>();
|
|
|
|
ContentRegistry::Views::add<ViewPatternData>();
|
|
|
|
ContentRegistry::Views::add<ViewDataInspector>();
|
|
|
|
ContentRegistry::Views::add<ViewHashes>();
|
|
|
|
ContentRegistry::Views::add<ViewInformation>();
|
|
|
|
ContentRegistry::Views::add<ViewStrings>();
|
|
|
|
ContentRegistry::Views::add<ViewDisassembler>();
|
|
|
|
ContentRegistry::Views::add<ViewBookmarks>();
|
|
|
|
ContentRegistry::Views::add<ViewPatches>();
|
|
|
|
ContentRegistry::Views::add<ViewTools>();
|
|
|
|
ContentRegistry::Views::add<ViewCommandPalette>();
|
2022-03-04 19:06:29 +01:00
|
|
|
ContentRegistry::Views::add<ViewAbout>();
|
2021-12-07 22:47:41 +01:00
|
|
|
ContentRegistry::Views::add<ViewSettings>();
|
|
|
|
ContentRegistry::Views::add<ViewDataProcessor>();
|
|
|
|
ContentRegistry::Views::add<ViewYara>();
|
|
|
|
ContentRegistry::Views::add<ViewConstants>();
|
|
|
|
ContentRegistry::Views::add<ViewStore>();
|
|
|
|
ContentRegistry::Views::add<ViewDiff>();
|
2021-12-12 00:41:44 +01:00
|
|
|
ContentRegistry::Views::add<ViewProviderSettings>();
|
2021-12-07 22:47:41 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
}
|