本文整理汇总了C++中QDesignerPropertySheetExtension::count方法的典型用法代码示例。如果您正苦于以下问题:C++ QDesignerPropertySheetExtension::count方法的具体用法?C++ QDesignerPropertySheetExtension::count怎么用?C++ QDesignerPropertySheetExtension::count使用的例子?那么, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类QDesignerPropertySheetExtension
的用法示例。
在下文中一共展示了QDesignerPropertySheetExtension::count方法的2个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的C++代码示例。
示例1: SIPLong_FromLong
static PyObject *meth_QDesignerPropertySheetExtension_count(PyObject *sipSelf, PyObject *sipArgs)
{
PyObject *sipParseErr = NULL;
PyObject *sipOrigSelf = sipSelf;
{
QDesignerPropertySheetExtension *sipCpp;
if (sipParseArgs(&sipParseErr, sipArgs, "B", &sipSelf, sipType_QDesignerPropertySheetExtension, &sipCpp))
{
int sipRes;
if (!sipOrigSelf)
{
sipAbstractMethod(sipName_QDesignerPropertySheetExtension, sipName_count);
return NULL;
}
Py_BEGIN_ALLOW_THREADS
sipRes = sipCpp->count();
Py_END_ALLOW_THREADS
return SIPLong_FromLong(sipRes);
}
}
开发者ID:ClydeMojura,项目名称:android-python27,代码行数:25,代码来源:sipQtDesignerQDesignerPropertySheetExtension.cpp
示例2: slot_QDesignerPropertySheetExtension___len__
static SIP_SSIZE_T slot_QDesignerPropertySheetExtension___len__(PyObject *sipSelf)
{
QDesignerPropertySheetExtension *sipCpp = reinterpret_cast<QDesignerPropertySheetExtension *>(sipGetCppPtr((sipSimpleWrapper *)sipSelf,sipType_QDesignerPropertySheetExtension));
if (!sipCpp)
return 0;
{
{
SIP_SSIZE_T sipRes = 0;
#line 1 "Auto-generated"
sipRes = (SIP_SSIZE_T)sipCpp->count();
#line 908 "C:\\Users\\marcus\\Downloads\\PyQt-gpl-5.4\\PyQt-gpl-5.4\\QtDesigner/sipQtDesignerQDesignerPropertySheetExtension.cpp"
return sipRes;
}
}
return 0;
}