本文整理汇总了C++中sPrint函数的典型用法代码示例。如果您正苦于以下问题:C++ sPrint函数的具体用法?C++ sPrint怎么用?C++ sPrint使用的例子?那么恭喜您, 这里精选的函数代码示例或许可以为您提供帮助。
在下文中一共展示了sPrint函数的4个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的C++代码示例。
示例1: XWidget
printCheck::printCheck(QWidget* parent, const char* name, Qt::WFlags fl)
: XWidget(parent, name, fl)
{
setupUi(this);
connect(_bankaccnt, SIGNAL(newID(int)), this, SLOT(sHandleBankAccount(int)));
connect(_check, SIGNAL(newID(int)), this, SLOT(sEnableCreateEFT()));
connect(_createEFT, SIGNAL(clicked()), this, SLOT(sCreateEFT()));
connect(_print, SIGNAL(clicked()), this, SLOT(sPrint()));
_captive = FALSE;
_setCheckNumber = -1;
_check->setAllowNull(TRUE);
_bankaccnt->setType(XComboBox::APBankAccounts);
_createEFT->setVisible(_metrics->boolean("ACHSupported") && _metrics->boolean("ACHEnabled"));
}
示例2: XWidget
bankAdjustmentEditList::bankAdjustmentEditList(QWidget* parent, const char* name, Qt::WindowFlags fl)
: XWidget(parent, name, fl)
{
setupUi(this);
connect(_print, SIGNAL(clicked()), this, SLOT(sPrint()));
connect(_new, SIGNAL(clicked()), this, SLOT(sNew()));
connect(_edit, SIGNAL(clicked()), this, SLOT(sEdit()));
connect(_view, SIGNAL(clicked()), this, SLOT(sView()));
connect(_delete, SIGNAL(clicked()), this, SLOT(sDelete()));
connect(_bankaccnt, SIGNAL(newID(int)), this, SLOT(sFillList()));
connect(_adjustments, SIGNAL(populateMenu(QMenu*,QTreeWidgetItem*,int)), this, SLOT(sPopulateMenu(QMenu*)));
_bankaccnt->populate("SELECT bankaccnt_id,"
" (bankaccnt_name || '-' || bankaccnt_descrip),"
" bankaccnt_name "
"FROM bankaccnt "
"ORDER BY bankaccnt_name;");
_adjustments->addColumn(tr("Bank Account"),_itemColumn, Qt::AlignLeft, true, "f_bank");
_adjustments->addColumn(tr("Adj. Type"), _orderColumn, Qt::AlignLeft, true, "bankadjtype_name");
_adjustments->addColumn(tr("Dist. Date"), _dateColumn, Qt::AlignCenter,true, "bankadj_date");
_adjustments->addColumn(tr("Doc. Number"), -1, Qt::AlignRight, true, "bankadj_docnumber");
_adjustments->addColumn(tr("Amount"), _bigMoneyColumn, Qt::AlignRight, true, "bankadj_amount");
_adjustments->addColumn(tr("Currency"),_currencyColumn, Qt::AlignLeft, !omfgThis->singleCurrency(), "currabbr");
if (_privileges->check("MaintainBankAdjustments"))
{
connect(_adjustments, SIGNAL(valid(bool)), _edit, SLOT(setEnabled(bool)));
connect(_adjustments, SIGNAL(valid(bool)), _delete, SLOT(setEnabled(bool)));
connect(_adjustments, SIGNAL(itemSelected(int)), _edit, SLOT(animateClick()));
}
else
{
_new->setEnabled(false);
connect(_adjustments, SIGNAL(itemSelected(int)), _view, SLOT(animateClick()));
}
connect(omfgThis, SIGNAL(bankAdjustmentsUpdated(int, bool)), this, SLOT(sFillList()));
sFillList();
}
示例3: XDialog
printLabelsByTo::printLabelsByTo(QWidget* parent, const char* name, bool modal, Qt::WFlags fl)
: XDialog(parent, name, modal, fl)
{
setupUi(this);
_print = _buttonBox->button(QDialogButtonBox::Ok);
_print->setEnabled(false);
connect(_buttonBox, SIGNAL(rejected()), this, SLOT(reject()));
connect(_buttonBox, SIGNAL(accepted()), this, SLOT(sPrint()));
connect(_order, SIGNAL(valid(bool)), _print, SLOT(setEnabled(bool)));
connect(_from, SIGNAL(valueChanged(int)), this, SLOT(sSetToMin(int)));
_order->setAllowedTypes(OrderLineEdit::Transfer);
_order->setAllowedStatuses(OrderLineEdit::Open | OrderLineEdit::Closed);
_report->populate( "SELECT labelform_id, labelform_name "
"FROM labelform "
"ORDER BY labelform_name;" );
}
示例4: XDialog
printMulticopyDocument::printMulticopyDocument(QWidget *parent,
const char *name,
bool modal,
Qt::WindowFlags fl)
: XDialog(parent, name, modal, fl)
{
_data = new printMulticopyDocumentPrivate(this);
connect(_data->_print, SIGNAL(clicked()), this, SLOT(sPrint()));
// This indirection allows scripts to replace core behavior - 14285
connect(this, SIGNAL(timeToPrintOneDoc(XSqlQuery*)),
this, SLOT(sPrintOneDoc(XSqlQuery*)));
connect(this, SIGNAL(timeToMarkOnePrinted(XSqlQuery*)),
this, SLOT(sMarkOnePrinted(XSqlQuery*)));
connect(this, SIGNAL(timeToPostOneDoc(XSqlQuery*)),
this, SLOT(sPostOneDoc(XSqlQuery*)));
_distributeInventory = false;
}