Nix (Dev) 3.5.10
dev - 3.5.10 - 1af9301
Loading...
Searching...
No Matches
CComponentListGTK.hpp
Go to the documentation of this file.
1#ifndef LIBS_GTK_CCOMPONENTLISTGTK_HPP_
2#define LIBS_GTK_CCOMPONENTLISTGTK_HPP_
3
4#include "CWidgetGTK.hpp"
5
7{
8public:
9 CComponentListGTK() = delete;
10 CComponentListGTK(GtkWidget *treeView, GtkWidget *scroll);
11 ~CComponentListGTK() override = default;
12 CComponentListGTK(const CComponentListGTK &other) = delete;
16
17 GtkWidget *getTreeView();
18
19private:
20 GtkWidget *m_treeView;
21};
22
23#endif /* LIBS_GTK_CCOMPONENTLISTGTK_HPP_ */
Definition CComponentListGTK.hpp:7
CComponentListGTK(const CComponentListGTK &other)=delete
CComponentListGTK & operator=(const CComponentListGTK &other)=delete
GtkWidget * m_treeView
Definition CComponentListGTK.hpp:20
~CComponentListGTK() override=default
CComponentListGTK()=delete
GtkWidget * getTreeView()
Definition CComponentListGTK.cpp:8
CComponentListGTK & operator=(CComponentListGTK &&other)=delete
CComponentListGTK(CComponentListGTK &&other)=delete
Definition CWidgetGTK.hpp:12