Nix (Dev) 3.5.10
dev - 3.5.10 - 1af9301
Loading...
Searching...
No Matches
ViewCustomBlocks.hpp
Go to the documentation of this file.
1#ifndef IV_SRC_UI_VIEWS_EDITOR_VIEWCUSTOMBLOCKS_HPP_
2#define IV_SRC_UI_VIEWS_EDITOR_VIEWCUSTOMBLOCKS_HPP_
3
5
6namespace iv::views::editor
7{
8
9class ViewCustomBlocks final : public AbstractView
10{
11public:
13 ~ViewCustomBlocks() override = default;
14 ViewCustomBlocks(const ViewCustomBlocks &other) = delete;
18
19 bool isViewEditor() override
20 {
21 return true;
22 }
23 std::optional<iv::views::editor::eEditorView> getEditorViewType() override
24 {
26 }
27
28private:
29 AbstractComponentGUI *create(CDialog *dialogFather, AbstractViewPanelEditor **viewPanelEditor) override;
30};
31
32}// namespace iv::views::editor
33
34#endif// IV_SRC_UI_VIEWS_EDITOR_VIEWCUSTOMBLOCKS_HPP_
Definition AbstractComponentGUI.hpp:30
Definition AbstractViewPanelEditor.hpp:12
Definition AbstractView.hpp:11
Definition CDialog.hpp:21
Definition ViewCustomBlocks.hpp:10
bool isViewEditor() override
Definition ViewCustomBlocks.hpp:19
ViewCustomBlocks & operator=(const ViewCustomBlocks &other)=delete
~ViewCustomBlocks() override=default
std::optional< iv::views::editor::eEditorView > getEditorViewType() override
Definition ViewCustomBlocks.hpp:23
ViewCustomBlocks & operator=(ViewCustomBlocks &&other)=delete
ViewCustomBlocks(ViewCustomBlocks &&other)=delete
AbstractComponentGUI * create(CDialog *dialogFather, AbstractViewPanelEditor **viewPanelEditor) override
Definition ViewCustomBlocks.cpp:14
ViewCustomBlocks()
Definition ViewCustomBlocks.cpp:10
ViewCustomBlocks(const ViewCustomBlocks &other)=delete
Definition enums.hpp:5