13
0
livetrax/libs/gtkmm2ext
David Robillard fe13d08874 Large nasty commit in the form of a 5000 line patch chock-full of completely
unecessary changes.  (Sorry, doing a "sprint" based thing, this is the end of the first one)

Achieved MIDI track and bus creation, associated Jack port and diskstream creation, and minimal GUI stuff for creating them.  Should be set to start work on actually recording and playing midi to/from disk now.

Relevant (significant) changes:

- Creation of a Buffer class.  Base class is type agnostic so things can point to a buffer but not care what kind it is (otherwise it'd be a template).  Derived into AudioBuffer and MidiBuffer, with a type tag because checking type is necessary in parts of the code where dynamic_cast wouldn't be wise.  Originally I considered this a hack, but passing around a type proved to be a very good solution to all the other problems (below).  There is a 1:1 mapping between jack port data types and ardour Buffer types (with a conversion function), but that's easily removed if it ever becomes necessary.  Having the type scoped in the Buffer class is maybe not the best spot for it, but whatever (this is proof of concept kinda stuff right now...)

- IO now has a "default" port type (passed to the constructor and stored as a member), used by ensure_io (and similar) to create n ports.  IO::register_***_port has a type argument that defaults to the default type if not passed.  Rationale:  previous IO API is identical, no changes needed to existing code, but path is paved for multiple port types in one IO, which we will need for eg synth plugin inserts, among other things.  This is not quite ideal (best would be to only have the two port register functions and have them take a type), but the alternative is a lot of work (namely destroying the 'ensure' functions and everything that uses them) for very little gain.  (I am convinced after quite a few tries at the whiteboard that subclassing IO in any way is not a feasible option, look at it's inheritance diagram in Doxygen and you can see why)

- AudioEngine::register_audio_input_port is now register_input_port and takes a type argument.  Ditto for output.

- (Most significant change) AudioDiskstream abstracted into Distream, and sibling MidiDiskstream created.  Very much still a work in progress, but Diskstream is there to switch references over to (most already are), which is the important part.  It is still unclear what the MIDI diskstream's relation to channels is, but I'm pretty sure they will be single channel only (so SMF Type 0) since noone can come up with a reason otherwise.

- MidiTrack creation.  Same thing as AudioTrack but with a different default type basically.  No big deal here.

- Random cleanups and variable renamings etc. because I have OCD and can't help myself. :)

Known broken:  Loading of sessions containing MIDI tracks.




git-svn-id: svn://localhost/ardour2/branches/midi@641 d708f5d6-7413-0410-9779-e7cbd77b26cf
2006-06-26 16:01:34 +00:00
..
gtkmm2ext Merged with trunk (painfully) 2006-06-13 07:27:52 +00:00
po Merged with trunk 2006-06-21 18:14:45 +00:00
.cvsignore All included libraries now link dynamically instead of statically. 2006-04-25 20:23:50 +00:00
AUTHORS
auto_spin.cc
barcontroller.cc Plugin selector useability changes, fix mouse grab bug in plugin barcontroller, prevent alpah key entry in tempo/meter dialogs 2006-04-26 16:04:04 +00:00
bindable_button.cc button hacks and more 2005-12-21 21:37:18 +00:00
ChangeLog
choice.cc Comments button now indicates when comments are present, more dialog work (ask about saving, comments box etc.), code cleanups in mixer_strip.cc. 2006-04-20 20:41:05 +00:00
click_box.cc fix (mostly) measure lines and click box text and meter markings 2006-01-28 13:33:54 +00:00
controller.cc
COPYING
dndtreeview.cc route list + edit group list now pretty much functional, plus preparations for ardour2.0-alpha1 2006-01-10 04:25:47 +00:00
fastmeter.cc Merged with trunk revision 610 2006-06-15 22:31:13 +00:00
gettext.h
gtk_ui.cc Large nasty commit in the form of a 5000 line patch chock-full of completely 2006-06-26 16:01:34 +00:00
gtkutils.cc a) use ink extents in most places where we used to use logical extents 2006-04-20 18:14:00 +00:00
hexentry.cc
i18n.h
idle_adjustment.cc
libgtkmm2ext.pc.in
libgtkmm2ext.spec.in
NEWS
pixscroller.cc Reinstate mouse scroll actions (audio clocks, shuttle wheel, faders), clearing selection is undoable, fix compiler warning, add modified patch by Jon Michael Smith for mouse wheel track height adjustment and vertical canvas scrolling (thanks Jon) 2006-04-10 02:14:05 +00:00
popup.cc un-triple-buffer fastmeter (not finished), fix mixer strip name button, comment editor, +++ 2005-12-06 16:21:06 +00:00
prompter.cc Prompter now prevents blank strings or unaltered names & now has a horizontal orientation. Rename marker now uses the ArdourPrompter. 2006-04-22 15:28:59 +00:00
README
SConscript Install ardour as a binary, a script and a set of shared 2006-04-26 00:45:27 +00:00
selector.cc Large nasty commit in the form of a 5000 line patch chock-full of completely 2006-06-26 16:01:34 +00:00
slider_controller.cc pixbufs instead of pixmaps; function-scope local fd's for reading from a FileSource 2006-03-15 02:04:30 +00:00
stateful_button.cc button hacks and more 2005-12-21 21:37:18 +00:00
tearoff.cc F11 now toggles maximal editor space 2006-01-19 18:05:31 +00:00
textviewer.cc
utils.cc a) use ink extents in most places where we used to use logical extents 2006-04-20 18:14:00 +00:00