コード例 #1
0
int QTabWidgetProto::tabShape() const
{
  QTabWidget *item = qscriptvalue_cast<QTabWidget*>(thisObject());
  if (item)
    return item->tabShape();
  return 0;
}
コード例 #2
0
ファイル: QtlTabWidget.cpp プロジェクト: Wushaowei001/NAF
int TabWidget::tabShape( lua_State * L ) //const TabShape
{
	QTabWidget* obj = ObjectHelper<QTabWidget>::check( L, 1 );
	Util::push( L, obj->tabShape() );
	return 1;
}