Re: [seq24-users] keyboard shortcut for mouse right click ?
Brought to you by:
rcbuse
|
From: Ivan H. <ihe...@ki...> - 2007-03-19 14:01:11
|
I forgotten instructions of use. 'p' to activate paint, 'P' (shift p) to deactivate. Remember to "select" the piano roll instead of writing on other controls, like the name edit. that's a little tricky but you will overcome that. ivan Ivan Hernandez escribió: > Ok. I have made a patch for that and it apply to the latest stable > version (http://filter24.org/seq24/seq24-0.8.7.tar.gz) > > you can do this: > $ wget http://filter24.org/seq24/seq24-0.8.7.tar.gz > $ tar -xzvf seq24-0.8.7.tar.gz > $ cd seq24-0.8.7 > $ patch -p1 ../paint_patch.diff > > you have your patched source now. compile as usual. > luck! > ivan > > europeen escribió: >> Hi List, >> >> I discover Seq24, beautiful, light and easy to use. I think I could use >> this all the time if.... >> >> if you could explain to me how to use the RIGHT CLICK MOUSE with the >> keyboards. I am using my left hand (yes I am the oppressed minority :) >> with right hand configuration. My big problem is to use expeditiously >> the two mouse buttons... I can't... I can't create a good work like >> this. >> So my idea would be to use a letter of the keyboard to enable the >> 'pencil', then, use the mouse's left button to create the notes. I >> search in the doc but I don't find something. >> >> Tell me it's possible please Rob :) >> >> Thanks. >> >> Stan. >> >> >> >> ------------------------------------------------------------------------- >> >> Take Surveys. Earn Cash. Influence the Future of IT >> Join SourceForge.net's Techsay panel and you'll get the chance to >> share your >> opinions on IT & business topics through brief surveys-and earn cash >> http://www.techsay.com/default.php?page=join.php&p=sourceforge&CID=DEVDEV >> >> _______________________________________________ >> seq24-users mailing list >> seq...@li... >> https://lists.sourceforge.net/lists/listinfo/seq24-users >> >> > > ------------------------------------------------------------------------ > > Sólo en seq24-0.8.7: config.log > Sólo en seq24-0.8.7: config.status > Sólo en seq24-0.8.7: Makefile > Sólo en seq24-0.8.7/src: config.h > Sólo en seq24-0.8.7/src: .deps > Sólo en seq24-0.8.7/src: Makefile > diff -crB seq24-0.8.7orig/src/seqroll.cpp seq24-0.8.7/src/seqroll.cpp > *** seq24-0.8.7orig/src/seqroll.cpp 2006-05-29 01:58:37.000000000 -0300 > --- seq24-0.8.7/src/seqroll.cpp 2007-03-19 10:58:33.000000000 -0300 > *************** > *** 1258,1263 **** > --- 1258,1271 ---- > m_seq->remove_marked(); > ret = true; > } > + if ( a_p0->keyval == GDK_p ){ > + set_adding( true ); > + ret = true; > + } > + if ( a_p0->keyval == GDK_P ){ > + set_adding( false ); > + ret = true; > + } > > if ( a_p0->state & GDK_CONTROL_MASK ){ > > Sólo en seq24-0.8.7/src: stamp-h1 > > ------------------------------------------------------------------------ > > ------------------------------------------------------------------------- > Take Surveys. Earn Cash. Influence the Future of IT > Join SourceForge.net's Techsay panel and you'll get the chance to share your > opinions on IT & business topics through brief surveys-and earn cash > http://www.techsay.com/default.php?page=join.php&p=sourceforge&CID=DEVDEV > ------------------------------------------------------------------------ > > _______________________________________________ > seq24-users mailing list > seq...@li... > https://lists.sourceforge.net/lists/listinfo/seq24-users > |