aboutsummaryrefslogtreecommitdiffstats
path: root/libpyside/qproperty.h
diff options
context:
space:
mode:
Diffstat (limited to 'libpyside/qproperty.h')
-rw-r--r--libpyside/qproperty.h103
1 files changed, 0 insertions, 103 deletions
diff --git a/libpyside/qproperty.h b/libpyside/qproperty.h
index 645a46855..bb256b4c0 100644
--- a/libpyside/qproperty.h
+++ b/libpyside/qproperty.h
@@ -59,26 +59,6 @@ PYSIDE_API int qpropertySet(PyObject* self, PyObject* source, PyObject* value);
PYSIDE_API PyObject* qpropertyGet(PyObject* self, PyObject* source);
/**
- * This function call reset property function
- * This function does not check the property object type
- *
- * @param self The property object
- * @param source The QObject witch has the property
- * @return Return 0 if ok or -1 if this function fail
- **/
-PYSIDE_API int qpropertyReset(PyObject* self, PyObject* source);
-
-
-/**
- * This function return the property type
- * This function does not check the property object type
- *
- * @param self The property object
- * @return Return the property type name
- **/
-PYSIDE_API const char* qpropertyGetType(PyObject* self);
-
-/**
* This function search in the source object for desired property
*
* @param source The QObject object
@@ -87,89 +67,6 @@ PYSIDE_API const char* qpropertyGetType(PyObject* self);
**/
PYSIDE_API PyObject* qpropertyGetObject(PyObject* source, PyObject* name);
-
-/**
- * This function check if property has read function
- * This function does not check the property object type
- *
- * @param self The property object
- * @return Return a boolean value
- **/
-PYSIDE_API bool qpropertyIsReadable(PyObject* self);
-
-/**
- * This function check if property has write function
- * This function does not check the property object type
- *
- * @param self The property object
- * @return Return a boolean value
- **/
-PYSIDE_API bool qpropertyIsWritable(PyObject* self);
-
-/**
- * This function check if property has reset function
- * This function does not check the property object type
- *
- * @param self The property object
- * @return Return a boolean value
- **/
-PYSIDE_API bool qpropertyHasReset(PyObject* self);
-
-/**
- * This function check if property has the flag DESIGNABLE setted
- * This function does not check the property object type
- *
- * @param self The property object
- * @return Return a boolean value
- **/
-PYSIDE_API bool qpropertyIsDesignable(PyObject* self);
-
-/**
- * This function check if property has the flag SCRIPTABLE setted
- * This function does not check the property object type
- *
- * @param self The property object
- * @return Return a boolean value
- **/
-PYSIDE_API bool qpropertyIsScriptable(PyObject* self);
-
-/**
- * This function check if property has the flag STORED setted
- * This function does not check the property object type
- *
- * @param self The property object
- * @return Return a boolean value
- **/
-PYSIDE_API bool qpropertyIsStored(PyObject* self);
-
-/**
- * This function check if property has the flag USER setted
- * This function does not check the property object type
- *
- * @param self The property object
- * @return Return a boolean value
- **/
-PYSIDE_API bool qpropertyIsUser(PyObject* self);
-
-/**
- * This function check if property has the flag CONSTANT setted
- * This function does not check the property object type
- *
- * @param self The property object
- * @return Return a boolean value
- **/
-PYSIDE_API bool qpropertyIsConstant(PyObject* self);
-
-/**
- * This function check if property has the flag FINAL setted
- * This function does not check the property object type
- *
- * @param self The property object
- * @return Return a boolean value
- **/
-PYSIDE_API bool qpropertyIsFinal(PyObject* self);
-
-
} //namespace PySide
#endif