-
-
Notifications
You must be signed in to change notification settings - Fork 3
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Added header support by tk::LedMeter
- Loading branch information
Showing
4 changed files
with
188 additions
and
44 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
/* | ||
* Copyright (C) 2023 Linux Studio Plugins Project <https://lsp-plug.in/> | ||
* (C) 2023 Vladimir Sadovnikov <[email protected]> | ||
* Copyright (C) 2024 Linux Studio Plugins Project <https://lsp-plug.in/> | ||
* (C) 2024 Vladimir Sadovnikov <[email protected]> | ||
* | ||
* This file is part of lsp-tk-lib | ||
* Created on: 25 сент. 2020 г. | ||
|
@@ -41,8 +41,10 @@ namespace lsp | |
prop::Integer sBorder; | ||
prop::Integer sAngle; | ||
prop::String sEstText; | ||
prop::String sEstHeader; | ||
prop::Boolean sSGroups; | ||
prop::Boolean sTextVisible; | ||
prop::Boolean sHeaderVisible; | ||
prop::Color sColor; | ||
prop::Integer sMinChannelWidth; | ||
LSP_TK_STYLE_DEF_END | ||
|
@@ -67,8 +69,10 @@ namespace lsp | |
prop::Integer sBorder; | ||
prop::Integer sAngle; | ||
prop::String sEstText; | ||
prop::String sEstHeader; | ||
prop::Boolean sSGroups; | ||
prop::Boolean sTextVisible; | ||
prop::Boolean sHeaderVisible; | ||
prop::Color sColor; | ||
prop::Integer sMinChannelWidth; | ||
|
||
|
@@ -105,8 +109,10 @@ namespace lsp | |
LSP_TK_PROPERTY(Integer, border, &sBorder) | ||
LSP_TK_PROPERTY(Integer, angle, &sAngle) | ||
LSP_TK_PROPERTY(String, estimation_text, &sEstText) | ||
LSP_TK_PROPERTY(String, estimation_header, &sEstHeader) | ||
LSP_TK_PROPERTY(Boolean, stereo_groups, &sSGroups) | ||
LSP_TK_PROPERTY(Boolean, text_visible, &sTextVisible) | ||
LSP_TK_PROPERTY(Boolean, header_visible, &sHeaderVisible) | ||
LSP_TK_PROPERTY(Color, color, &sColor) | ||
LSP_TK_PROPERTY(Integer, min_channel_width, &sMinChannelWidth) | ||
|
||
|
Oops, something went wrong.