diff options
author | David Robillard <d@drobilla.net> | 2015-02-08 16:03:54 +0000 |
---|---|---|
committer | David Robillard <d@drobilla.net> | 2015-02-08 16:03:54 +0000 |
commit | 9e108b92c62ad48d5690e5c207e224b7da49bd49 (patch) | |
tree | 4f99ff2f1b7e0b1640e2b481d8b23d30d8e80756 /src/Configuration.hpp | |
parent | f32b5d18e947ab276e7c0f345599b2f5f8c634c2 (diff) | |
download | patchage-9e108b92c62ad48d5690e5c207e224b7da49bd49.tar.gz patchage-9e108b92c62ad48d5690e5c207e224b7da49bd49.tar.bz2 patchage-9e108b92c62ad48d5690e5c207e224b7da49bd49.zip |
Style messages pane to match canvas.
git-svn-id: http://svn.drobilla.net/lad/trunk/patchage@5545 a436a847-0d15-0410-975c-d299462d15a1
Diffstat (limited to 'src/Configuration.hpp')
-rw-r--r-- | src/Configuration.hpp | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/src/Configuration.hpp b/src/Configuration.hpp index a80c581..3907510 100644 --- a/src/Configuration.hpp +++ b/src/Configuration.hpp @@ -62,6 +62,12 @@ public: float get_sprung_layout() const { return _sprung_layout; } void set_sprung_layout(float sprung_layout) { _sprung_layout = sprung_layout; } + bool get_show_messages() const { return _show_messages; } + void set_show_messages(bool show_messages) { _show_messages = show_messages; } + + int get_messages_height() const { return _messages_height; } + void set_messages_height(int height) { _messages_height = height; } + uint32_t get_port_color(PortType type) const { return _port_colors[type]; } void set_port_color(PortType type, uint32_t rgba) { _port_colors[type] = rgba; @@ -92,6 +98,8 @@ private: float _font_size; bool _show_toolbar; bool _sprung_layout; + bool _show_messages; + int _messages_height; }; #endif // PATCHAGE_CONFIGURATION_HPP |