Nix (Dev) 3.5.10
dev - 3.5.10 - 1af9301
Loading...
Searching...
No Matches
ViewChannels.hpp
Go to the documentation of this file.
1#ifndef IV_SRC_UI_VIEWS_EDITOR_VIEWCHANNELS_HPP_
2#define IV_SRC_UI_VIEWS_EDITOR_VIEWCHANNELS_HPP_
3
5
6namespace iv::views::editor
7{
8
9class ViewChannels final : public AbstractView
10{
11public:
13 ~ViewChannels() override = default;
14 ViewChannels(const ViewChannels &other) = delete;
15 ViewChannels(ViewChannels &&other) = delete;
16 ViewChannels &operator=(const ViewChannels &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_VIEWCHANNELS_HPP_
Definition AbstractComponentGUI.hpp:30
Definition AbstractViewPanelEditor.hpp:12
Definition AbstractView.hpp:11
Definition CDialog.hpp:21
Definition ViewChannels.hpp:10
AbstractComponentGUI * create(CDialog *dialogFather, AbstractViewPanelEditor **viewPanelEditor) override
Definition ViewChannels.cpp:15
~ViewChannels() override=default
ViewChannels & operator=(const ViewChannels &other)=delete
bool isViewEditor() override
Definition ViewChannels.hpp:19
std::optional< iv::views::editor::eEditorView > getEditorViewType() override
Definition ViewChannels.hpp:23
ViewChannels(ViewChannels &&other)=delete
ViewChannels()
Definition ViewChannels.cpp:11
ViewChannels(const ViewChannels &other)=delete
ViewChannels & operator=(ViewChannels &&other)=delete
Definition enums.hpp:5