本文整理汇总了C++中sNew函数的典型用法代码示例。如果您正苦于以下问题:C++ sNew函数的具体用法?C++ sNew怎么用?C++ sNew使用的例子?那么恭喜您, 这里精选的函数代码示例或许可以为您提供帮助。
在下文中一共展示了sNew函数的5个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的C++代码示例。
示例1: newdlg
void assignLotSerial::sNew()
{
ParameterList params;
params.append("itemloc_series", _itemlocSeries);
params.append("itemlocdist_id", _itemlocdistid);
params.append("qtyRemaining", _qtyBalance->text());
createLotSerial newdlg(this, "", true);
newdlg.set(params);
if (newdlg.exec() != XDialog::Rejected)
{
sFillList();
if (_qtyBalance->toDouble() > 0)
sNew();
}
}
示例2: sOrig
void TestProgressDialog::TestSettingProgressViaStaticHelper()
{
CStdString sOrig( _T( "This text arrived via SetProgressText." ) ),
sNew ( _T( "This text arrived via SendMessage()" ));
WorkshareProgress wProg;
wProg.SetProgressText( sOrig );
assertMessage( sOrig.Compare(wProg.GetProgressText()) == 0, _T("Unexpected value for GetProgressText()") ) ;
HWND hWnd = wProg.GetHWND();
assertMessage( hWnd != NULL , _T("Unexpected value for hWnd"));
Sleep(1000);
SetProgressTextHWND( sNew, hWnd );
assertMessage( sNew.Compare(wProg.GetProgressText())==0, _T("Unexpected value for GetProgressText()") );
Sleep(1000);
}
示例3: XWidget
bankAdjustmentEditList::bankAdjustmentEditList(QWidget* parent, const char* name, Qt::WFlags 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, true, "currabbr");
if (omfgThis->singleCurrency())
_adjustments->hideColumn("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();
}
示例4: XWidget
cashReceiptsEditList::cashReceiptsEditList(QWidget* parent, const char* name, Qt::WFlags fl)
: XWidget(parent, name, fl)
{
setupUi(this);
connect(_cashrcpt, SIGNAL(populateMenu(QMenu*,QTreeWidgetItem*,int)), this, SLOT(sPopulateMenu(QMenu*)));
connect(_delete, SIGNAL(clicked()), this, SLOT(sDelete()));
connect(_edit, SIGNAL(clicked()), this, SLOT(sEdit()));
connect(_new, SIGNAL(clicked()), this, SLOT(sNew()));
connect(_print, SIGNAL(clicked()), this, SLOT(sPrint()));
connect(_view, SIGNAL(clicked()), this, SLOT(sView()));
connect(_post, SIGNAL(clicked()), this, SLOT(sPost()));
_cashrcpt->addColumn(tr("Number"), _orderColumn, Qt::AlignLeft, true, "cashrcpt_number");
_cashrcpt->addColumn(tr("Cust. #"), _bigMoneyColumn, Qt::AlignLeft, true, "cust_number");
_cashrcpt->addColumn(tr("Name"), -1, Qt::AlignLeft, true, "cust_name");
_cashrcpt->addColumn(tr("Check/Doc. #"), _orderColumn, Qt::AlignLeft, true, "cashrcpt_docnumber");
_cashrcpt->addColumn(tr("Bank Account"), _orderColumn, Qt::AlignLeft, true, "bankaccnt_name");
_cashrcpt->addColumn(tr("Dist. Date"), _dateColumn, Qt::AlignCenter,true, "cashrcpt_distdate");
_cashrcpt->addColumn(tr("Funds Type"), _bigMoneyColumn, Qt::AlignCenter,true, "cashrcpt_fundstype");
_cashrcpt->addColumn(tr("Amount"), _bigMoneyColumn, Qt::AlignRight, true, "cashrcpt_amount");
_cashrcpt->addColumn(tr("Currency"), _currencyColumn, Qt::AlignLeft, true, "currabbr");
if (omfgThis->singleCurrency())
_cashrcpt->hideColumn("cashrcpt_curr_id");
if (_privileges->check("PostCashReceipts"))
connect(_cashrcpt, SIGNAL(valid(bool)), _post, SLOT(setEnabled(bool)));
if (_privileges->check("MaintainCashReceipts"))
{
connect(_cashrcpt, SIGNAL(valid(bool)), _edit, SLOT(setEnabled(bool)));
connect(_cashrcpt, SIGNAL(valid(bool)), _delete, SLOT(setEnabled(bool)));
connect(_cashrcpt, SIGNAL(itemSelected(int)), _edit, SLOT(animateClick()));
}
else
{
_new->setEnabled(FALSE);
connect(_cashrcpt, SIGNAL(itemSelected(int)), _view, SLOT(animateClick()));
}
connect(omfgThis, SIGNAL(cashReceiptsUpdated(int, bool)), this, SLOT(sFillList()));
sFillList();
}
示例5: XDialog
uom::uom(QWidget* parent, const char* name, bool modal, Qt::WFlags fl)
: XDialog(parent, name, modal, fl)
{
setupUi(this);
connect(_buttonBox, SIGNAL(accepted()), this, SLOT(sSave()));
connect(_name, SIGNAL(editingFinished()), this, SLOT(sCheck()));
connect(_buttonBox, SIGNAL(rejected()), this, SLOT(reject()));
connect(_uomconv, SIGNAL(itemSelectionChanged()), this, SLOT(sSelected()));
connect(_new, SIGNAL(clicked()), this, SLOT(sNew()));
connect(_edit, SIGNAL(clicked()), this, SLOT(sEdit()));
connect(_delete, SIGNAL(clicked()), this, SLOT(sDelete()));
_uomconv->addColumn(tr("UOM/UOM"), -1, Qt::AlignLeft, true, "uomuom");
_uomconv->addColumn(tr("From Value"), -1, Qt::AlignRight, true, "uomconv_from_value");
_uomconv->addColumn(tr("To Value"), -1, Qt::AlignRight, true, "uomconv_to_value");
_uomconv->addColumn(tr("Fractional"), _ynColumn, Qt::AlignCenter, true, "uomconv_fractional");
}