Mixer: Fix some button handling.

pull/59/head
Jonathan Moore Liles 2013-04-22 21:54:45 -07:00
parent 455c93683c
commit 5af9afdd8d
3 changed files with 29 additions and 32 deletions

View File

@ -155,13 +155,9 @@ public:
virtual int
handle ( int m )
{
static int _button;
switch ( m )
{
case FL_PUSH:
_button = Fl::event_button();
if ( top_sb_visible() &&
Fl::event_inside( x(), y(), w(), sbh ) )
{
@ -175,22 +171,17 @@ public:
break;
case FL_RELEASE:
{
int b = _button;
_button = 0;
if ( b == 1 )
if ( top_sb_visible() &&
Fl::event_inside( x(), y(), w(), sbh ) )
{
if ( top_sb_visible() &&
Fl::event_inside( x(), y(), w(), sbh ) )
{
yposition( yposition() + ( h() / 4 ) );
return 1;
}
else if ( bottom_sb_visible() &&
Fl::event_inside( x(), y() + h() - sbh, w(), sbh ) )
{
yposition( yposition() - (h() / 4 ) );
return 1;
}
yposition( yposition() + ( h() / 4 ) );
return 1;
}
else if ( bottom_sb_visible() &&
Fl::event_inside( x(), y() + h() - sbh, w(), sbh ) )
{
yposition( yposition() - (h() / 4 ) );
return 1;
}
break;
}

View File

@ -726,6 +726,7 @@ Mixer_Strip::handle ( int m )
}
case FL_PUSH:
_button = Fl::event_button();
break;
case FL_RELEASE:
{
int b = _button;

View File

@ -778,7 +778,9 @@ Module::handle_chain_name_changed ( )
int
Module::handle ( int m )
{
static int _button = 0;
static unsigned long _event_state = 0;
unsigned long evstate = Fl::event_state();
if ( Fl_Group::handle( m ) )
return 1;
@ -797,33 +799,36 @@ Module::handle ( int m )
}
case FL_PUSH:
take_focus();
_button = Fl::event_button();
_event_state = evstate;
return 1;
// if ( Fl::visible_focus() && handle( FL_FOCUS )) Fl::focus(this);
case FL_DRAG:
_button = Fl::event_button();
_event_state = evstate;
return 1;
case FL_RELEASE:
{
int b = _button;
_button = 0;
DMESSAGE( "Button %i", b);
if ( 3 == b )
{
menu_popup( &menu() );
unsigned long e = _event_state;
_event_state = 0;
if ( ! Fl::event_inside( this ) )
return 1;
}
else if ( 1 == b )
if ( e & FL_BUTTON1 )
{
command_open_parameter_editor();
return 1;
}
else if ( 3 == b && Fl::event_ctrl() )
else if ( e & FL_BUTTON3 && e & FL_CTRL )
{
command_remove();
return 1;
}
else if ( 2 == b )
else if ( e & FL_BUTTON3 )
{
menu_popup( &menu() );
return 1;
}
else if ( e & FL_BUTTON2 )
{
if ( !bypassable() )
{