本文整理汇总了C++中Fl_Input::type方法的典型用法代码示例。如果您正苦于以下问题:C++ Fl_Input::type方法的具体用法?C++ Fl_Input::type怎么用?C++ Fl_Input::type使用的例子?那么, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类Fl_Input
的用法示例。
在下文中一共展示了Fl_Input::type方法的1个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的C++代码示例。
示例1: AddInput
//==== Create & Init Float Input ====//
void GroupLayout::AddInput( Input& input, const char* label, const char* format )
{
assert( m_Group && m_Screen );
//==== Parm Button ====//
VspButton* button = AddParmButton( label );
//==== Add Text Input ====//
int iw = FitWidth( m_ButtonWidth, m_InputWidth );
Fl_Input* flinput = new Fl_Input( m_X, m_Y, iw, m_StdHeight );
flinput->type( 1 );
flinput->box( FL_THIN_DOWN_BOX );
flinput->textsize( 12 );
flinput->when( FL_WHEN_ENTER_KEY | FL_WHEN_RELEASE );
m_Group->add( flinput );
AddX( iw );
AddY( m_StdHeight );
NewLineX();
input.Init( m_Screen, flinput, format, button );
}