Cafu Engine
ControlsBar.hpp
1 /*
2 Cafu Engine, http://www.cafu.de/
3 Copyright (c) Carsten Fuchs and other contributors.
4 This project is licensed under the terms of the MIT license.
5 */
6 
7 #ifndef CAFU_CONTROLS_BAR_HPP_INCLUDED
8 #define CAFU_CONTROLS_BAR_HPP_INCLUDED
9 
10 #include "wx/wx.h"
11 
12 
13 namespace MaterialBrowser
14 {
15  class DialogT;
16 
17 
18  class ControlsBarT : public wxPanel
19  {
20  public:
21 
22  ControlsBarT(DialogT* Parent);
23 
24 
25  private:
26 
27  DialogT* m_Parent;
28  wxChoice* m_DisplaySizeChoice;
29 
30  friend class DialogT;
31  };
32 }
33 
34 #endif
Definition: ControlsBar.hpp:18
Definition: MaterialBrowserDialog.hpp:60