comparison libgui/graphics/BaseControl.h @ 31647:431f80aba37a

maint: Merge stable to default.
author John W. Eaton <jwe@octave.org>
date Tue, 06 Dec 2022 15:37:43 -0500
parents bd9da634f00d c6d54dd31a7e
children deb553ac2c54
comparison
equal deleted inserted replaced
31645:bd9da634f00d 31647:431f80aba37a
29 #include "Object.h" 29 #include "Object.h"
30 30
31 class QEvent; 31 class QEvent;
32 class QObject; 32 class QObject;
33 33
34 namespace octave 34 OCTAVE_BEGIN_NAMESPACE(octave)
35 { 35
36 class interpreter; 36 class interpreter;
37 37
38 class BaseControl : public Object 38 class BaseControl : public Object
39 { 39 {
40 public: 40 public:
54 private: 54 private:
55 bool m_normalizedFont; 55 bool m_normalizedFont;
56 bool m_keyPressHandlerDefined; 56 bool m_keyPressHandlerDefined;
57 }; 57 };
58 58
59 } 59 OCTAVE_END_NAMESPACE(octave)
60 60
61 #endif 61 #endif