コード例 #1
0
ファイル: QtlPrinter.cpp プロジェクト: Wushaowei001/NAF
int Printer::setPrinterSelectionOption(lua_State * L) // ( const QString & option )
{
	QPrinter* lhs = ValueBinding<MyQPrinter>::check( L, 1 );
#ifndef _WIN32
	lhs->setPrinterSelectionOption( QtValueBase::toString( L, 2 ));
#endif
	return 0;
}
コード例 #2
0
ファイル: qprinterproto.cpp プロジェクト: AlFoX/qt-client
void QPrinterProto::setPrinterSelectionOption(const QString & option)
{
  QPrinter *item = qscriptvalue_cast<QPrinter*>(thisObject());
  if (item)
    item->setPrinterSelectionOption(option);
}