summaryrefslogtreecommitdiff
path: root/muse2
AgeCommit message (Collapse)Author
2011-04-22notes are added to the correct part now:Florian Jung
- if there's only one part at that time, they are added to that part - if there are multiple parts, they're added to the selected part, if possible, or an error message is displayed - if there is no part, an error message is displayed selecting a part can be done by simply clicking on any note belonging to it
2011-04-22corrected some coloring stuffFlorian Jung
2011-04-22the user can now set pixels_per_wholeFlorian Jung
2011-04-21dnd pluginsRobert Jonsson
2011-04-21removing a currently shown part is now handled gracefullyFlorian Jung
the score window automatically closes if the last staff is removed
2011-04-21merged in keymap-undo and -songChanged support from trunkFlorian Jung
2011-04-20added quant-len-toolbarFlorian Jung
heavy changes in the quantisation-setting-stuff: changed from hardcoded to user-settable. i hope i haven't broken anything.
2011-04-20fixed bug with share/scoreglyphs/feta-original/CMakeLists.txtFlorian Jung
(i used the * glob; this, however, also tried to install the .svn/ directory on some systems (not on mine), which caused an error)
2011-04-19undo for keymapRobert Jonsson
2011-04-19fixed bug with inserting notes in a staff with a bass-clefFlorian Jung
2011-04-19added some menusFlorian Jung
changed some strings to QStrings TODO: color notes by their velocity
2011-04-18added toolbarFlorian Jung
2011-04-18score editor now listens to most (if not all) interesting signals and redrawsFlorian Jung
changed pcanvas.cpp to emit a signal when changing a part's color changed app.cpp to not connect scoreedit's configChanged slot
2011-04-17implemented y-scrollingFlorian Jung
2011-04-17glyphs are now bundled with museFlorian Jung
2011-04-17a mastertrack keymap editor has been inserted and usedFlorian Jung
merged with current trunk, removed attic/
2011-04-17changed keymap to my needs, and removed all that ugly pointerFlorian Jung
stuff from the keymap (still to do for the other *maps)
2011-04-17Added destructors to sigmap and tempomap.Tim E. Real
2011-04-16Fixed crash in dssihost.cpp - my bad from recent p4.0.20 changes.Tim E. Real
2011-04-16added keymapRobert Jonsson
2011-04-16Move part name text to bottom to accommodate drum 'slivers'Tim E. Real
2011-04-16Invert drum 'slivers' in arranger drum parts.Tim E. Real
2011-04-15merged with current trunkFlorian Jung
2011-04-15scores now have names; the user can't change them yet,Florian Jung
but implementing this will be no problem
2011-04-15added menus for adding new staves to score windowsFlorian Jung
introduced Toplevel::SCORE cleaned up the code a bit still TODO: support and display score-names possible bugs: ScoreEdit::parts() isn't kept
2011-04-15Previous part drawing improvements fix: Support Qt4.5 Tim E. Real
2011-04-15Improved dark part colour gradients. Added gGradientFromQColor() in ↵Tim E. Real
widgets/utils.cpp called from PartCanvas draw.
2011-04-14Fix arranger midi part event 'sliver' drawing. Fix partname drawing. Tim E. Real
Remove dssi gui killtimers causing error.
2011-04-14staves can now be removed and merged (by drag-and-drop)Florian Jung
2011-04-14added support for user-selectable clefs (also treble+bass)Florian Jung
additionally: lots of changes in the organisation of the code: - moved some functions (parse_note_len() etc) out of ScoreCanvas into global scope - created staff_t type - moved some functions (create_itemlist() etc) into staff_t
2011-04-14Another fix for FLAM GUI controls - 300ms delay before sending control ↵Tim E. Real
values in PluginI::oscUpdate()
2011-04-13improved y-coord.-handling for stavesFlorian Jung
some changes in the y-handling, removed YDIST, changed y=0-line updated TODO, added roadmap this doesn't add any user-noticable functionality, but only made the code more future-proof
2011-04-12Possible fix for FLAM GUI controls - send current control values in ↵Tim E. Real
PluginI::oscUpdate()
2011-04-12introduced keymap, fixed all the ugly stuff from the last commitFlorian Jung
2011-04-12first approach of displaying multiple staves in one score windowFlorian Jung
this revision is fully functional (or at least should be), but maybe new bugs were introduced. TODO: some things in the source are done pretty ugly, need to beautify that and some features (e.g. grand staves) still need to be done
2011-04-12Fixed regression with midi oR button. Also don't list synths.Tim E. Real
2011-04-11cosmetic stuff: made many functions static, improved pixmap loadingFlorian Jung
synced with current trunk
2011-04-11fixed division bug by adding divide_floor() functionFlorian Jung
previously, integer divisions were used. however, i need rounding always down, but operator/ rounds towards zero. ( -2 / 7 = 0, but should be -1) plus some cosmetic stuff (ints->unsigneds, removed some warnings)
2011-04-11implemented highlighting currently played notesFlorian Jung
plus bugfix: manipulating non-zero-aligned parts works now correctly plus some cosmetic stuff in the source (ints -> unsigneds)
2011-04-11Fix gui column.Tim E. Real
2011-04-10Please see ChangeLogTim E. Real
2011-04-10implemented scrolling while dragging notesFlorian Jung
2011-04-10implemented automatic scrolling and did some cosmetic stuff:Florian Jung
corrected time-sig and key-change order, full-measure-rests are now drawn properly and distances have been set properly
2011-04-10added some scrolling stuff and fixed segfault when closingFlorian Jung
2011-04-10implemented drawing a preamble containing clef, timesig and keyFlorian Jung
2011-04-10colored notes and multiple tracks for the scoreeditor are now supportedFlorian Jung
2011-04-10fixed bugs with overlapping notes and hardcoded song lengthFlorian Jung
2011-04-10clefs and time signatures with more than one digit were done correctlyFlorian Jung
2011-04-10inserting notes and undo handling now worksFlorian Jung
plus bugfix: event times are now treated correctly
2011-04-10implemented removing notesFlorian Jung