本文整理汇总了C++中sDelete函数的典型用法代码示例。如果您正苦于以下问题:C++ sDelete函数的具体用法?C++ sDelete怎么用?C++ sDelete使用的例子?那么恭喜您, 这里精选的函数代码示例或许可以为您提供帮助。
在下文中一共展示了sDelete函数的9个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于我们的系统推荐出更棒的C++代码示例。
示例1: QDialog
/*
* Constructs a ReportParameterList as a child of 'parent', with the
* name 'name' and widget flags set to 'f'.
*
* The dialog will by default be modeless, unless you set 'modal' to
* true to construct a modal dialog.
*/
ReportParameterList::ReportParameterList(QWidget* parent, const char* name, bool modal, Qt::WFlags fl)
: QDialog(parent, name, modal, fl)
{
setupUi(this);
// signals and slots connections
connect(_btnClose, SIGNAL(clicked()), this, SLOT(accept()));
connect(_btnAdd, SIGNAL(clicked()), this, SLOT(sAdd()));
connect(_btnEdit, SIGNAL(clicked()), this, SLOT(sEdit()));
connect(_btnDelete, SIGNAL(clicked()), this, SLOT(sDelete()));
connect(_lbParameters, SIGNAL(doubleClicked(Q3ListBoxItem*)), this, SLOT(sEdit(Q3ListBoxItem*)));
init();
}
开发者ID:Wushaowei001,项目名称:xtuple,代码行数:21,代码来源:reportparameterlist.cpp
示例2: SLOT
void departments::sPopulateMenu(QMenu *pMenu )
{
QAction *menuItem;
menuItem = pMenu->addAction(tr("Edit"), this, SLOT(sEdit()));
menuItem->setEnabled(_privileges->check("MaintainDepartments"));
menuItem = pMenu->addAction(tr("View"), this, SLOT(sView()));
menuItem->setEnabled(_privileges->check("ViewDepartments") ||
_privileges->check("MaintainDepartments"));
menuItem = pMenu->addAction(tr("Delete"), this, SLOT(sDelete()));
menuItem->setEnabled(_privileges->check("MaintainDepartments"));
}
开发者ID:Dinesh-Ramakrishnan,项目名称:qt-client,代码行数:14,代码来源:departments.cpp
示例3: XWidget
calendars::calendars(QWidget* parent, const char* name, Qt::WindowFlags fl)
: XWidget(parent, name, fl)
{
setupUi(this);
connect(_new, SIGNAL(clicked()), this, SLOT(sNew()));
connect(_edit, SIGNAL(clicked()), this, SLOT(sEdit()));
connect(_delete, SIGNAL(clicked()), this, SLOT(sDelete()));
_calhead->addColumn(tr("Name"), _itemColumn, Qt::AlignLeft, true, "calhead_name");
_calhead->addColumn(tr("Description"), -1, Qt::AlignLeft, true, "calhead_descrip");
sFillList();
}
开发者ID:ChristopherCotnoir,项目名称:qt-client,代码行数:14,代码来源:calendars.cpp
示例4: XWidget
dspCountTagEditList::dspCountTagEditList(QWidget* parent, const char* name, Qt::WindowFlags fl)
: XWidget(parent, name, fl)
{
setupUi(this);
_highlightGroupInt = new QButtonGroup(this);
_highlightGroupInt->addButton(_noHighlight);
_highlightGroupInt->addButton(_highlightValue);
_highlightGroupInt->addButton(_highlightPercent);
_codeGroup = new QButtonGroup(this);
_codeGroup->addButton(_plancode);
_codeGroup->addButton(_classcode);
connect(_delete, SIGNAL(clicked()), this, SLOT(sDelete()));
connect(_edit, SIGNAL(clicked()), this, SLOT(sEdit()));
connect(_showSlips, SIGNAL(clicked()), this, SLOT(sToggleList()));
connect(_enterSlip, SIGNAL(clicked()), this, SLOT(sEnterCountSlip()));
connect(_cnttag, SIGNAL(populateMenu(QMenu*,QTreeWidgetItem*)), this, SLOT(sPopulateMenu(QMenu*,QTreeWidgetItem*)));
connect(_post, SIGNAL(clicked()), this, SLOT(sPost()));
connect(_print, SIGNAL(clicked()), this, SLOT(sPrint()));
connect(_searchFor, SIGNAL(textChanged(const QString&)), this, SLOT(sSearch(const QString&)));
connect(_autoUpdate, SIGNAL(toggled(bool)), this, SLOT(sHandleAutoUpdate(bool)));
connect(_query, SIGNAL(clicked()), this, SLOT(sFillList()));
connect(_codeGroup, SIGNAL(buttonClicked(int)), this, SLOT(sParameterTypeChanged()));
_parameter->setType(ParameterGroup::ClassCode);
_variancePercent->setValidator(omfgThis->percentVal());
_cnttag->setRootIsDecorated(true);
_cnttag->addColumn(tr("Pri."), (_whsColumn + 10), Qt::AlignCenter,true, "invcnt_priority");
_cnttag->addColumn(tr("Tag/Slip #"),_orderColumn, Qt::AlignRight, true, "tagnumber");
_cnttag->addColumn(tr("Tag Date"), _dateColumn, Qt::AlignCenter,true, "tagdate");
_cnttag->addColumn(tr("Item Number"),_itemColumn, Qt::AlignLeft, true, "item_number");
_cnttag->addColumn(tr("Description"), -1, Qt::AlignLeft, true, "item_descrip");
_cnttag->addColumn(tr("Site"), _whsColumn, Qt::AlignCenter,true, "warehous_code");
_cnttag->addColumn(tr("Location"), _ynColumn, Qt::AlignCenter,true, "loc_specific");
_cnttag->addColumn(tr("QOH"), _qtyColumn, Qt::AlignRight, true, "qoh");
_cnttag->addColumn(tr("Count Qty."), _qtyColumn, Qt::AlignRight, true, "qohafter");
_cnttag->addColumn(tr("Variance"), _qtyColumn, Qt::AlignRight, true, "variance");
_cnttag->addColumn(tr("%"), _prcntColumn, Qt::AlignRight, true, "varianceprcnt");
_cnttag->addColumn(tr("Amount"), _costColumn, Qt::AlignRight, true, "variancecost");
_cnttag->setIndentation(10);
if (_privileges->check("EnterCountTags"))
{
connect(_cnttag, SIGNAL(itemSelected(int)), _edit, SLOT(animateClick()));
connect(_cnttag, SIGNAL(valid(bool)), this, SLOT(sHandleButtons(bool)));
}
开发者ID:ChristopherCotnoir,项目名称:qt-client,代码行数:49,代码来源:dspCountTagEditList.cpp
示例5: QDialog
ReportParameterList::ReportParameterList(QWidget* parent, Qt::WindowFlags fl)
: QDialog(parent, fl)
{
setupUi(this);
// signals and slots connections
connect(_btnClose, SIGNAL(clicked()), this, SLOT(accept()));
connect(_btnAdd, SIGNAL(clicked()), this, SLOT(sAdd()));
connect(_btnEdit, SIGNAL(clicked()), this, SLOT(sEdit()));
connect(_btnDelete, SIGNAL(clicked()), this, SLOT(sDelete()));
connect(_lbParameters, SIGNAL(itemDoubleClicked(QListWidgetItem*)), this, SLOT(sEdit(QListWidgetItem*)));
_map = 0;
}
开发者ID:ChristopherCotnoir,项目名称:openrpt,代码行数:15,代码来源:reportparameterlist.cpp
示例6: connect
void currencies::sPopulateMenu(QMenu* pMenu)
{
QAction *menuItem;
menuItem = pMenu->addAction(tr("View..."));
connect(menuItem, SIGNAL(triggered()), this, SLOT(sView()));
menuItem = pMenu->addAction(tr("Edit..."));
connect(menuItem, SIGNAL(triggered()), this, SLOT(sEdit()));
menuItem->setEnabled(_privileges->check("MaintainCurrencies"));
menuItem = pMenu->addAction(tr("Delete..."));
connect(menuItem, SIGNAL(triggered()), this, SLOT(sDelete()));
menuItem->setEnabled(_privileges->check("MaintainCurrencies"));
}
开发者ID:Dinesh-Ramakrishnan,项目名称:qt-client,代码行数:15,代码来源:currencies.cpp
示例7: SLOT
void dspPurchaseReqsByItem::sPopulateMenu(QMenu *pMenu, QTreeWidgetItem *, int)
{
QAction *menuItem;
menuItem = pMenu->addAction(tr("Running Availability..."), this, SLOT(sDspRunningAvailability()));
menuItem->setEnabled(_privileges->check("ViewInventoryAvailability"));
pMenu->addSeparator();
menuItem = pMenu->addAction(tr("Release P/R..."), this, SLOT(sRelease()));
menuItem->setEnabled(_privileges->check("MaintainPurchaseOrders"));
menuItem = pMenu->addAction(tr("Delete P/R..."), this, SLOT(sDelete()));
menuItem->setEnabled(_privileges->check("MaintainPurchaseRequests"));
}
开发者ID:Fortyseven,项目名称:qt-client,代码行数:15,代码来源:dspPurchaseReqsByItem.cpp
示例8: SLOT
void salesReps::sPopulateMenu( QMenu * menu )
{
QAction *menuItem;
menuItem = menu->addAction(tr("Edit Sales Rep..."), this, SLOT(sEdit()));
if (!_privileges->check("MaintainSalesReps"))
menuItem->setEnabled(FALSE);
menuItem = menu->addAction(tr("View Sales Rep..."), this, SLOT(sView()));
if ((!_privileges->check("MaintainSalesReps")) && (!_privileges->check("ViewSalesReps")))
menuItem->setEnabled(FALSE);
menuItem = menu->addAction(tr("Delete Sales Rep..."), this, SLOT(sDelete()));
if (!_privileges->check("MaintainSalesReps"))
menuItem->setEnabled(FALSE);
}
开发者ID:Dinesh-Ramakrishnan,项目名称:qt-client,代码行数:16,代码来源:salesReps.cpp
示例9: while
sBool sMiniFTPServer::Run(sThread *t)
{
RequestHandler handler = Handler;
if(!HostSocket.IsConnected() || !handler)
return sFALSE;
while(HostSocket.IsConnected() && (!t || t->CheckTerminate()))
{
// wait for something to happen
sTCPSocket *newconn;
if(HostSocket.WaitForNewConnection(newconn,100) && newconn)
{
// "garbage collect" dropped connections
Connection *c, *next;
for(c=ConnList.GetHead(); !ConnList.IsEnd(c); c=next)
{
next = ConnList.GetNext(c);
if(!c->Socket->IsConnected())
{
sDelete(c->Thread);
HostSocket.CloseConnection(c->Socket);
ConnList.Rem(c);
FreeList.AddTail(c);
}
}
// add the new connection
if(!FreeList.IsEmpty())
{
c = FreeList.RemHead();
sSetMem(c,0,sizeof(Connection));
c->Socket = newconn;
c->Handler = handler;
c->OnlyFullFiles = OnlyFullFiles;
ConnList.AddTail(c);
c->Thread = new sThread(ClientThreadFunc,0,32768,c);
}
else
{
sLogF(L"MiniFTP",L"Out of connections!\n");
HostSocket.CloseConnection(newconn);
}
}
}
return sTRUE;
}
开发者ID:Ambrevar,项目名称:fr_public,代码行数:47,代码来源:miniftp.cpp
注:本文中的sDelete函数示例由纯净天空整理自Github/MSDocs等源码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。 |
请发表评论