Exemple #1
0
bool QPrinterProto::fullPage() const
{
  QPrinter *item = qscriptvalue_cast<QPrinter*>(thisObject());
  if (item)
    return item->fullPage();
  return false;
}
Exemple #2
0
int Printer::fullPage(lua_State * L) // const : bool 
{
	QPrinter* lhs = ValueBinding<MyQPrinter>::check( L, 1 );
	Util::push( L, lhs->fullPage() );
	return 1;
}