cgv
Loading...
Searching...
No Matches
window.cxx
1#include "window.h"
2
3namespace cgv {
4 namespace gui {
5
6window::window(const std::string& name) : gui_group(name) {}
7
8std::string window::get_type_name() const
9{
10 return "window";
11}
12
18
21{
22 return false;
23}
24
25 }
26}
gui independent group class which is a container for gui elements
Definition gui_group.h:38
window(const std::string &name)
construct from name
Definition window.cxx:6
virtual bool dispatch_event(event &e)
dispatch a cgv event
Definition window.cxx:20
virtual gui_group_ptr get_inner_group()
return the group that is managing the content of the window
Definition window.cxx:14
std::string get_type_name() const
overload to return the type name of this object
Definition window.cxx:8
data::ref_ptr< gui_group, true > gui_group_ptr
ref counted pointer to a gui group
Definition gui_group.h:31
the cgv namespace
Definition print.h:11