CRotationSlider::CRotationSlider( vgui::Panel *pParent, const char *pName ) :
    BaseClass( pParent, pName )
{
    AddActionSignalTarget( this );
    SetRange( -180, 180 );
    SetTickCaptions("-180", "180");
    SetValue( 0 );
    m_flYaw = 0;
}
StimMusicSelectDialog::StimMusicSelectDialog( Panel *parent, const char *title, vgui::FileOpenDialogType_t type, KeyValues *pContextKeyValues ) :
	FileOpenDialog( parent, title, type, pContextKeyValues )
{
	// get notified when the file has been picked
	AddActionSignalTarget( this );
}
Esempio n. 3
0
CLegionConsoleDialog::CLegionConsoleDialog( vgui::Panel *pParent, const char *pName ) : BaseClass ( pParent, pName )
{
	AddActionSignalTarget( this );
}