コード例 #1
0
/*****************************************************
**
**   BasicView   ---   OnGeneralCommand
**
******************************************************/
void BasicView::OnGeneralCommand( wxCommandEvent &event )
{
	OnToolbarCommand();
}
コード例 #2
0
/*****************************************************
**
**   BasicView   ---   OnSpinCommand
**
******************************************************/
void BasicView::OnSpinCommand( wxSpinEvent &event )
{
	OnToolbarCommand();
}
コード例 #3
0
/*****************************************************
**
**   BasicView   ---   OnChoiceCommand
**
******************************************************/
void BasicView::OnChoiceCommand( wxCommandEvent &event )
{
	OnToolbarCommand();
	widget->SetFocus();
}
コード例 #4
0
/*****************************************************
**
**   BasicView   ---   OnEnterPressed
**
******************************************************/
void BasicView::OnEnterPressed( wxKeyEvent& )
{
	OnToolbarCommand();
}
コード例 #5
0
ファイル: TextView.cpp プロジェクト: martin-pe/maitreya8
/*************************************************//**
*
*     TextView   ---   OnDataChanged
*
******************************************************/
void TextView::OnDataChanged()
{
	OnToolbarCommand();
	updateView = true;
}