guit  0.1
 All Classes Functions Variables Typedefs Enumerations Friends
gbuilder.hpp
1 //
2 // Builder
3 // guit GUI Toolkit
4 // Copyright © 2019 Eric Lecolinet. All rights reserved.
5 // http://www.telecom-paristech.fr/~elc
6 //
7 
8 #ifndef GuitBuilder_hpp
9 #define GuitBuilder_hpp
10 #include <gwindow.hpp>
11 namespace guit {
12 
13 class GInspector;
14 
16 class GBuilder : public GWindow {
17 public:
19 
20 private:
21  Gadget& newButton(GadgetType&);
22  void newGadgetCB(class GCursor&, GadgetType&);
23  GInspector& insp_;
24 };
25 
26 }
27 #endif