2010-05-06 00:08:41 +00:00
// Ryzom - MMORPG Framework <http://dev.ryzom.com/projects/ryzom/>
// Copyright (C) 2010 Winch Gate Property Limited
//
// This program is free software: you can redistribute it and/or modify
// it under the terms of the GNU Affero General Public License as
// published by the Free Software Foundation, either version 3 of the
// License, or (at your option) any later version.
//
// This program is distributed in the hope that it will be useful,
// but WITHOUT ANY WARRANTY; without even the implied warranty of
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
// GNU Affero General Public License for more details.
//
// You should have received a copy of the GNU Affero General Public License
// along with this program. If not, see <http://www.gnu.org/licenses/>.
2012-06-15 20:40:08 +00:00
# include "nel/gui/ctrl_base_button.h"
2012-02-08 00:58:15 +00:00
# include "nel/misc/xml_auto_ptr.h"
2012-06-15 20:40:08 +00:00
# include "nel/gui/interface_group.h"
2012-05-23 02:13:58 +00:00
# include "nel/gui/lua_ihm.h"
2012-06-15 20:40:08 +00:00
# include "nel/gui/widget_manager.h"
# include "nel/gui/db_manager.h"
2010-05-06 00:08:41 +00:00
using namespace std ;
using namespace NLMISC ;
2012-06-15 21:30:27 +00:00
namespace
2010-05-06 00:08:41 +00:00
{
2012-06-15 21:30:27 +00:00
const uint KEY_REPEAT_MIN = 100 ;
const uint KEY_REPEAT_MAX = 750 ;
2010-05-06 00:08:41 +00:00
}
2012-06-15 21:30:27 +00:00
namespace NLGUI
2010-05-06 00:08:41 +00:00
{
2012-06-15 21:30:27 +00:00
sint64 CCtrlBaseButton : : _LastLeftClickDate = 0 ;
NLMISC : : CRefPtr < CCtrlBaseButton > CCtrlBaseButton : : _LastLeftClickButton ;
2010-05-06 00:08:41 +00:00
2012-06-15 21:30:27 +00:00
// ***************************************************************************
CCtrlBaseButton : : CCtrlBaseButton ( const TCtorParam & param ) : CCtrlBase ( param ) , _Type ( ToggleButton )
2010-05-06 00:08:41 +00:00
{
2012-06-15 21:30:27 +00:00
_Pushed = _Over = false ;
_Frozen = false ;
_FrozenHalfTone = true ;
_OverWhenPushed = true ;
_ColorOver = _ColorPushed = _ColorNormal = NLMISC : : CRGBA ( 255 , 255 , 255 , 255 ) ;
_ModulateGlobalColorNormal = _ModulateGlobalColorPushed = _ModulateGlobalColorOver = true ;
_LeftLongClickHandled = true ;
_LeftDblClickHandled = false ;
_ClickWhenPushed = false ;
_RBRefBut = NULL ;
_RBRef = NULL ;
_AHOnOver = NULL ;
_AHOnLeftClick = NULL ;
_AHOnRightClick = NULL ;
_AHOnClockTick = NULL ;
_AHOnLeftLongClick = NULL ;
_AHOnLeftDblClick = NULL ;
2010-05-06 00:08:41 +00:00
}
2012-06-15 21:30:27 +00:00
// ***************************************************************************
bool CCtrlBaseButton : : parse ( xmlNodePtr cur , CInterfaceGroup * parentGroup )
2010-05-06 00:08:41 +00:00
{
2012-06-15 21:30:27 +00:00
CXMLAutoPtr prop ;
//try to get props that can be inherited from groups
//if a property is not defined, try to find it in the parent group.
//if it is undefined, set it to zero
if ( ! CCtrlBase : : parse ( cur , parentGroup ) )
return false ;
2010-05-06 00:08:41 +00:00
2012-06-15 21:30:27 +00:00
_Over = false ;
2010-05-06 00:08:41 +00:00
2012-06-15 21:30:27 +00:00
// *** try to get the NEEDED specific props
prop = xmlGetProp ( cur , ( xmlChar * ) " button_type " ) ;
string type ;
if ( prop ) type = ( const char * ) prop ;
if ( type . empty ( ) | | type = = " toggle_button " )
{
_Type = ToggleButton ;
}
else if ( type = = " push_button " )
{
_Type = PushButton ;
}
else if ( type = = " radio_button " )
{
_Type = RadioButton ;
2010-05-06 00:08:41 +00:00
2012-06-15 21:30:27 +00:00
initRBRef ( ) ;
if ( _Pushed )
* _RBRef = this ;
}
else
{
nlinfo ( ( " cannot parse button type for button " + getId ( ) ) . c_str ( ) ) ;
}
2010-05-06 00:08:41 +00:00
2012-06-15 21:30:27 +00:00
prop = ( char * ) xmlGetProp ( cur , ( xmlChar * ) " pushed " ) ;
_Pushed = false ;
if ( prop )
_Pushed = convertBool ( prop ) ;
prop = ( char * ) xmlGetProp ( cur , ( xmlChar * ) " over_when_pushed " ) ;
_OverWhenPushed = true ;
if ( prop )
_OverWhenPushed = convertBool ( prop ) ;
prop = ( char * ) xmlGetProp ( cur , ( xmlChar * ) " click_when_pushed " ) ;
_ClickWhenPushed = false ;
if ( prop )
_ClickWhenPushed = convertBool ( prop ) ;
// *** Read Colors
// get color normal
prop = ( char * ) xmlGetProp ( cur , ( xmlChar * ) " color " ) ;
_ColorNormal = CRGBA ( 255 , 255 , 255 , 255 ) ;
if ( prop )
_ColorNormal = convertColor ( prop ) ;
// Get ColorPushed
prop = ( char * ) xmlGetProp ( cur , ( xmlChar * ) " col_pushed " ) ;
_ColorPushed = CRGBA ( 255 , 255 , 255 , 255 ) ;
if ( prop )
_ColorPushed = convertColor ( prop ) ;
// Get ColorOver
prop = ( char * ) xmlGetProp ( cur , ( xmlChar * ) " col_over " ) ;
_ColorOver = CRGBA ( 255 , 255 , 255 , 255 ) ;
if ( prop )
_ColorOver = convertColor ( prop ) ;
// Default: take "global_color" param interface_element option.
_ModulateGlobalColorNormal = _ModulateGlobalColorPushed = _ModulateGlobalColorOver = getModulateGlobalColor ( ) ;
// Read special global_color for each state
prop = ( char * ) xmlGetProp ( cur , ( xmlChar * ) " global_color_normal " ) ;
if ( prop ) _ModulateGlobalColorNormal = convertBool ( prop ) ;
prop = ( char * ) xmlGetProp ( cur , ( xmlChar * ) " global_color_pushed " ) ;
if ( prop ) _ModulateGlobalColorPushed = convertBool ( prop ) ;
prop = ( char * ) xmlGetProp ( cur , ( xmlChar * ) " global_color_over " ) ;
if ( prop ) _ModulateGlobalColorOver = convertBool ( prop ) ;
// *** Read Action handlers
CAHManager : : getInstance ( ) - > parseAH ( cur , " onover " , " params_over " , _AHOnOver , _AHOverParams ) ;
CAHManager : : getInstance ( ) - > parseAH ( cur , " onclick_l " , " params_l " , _AHOnLeftClick , _AHLeftClickParams ) ;
CAHManager : : getInstance ( ) - > parseAH ( cur , " ondblclick_l " , " params_dblclick_l " , _AHOnLeftDblClick , _AHLeftDblClickParams ) ;
CAHManager : : getInstance ( ) - > parseAH ( cur , " onclick_r " , " params_r " , _AHOnRightClick , _AHRightClickParams ) ;
CAHManager : : getInstance ( ) - > parseAH ( cur , " onlongclick_l " , " params_longclick_l " , _AHOnLeftLongClick , _AHLeftLongClickParams ) ;
CAHManager : : getInstance ( ) - > parseAH ( cur , " onclock_tick " , " params_clock_tick " , _AHOnClockTick , _AHClockTickParams ) ;
// Context menu association
prop = ( char * ) xmlGetProp ( cur , ( xmlChar * ) " menu_l " ) ;
if ( prop )
{
_ListMenuLeft = NLMISC : : toLower ( std : : string ( ( const char * ) prop ) ) ;
}
prop = ( char * ) xmlGetProp ( cur , ( xmlChar * ) " menu_r " ) ;
if ( prop )
{
_ListMenuRight = NLMISC : : toLower ( std : : string ( ( const char * ) prop ) ) ;
}
// list menu on both clicks
prop = ( char * ) xmlGetProp ( cur , ( xmlChar * ) " menu_b " ) ;
if ( prop )
{
setListMenuBoth ( NLMISC : : toLower ( std : : string ( ( const char * ) prop ) ) ) ;
}
2010-05-06 00:08:41 +00:00
2012-06-15 21:30:27 +00:00
prop = ( char * ) xmlGetProp ( cur , ( xmlChar * ) " frozen " ) ;
_Frozen = false ;
if ( prop )
_Frozen = convertBool ( prop ) ;
2010-05-06 00:08:41 +00:00
2012-06-15 21:30:27 +00:00
prop = ( char * ) xmlGetProp ( cur , ( xmlChar * ) " frozen_half_tone " ) ;
_FrozenHalfTone = true ;
if ( prop )
_FrozenHalfTone = convertBool ( prop ) ;
2010-05-06 00:08:41 +00:00
2012-06-15 21:30:27 +00:00
return true ;
}
2010-05-06 00:08:41 +00:00
2012-06-15 20:40:08 +00:00
2012-06-15 21:30:27 +00:00
// ***************************************************************************
void CCtrlBaseButton : : setModulateGlobalColorAll ( bool state )
2010-05-06 00:08:41 +00:00
{
2012-06-15 21:30:27 +00:00
setModulateGlobalColor ( state ) ;
setModulateGlobalColorNormal ( state ) ;
setModulateGlobalColorPushed ( state ) ;
setModulateGlobalColorOver ( state ) ;
}
2010-05-06 00:08:41 +00:00
2012-06-15 21:30:27 +00:00
// ***************************************************************************
bool CCtrlBaseButton : : handleEvent ( const NLGUI : : CEventDescriptor & event )
{
if ( CCtrlBase : : handleEvent ( event ) ) return true ;
if ( ! _Active | | _Frozen )
2010-05-06 00:08:41 +00:00
return false ;
2012-06-15 21:30:27 +00:00
sint64 T1 = NLMISC : : CTime : : getLocalTime ( ) ;
if ( event . getType ( ) = = NLGUI : : CEventDescriptor : : mouse )
2010-05-06 00:08:41 +00:00
{
2012-06-15 21:30:27 +00:00
const NLGUI : : CEventDescriptorMouse & eventDesc = ( const NLGUI : : CEventDescriptorMouse & ) event ;
2010-05-06 00:08:41 +00:00
2012-06-15 21:30:27 +00:00
if ( eventDesc . getEventTypeExtended ( ) = = NLGUI : : CEventDescriptorMouse : : mouseleftup )
2010-05-06 00:08:41 +00:00
{
2012-06-15 21:30:27 +00:00
if ( CWidgetManager : : getInstance ( ) - > getCapturePointerLeft ( ) ! = this )
return false ;
_LeftLongClickHandled = true ;
2010-05-06 00:08:41 +00:00
}
2012-06-15 21:30:27 +00:00
if ( ! ( ( eventDesc . getX ( ) > = _XReal ) & &
( eventDesc . getX ( ) < ( _XReal + _WReal ) ) & &
( eventDesc . getY ( ) > _YReal ) & &
( eventDesc . getY ( ) < = ( _YReal + _HReal ) ) ) )
2010-05-06 00:08:41 +00:00
return false ;
2012-06-15 21:30:27 +00:00
if ( eventDesc . getEventTypeExtended ( ) = = NLGUI : : CEventDescriptorMouse : : mouseleftdown )
2010-05-06 00:08:41 +00:00
{
2012-06-15 21:30:27 +00:00
if ( _AHOnLeftDblClick )
{
if ( ( CCtrlBaseButton * ) _LastLeftClickButton = = this & & ( T1 - _LastLeftClickDate ) < CWidgetManager : : getInstance ( ) - > getUserDblClickDelay ( ) )
{
CAHManager : : getInstance ( ) - > runActionHandler ( _AHOnLeftDblClick , this , _AHLeftDblClickParams ) ;
_LeftDblClickHandled = true ;
_LastLeftClickButton = NULL ;
return true ;
}
}
if ( _AHOnLeftLongClick ! = NULL )
{
_LeftLongClickHandled = false ;
_LeftLongClickDate = T1 ;
}
2010-05-06 00:08:41 +00:00
_LeftDblClickHandled = false ;
2012-06-15 21:30:27 +00:00
_LastLeftClickButton = NULL ;
2010-05-06 00:08:41 +00:00
return true ;
}
2012-06-15 21:30:27 +00:00
if ( eventDesc . getEventTypeExtended ( ) = = NLGUI : : CEventDescriptorMouse : : mouseleftup )
2010-05-06 00:08:41 +00:00
{
2012-06-15 21:30:27 +00:00
if ( CWidgetManager : : getInstance ( ) - > getCapturePointerLeft ( ) ! = this )
return false ;
if ( _LeftDblClickHandled ) // no effect on mouse up after double click has been handled
{
_LeftDblClickHandled = false ;
2010-05-06 00:08:41 +00:00
return true ;
2012-06-15 21:30:27 +00:00
}
2010-05-06 00:08:41 +00:00
2012-06-15 21:30:27 +00:00
// Do not launch 2 times action handler if we are already pushed ! except if we want.
if ( ! _ClickWhenPushed )
{
if ( ( _Type = = RadioButton ) & & _RBRef & & ( * _RBRef = = this ) )
return true ;
}
2010-05-06 00:08:41 +00:00
2012-06-15 21:30:27 +00:00
if ( _Type = = RadioButton )
{
_Pushed = true ;
if ( _RBRef ) * _RBRef = this ;
}
2010-05-06 00:08:41 +00:00
2012-06-15 21:30:27 +00:00
if ( _Type = = ToggleButton )
_Pushed = ! _Pushed ;
2010-05-06 00:08:41 +00:00
2012-06-15 21:30:27 +00:00
/*
// RunAction
if ( _AHOnLeftClick ! = NULL )
{
//nlinfo("clicked on %s", _Id.c_str());
pIM - > submitEvent ( " button_click: " + getId ( ) ) ; //TEMP
CAHManager : : getInstance ( ) - > runActionHandler ( _AHOnLeftClick , this , _AHLeftClickParams ) ;
//pIM->submitEvent ("button_click:"+getId());
}
*/
runLeftClickAction ( ) ;
if ( CWidgetManager : : getInstance ( ) - > getCapturePointerLeft ( ) = = NULL ) return true ; // event handler may release cpature from this object (if it is removed for example)
2010-05-06 00:08:41 +00:00
2012-06-15 21:30:27 +00:00
// Run Menu
if ( ! _ListMenuLeft . empty ( ) )
CWidgetManager : : getInstance ( ) - > enableModalWindow ( this , _ListMenuLeft ) ;
2010-05-06 00:08:41 +00:00
2012-06-15 21:30:27 +00:00
if ( _AHOnLeftDblClick ! = NULL )
{
_LastLeftClickDate = T1 ;
_LastLeftClickButton = this ;
}
2010-05-06 00:08:41 +00:00
2012-06-15 21:30:27 +00:00
// Always return true on LeftClick.
return true ;
}
if ( eventDesc . getEventTypeExtended ( ) = = NLGUI : : CEventDescriptorMouse : : mouserightdown )
2010-05-06 00:08:41 +00:00
{
2012-06-15 21:30:27 +00:00
_LastLeftClickButton = NULL ;
return true ;
2010-05-06 00:08:41 +00:00
}
2012-06-15 21:30:27 +00:00
if ( eventDesc . getEventTypeExtended ( ) = = NLGUI : : CEventDescriptorMouse : : mouserightup )
2010-05-06 00:08:41 +00:00
{
2012-06-15 21:30:27 +00:00
_LastLeftClickButton = NULL ;
bool handled = false ;
if ( CWidgetManager : : getInstance ( ) - > getCapturePointerRight ( ) ! = this )
return false ;
// RunAction
if ( _AHOnRightClick ! = NULL )
{
handled = true ;
CAHManager : : getInstance ( ) - > runActionHandler ( _AHOnRightClick , this , _AHRightClickParams ) ;
}
if ( CWidgetManager : : getInstance ( ) - > getCapturePointerRight ( ) = = NULL ) return true ; // if this become NULL, this ctrl has been deleted
// Run Menu
if ( ! _ListMenuRight . empty ( ) )
{
handled = true ;
CWidgetManager : : getInstance ( ) - > enableModalWindow ( this , _ListMenuRight ) ;
}
// If not handled here, ret to parent
return handled ;
2010-05-06 00:08:41 +00:00
}
2012-06-15 21:30:27 +00:00
}
else if ( event . getType ( ) = = NLGUI : : CEventDescriptor : : system )
2010-05-06 00:08:41 +00:00
{
2012-06-15 21:30:27 +00:00
const NLGUI : : CEventDescriptorSystem & systemEvent = ( const NLGUI : : CEventDescriptorSystem & ) event ;
if ( systemEvent . getEventTypeExtended ( ) = = NLGUI : : CEventDescriptorSystem : : clocktick )
2010-05-06 00:08:41 +00:00
{
2012-06-15 21:30:27 +00:00
if ( _AHOnClockTick ! = NULL )
{
CAHManager : : getInstance ( ) - > runActionHandler ( _AHOnClockTick , this , _AHClockTickParams ) ;
}
2010-05-06 00:08:41 +00:00
2012-06-15 21:30:27 +00:00
if ( CWidgetManager : : getInstance ( ) - > getCapturePointerLeft ( ) = = this )
2010-05-06 00:08:41 +00:00
{
2012-06-15 21:30:27 +00:00
if ( ! _LeftLongClickHandled )
2010-05-06 00:08:41 +00:00
{
2012-06-15 21:30:27 +00:00
uint nVal = 50 ;
CCDBNodeLeaf * pNL = NLGUI : : CDBManager : : getInstance ( ) - > getDbProp ( " UI:SAVE:KEY_REPEAT_SPEED " ) ;
if ( pNL ! = NULL )
nVal = pNL - > getValue32 ( ) ;
uint repeatDelay = ( uint ) ( KEY_REPEAT_MIN + ( KEY_REPEAT_MAX - KEY_REPEAT_MIN ) * ( float ) nVal / 100.0f ) ;
if ( ( T1 - _LeftLongClickDate ) > repeatDelay )
{
_LeftLongClickHandled = true ;
CAHManager : : getInstance ( ) - > runActionHandler ( _AHOnLeftLongClick , this , _AHLeftLongClickParams ) ;
}
2010-05-06 00:08:41 +00:00
}
}
}
}
2012-06-15 21:30:27 +00:00
return false ;
2010-05-06 00:08:41 +00:00
}
2012-06-15 21:30:27 +00:00
// ***************************************************************************
void CCtrlBaseButton : : initRBRef ( )
2010-05-06 00:08:41 +00:00
{
2012-06-15 21:30:27 +00:00
if ( _RBRef ! = NULL ) return ;
nlassert ( _Parent ) ;
const vector < CCtrlBase * > & vCB = _Parent - > getControls ( ) ;
uint i = 0 ;
for ( i = 0 ; i < vCB . size ( ) ; + + i )
2010-05-06 00:08:41 +00:00
{
2012-06-15 21:30:27 +00:00
CCtrlBaseButton * pBut = dynamic_cast < CCtrlBaseButton * > ( vCB [ i ] ) ;
if ( pBut & & pBut - > _Type = = RadioButton )
{
_RBRef = & pBut - > _RBRefBut ;
break ;
}
2010-05-06 00:08:41 +00:00
}
2012-06-15 21:30:27 +00:00
// If we are the first radio button of the group and not added
if ( i = = vCB . size ( ) )
_RBRef = & this - > _RBRefBut ;
2010-05-06 00:08:41 +00:00
}
2012-06-15 21:30:27 +00:00
// ***************************************************************************
void CCtrlBaseButton : : initRBRefFromRadioButton ( CCtrlBaseButton * pBut )
2010-05-06 00:08:41 +00:00
{
2012-06-15 21:30:27 +00:00
if ( pBut & & pBut - > _Type = = RadioButton )
{
_RBRef = & ( pBut - > _RBRefBut ) ;
_RBRefBut = NULL ;
}
2010-05-06 00:08:41 +00:00
}
2012-06-15 21:30:27 +00:00
// ***************************************************************************
void CCtrlBaseButton : : setPushed ( bool state )
2010-05-06 00:08:41 +00:00
{
2012-06-15 21:30:27 +00:00
_Pushed = state ;
if ( _Type = = RadioButton & & _RBRef )
2010-05-06 00:08:41 +00:00
{
2012-06-15 21:30:27 +00:00
if ( state = = true )
{
* _RBRef = this ;
}
else
{
if ( * _RBRef = = this ) // I have to be pushed to unpush me
* _RBRef = NULL ; // After that : All radio buttons are NOT pushed
}
2010-05-06 00:08:41 +00:00
}
}
2012-06-15 21:30:27 +00:00
// ***************************************************************************
void CCtrlBaseButton : : setFrozen ( bool state )
2010-05-06 00:08:41 +00:00
{
2012-06-15 21:30:27 +00:00
_Frozen = state ;
if ( _Frozen )
{
_Pushed = false ;
_Over = false ;
}
2010-05-06 00:08:41 +00:00
}
2012-06-15 21:30:27 +00:00
// ***************************************************************************
void CCtrlBaseButton : : setFrozenHalfTone ( bool enabled )
2010-05-06 00:08:41 +00:00
{
2012-06-15 21:30:27 +00:00
_FrozenHalfTone = enabled ;
2010-05-06 00:08:41 +00:00
}
2012-06-15 21:30:27 +00:00
// ***************************************************************************
void CCtrlBaseButton : : unselect ( )
2010-05-06 00:08:41 +00:00
{
2012-06-15 21:30:27 +00:00
if ( _Type = = RadioButton )
{
if ( _RBRef ) * _RBRef = NULL ;
}
2010-05-06 00:08:41 +00:00
}
2012-06-15 21:30:27 +00:00
// ***************************************************************************
void CCtrlBaseButton : : updateOver ( bool & lastOver )
2010-05-06 00:08:41 +00:00
{
2012-06-15 21:30:27 +00:00
if ( ! CWidgetManager : : getInstance ( ) - > isMouseHandlingEnabled ( ) )
2010-05-06 00:08:41 +00:00
{
_Over = false ;
2012-06-15 21:30:27 +00:00
return ;
2010-05-06 00:08:41 +00:00
}
2012-06-15 21:30:27 +00:00
if ( CWidgetManager : : getInstance ( ) - > getCapturePointerLeft ( ) ! = NULL )
{
if ( CWidgetManager : : getInstance ( ) - > getCapturePointerLeft ( ) ! = this )
{
_Over = false ;
}
return ;
}
2010-05-06 00:08:41 +00:00
2012-06-15 21:30:27 +00:00
const vector < CCtrlBase * > & rVB = CWidgetManager : : getInstance ( ) - > getCtrlsUnderPointer ( ) ;
if ( ! _Frozen )
2010-05-06 00:08:41 +00:00
{
2012-06-15 21:30:27 +00:00
uint32 i ;
lastOver = _Over ;
// show over if it is the last control that has the same father
CCtrlBase * candidate = NULL ;
for ( i = 0 ; i < rVB . size ( ) ; + + i )
2010-05-06 00:08:41 +00:00
{
2012-06-15 21:30:27 +00:00
if ( rVB [ i ] - > getParent ( ) = = this - > getParent ( ) )
{
candidate = rVB [ i ] ;
}
2010-05-06 00:08:41 +00:00
}
2012-06-15 21:30:27 +00:00
_Over = ( candidate = = this ) ;
2010-05-06 00:08:41 +00:00
}
2012-06-15 21:30:27 +00:00
else
_Over = false ;
2010-05-06 00:08:41 +00:00
2012-06-15 21:30:27 +00:00
}
2010-05-06 00:08:41 +00:00
2012-06-15 21:30:27 +00:00
// ***************************************************************************
void CCtrlBaseButton : : elementCaptured ( CCtrlBase * capturedElement )
2010-05-06 00:08:41 +00:00
{
2012-06-15 21:30:27 +00:00
// if not me, then reset my '_Over'
if ( capturedElement ! = this )
{
_Over = false ;
}
2010-05-06 00:08:41 +00:00
}
2012-06-15 21:30:27 +00:00
// ***************************************************************************
void CCtrlBaseButton : : runLeftClickAction ( )
2010-05-06 00:08:41 +00:00
{
2012-06-15 21:30:27 +00:00
if ( _AHOnLeftClick ! = NULL )
{
2010-05-06 00:08:41 +00:00
2012-06-15 21:30:27 +00:00
//nlinfo("clicked on %s", _Id.c_str());
CAHManager : : getInstance ( ) - > submitEvent ( " button_click: " + getId ( ) ) ;
CAHManager : : getInstance ( ) - > runActionHandler ( _AHOnLeftClick , this , _AHLeftClickParams ) ;
//pIM->submitEvent ("button_click:"+getId());
}
2010-05-06 00:08:41 +00:00
}
2012-06-15 21:30:27 +00:00
// ***************************************************************************
int CCtrlBaseButton : : luaRunLeftClickAction ( CLuaState & ls )
{
const char * funcName = " onLeftClick " ;
CLuaIHM : : checkArgCount ( ls , funcName , 0 ) ;
2010-05-06 00:08:41 +00:00
2012-06-15 21:30:27 +00:00
runLeftClickAction ( ) ;
return 0 ;
}
2010-05-06 00:08:41 +00:00
}