mirror of
https://codeberg.org/unspeaker/tek.git
synced 2025-12-07 12:16:42 +01:00
wip(p62,e21)
This commit is contained in:
parent
76da19d9c6
commit
5673dd7e8a
14 changed files with 170 additions and 190 deletions
|
|
@ -19,6 +19,10 @@ pub struct SequencerTui {
|
|||
pub(crate) cursor: (usize, usize),
|
||||
pub(crate) split: u16,
|
||||
pub(crate) entered: bool,
|
||||
/// MIDI output buffer
|
||||
pub(crate) note_buf: Vec<u8>,
|
||||
/// MIDI output buffer
|
||||
pub(crate) midi_buf: Vec<Vec<Vec<u8>>>,
|
||||
}
|
||||
|
||||
/// Root view for standalone `tek_arranger`
|
||||
|
|
@ -35,10 +39,12 @@ pub struct ArrangerTui {
|
|||
pub(crate) color: ItemColor,
|
||||
pub(crate) entered: bool,
|
||||
pub(crate) size: Measure<Tui>,
|
||||
pub(crate) note_buf: Vec<u8>,
|
||||
pub(crate) midi_buf: Vec<Vec<Vec<u8>>>,
|
||||
pub(crate) cursor: (usize, usize),
|
||||
pub(crate) menu_bar: Option<MenuBar<Tui, Self, ArrangerCommand>>,
|
||||
pub(crate) status_bar: Option<ArrangerStatus>,
|
||||
pub(crate) history: Vec<ArrangerCommand>,
|
||||
/// MIDI output buffer
|
||||
pub(crate) note_buf: Vec<u8>,
|
||||
/// MIDI output buffer
|
||||
pub(crate) midi_buf: Vec<Vec<Vec<u8>>>,
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue