• Home
  • History
  • Annotate
  • Raw
  • Download
  • only in /netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/amule/wxWidgets-2.8.12/src/common/

Lines Matching refs:object

23     #include "wx/object.h"
482 void wxClassInfo::SetProperty(wxObject *object, const wxChar *propertyName, const wxxVariant &value) const
488 accessor->SetProperty( object , value ) ;
491 wxxVariant wxClassInfo::GetProperty(wxObject *object, const wxChar *propertyName) const
498 accessor->GetProperty(object,result);
502 wxxVariantArray wxClassInfo::GetPropertyCollection(wxObject *object, const wxChar *propertyName) const
509 accessor->GetPropertyCollection(object,result);
513 void wxClassInfo::AddToPropertyCollection(wxObject *object, const wxChar *propertyName , const wxxVariant& value) const
519 accessor->AddToPropertyCollection( object , value ) ;
582 // instantiates this object with an instance of its superclass
650 void wxDynamicClassInfo::Create (wxObject *object, int paramCount, wxxVariant *params) const
652 wxDynamicObject *dynobj = dynamic_cast< wxDynamicObject *>( object ) ;
653 wxASSERT_MSG( dynobj , wxT("cannot call wxDynamicClassInfo::Create on an object other than wxDynamicObject") ) ;
669 void wxDynamicClassInfo::SetProperty(wxObject *object, const wxChar *propertyName, const wxxVariant &value) const
671 wxDynamicObject* dynobj = dynamic_cast< wxDynamicObject * >( object ) ;
672 wxASSERT_MSG( dynobj , wxT("cannot call wxDynamicClassInfo::SetProperty on an object other than wxDynamicObject") ) ;
679 wxxVariant wxDynamicClassInfo::GetProperty(wxObject *object, const wxChar *propertyName) const
681 wxDynamicObject* dynobj = dynamic_cast< wxDynamicObject * >( object ) ;
682 wxASSERT_MSG( dynobj , wxT("cannot call wxDynamicClassInfo::SetProperty on an object other than wxDynamicObject") ) ;
753 void wxGenericPropertyAccessor::SetProperty(wxObject *object, const wxxVariant &value) const
755 wxDynamicObject* dynobj = dynamic_cast< wxDynamicObject * >( object ) ;
756 wxASSERT_MSG( dynobj , wxT("cannot call wxDynamicClassInfo::SetProperty on an object other than wxDynamicObject") ) ;
760 void wxGenericPropertyAccessor::GetProperty(const wxObject *object, wxxVariant& value) const
762 const wxDynamicObject* dynobj = dynamic_cast< const wxDynamicObject * >( object ) ;
763 wxASSERT_MSG( dynobj , wxT("cannot call wxDynamicClassInfo::SetProperty on an object other than wxDynamicObject") ) ;