PySidePropertyPrivate struct moved to the private header.
This commit is contained in:
parent
afe4fcf695
commit
a612c9ee58
2 changed files with 23 additions and 18 deletions
|
|
@ -36,24 +36,6 @@
|
||||||
extern "C"
|
extern "C"
|
||||||
{
|
{
|
||||||
|
|
||||||
struct PySidePropertyPrivate {
|
|
||||||
char* typeName;
|
|
||||||
PyObject* type;
|
|
||||||
PyObject* fget;
|
|
||||||
PyObject* fset;
|
|
||||||
PyObject* freset;
|
|
||||||
PyObject* fdel;
|
|
||||||
PyObject* notify;
|
|
||||||
char* notifySignature;
|
|
||||||
char* doc;
|
|
||||||
bool designable;
|
|
||||||
bool scriptable;
|
|
||||||
bool stored;
|
|
||||||
bool user;
|
|
||||||
bool constant;
|
|
||||||
bool final;
|
|
||||||
};
|
|
||||||
|
|
||||||
static int qpropertyTpInit(PyObject*, PyObject*, PyObject*);
|
static int qpropertyTpInit(PyObject*, PyObject*, PyObject*);
|
||||||
static void qpropertyFree(void*);
|
static void qpropertyFree(void*);
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -27,6 +27,29 @@
|
||||||
|
|
||||||
struct PySideProperty;
|
struct PySideProperty;
|
||||||
|
|
||||||
|
extern "C"
|
||||||
|
{
|
||||||
|
|
||||||
|
struct PySidePropertyPrivate {
|
||||||
|
char* typeName;
|
||||||
|
PyObject* type;
|
||||||
|
PyObject* fget;
|
||||||
|
PyObject* fset;
|
||||||
|
PyObject* freset;
|
||||||
|
PyObject* fdel;
|
||||||
|
PyObject* notify;
|
||||||
|
char* notifySignature;
|
||||||
|
char* doc;
|
||||||
|
bool designable;
|
||||||
|
bool scriptable;
|
||||||
|
bool stored;
|
||||||
|
bool user;
|
||||||
|
bool constant;
|
||||||
|
bool final;
|
||||||
|
};
|
||||||
|
|
||||||
|
} // extern "C"
|
||||||
|
|
||||||
namespace PySide { namespace Property {
|
namespace PySide { namespace Property {
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue