LumaText.hpp
Go to the documentation of this file.
1 #pragma once
2 
3 #include "LumaSystem.hpp"
5 
6 namespace iv
7 {
8 
16 class LumaText : public Text, public LumaListener
17 {
18 public:
20  LumaText( Instance * inst, LumaStyleId style_id = LumaStyleId(), bool monospace = false );
21 
22 protected:
23  virtual void LumaStyleChanged( LumaStyle const & ) override;
24 
25 private:
26  bool monospace;
27 };
28 
29 }