Home
last modified time | relevance | path

Searched refs:getImpl (Results 1 – 25 of 32) sorted by relevance

12

/trunk/main/toolkit/source/layout/vcl/
H A Dwbutton.cxx143 if ( !getImpl()->mxButton.is() ) in SetText()
145 getImpl()->mxButton->setLabel( rStr ); in SetText()
150 if (getImpl() && getImpl()->mxButton.is ()) in SetClickHdl()
151 getImpl()->SetClickHdl( link ); in SetClickHdl()
156 return getImpl()->GetClickHdl (); in GetClickHdl()
161 return getImpl() || getImpl()->SetModeImage (image.getImpl().mxGraphic); in SetModeImage()
171 if ( getImpl() ) in SetImageAlign()
172 getImpl()->setProperty( "ImageAlign", uno::Any( (sal_Int16) eAlign ) ); in SetImageAlign()
233 if ( getImpl() ) in Check()
234 getImpl()->setProperty( "State", uno::Any( (sal_Int16) !!bCheck ) ); in Check()
[all …]
H A Dwfield.cxx104 if ( !getImpl()->mxEdit.is() ) in SetSelection()
105 getImpl()->mxEdit->setSelection( awt::Selection( rSelection.Min(), rSelection.Max() ) ); in SetSelection()
114 if ( getImpl()->mxEdit.is() ) in SetText()
116 getImpl()->mxEdit->setText( rStr ); in SetText()
124 if ( !getImpl()->mxEdit.is() ) in GetText()
125 return getImpl()->mxEdit->getText(); in GetText()
131 if (getImpl() && getImpl()->mxEdit.is ()) in SetModifyHdl()
132 getImpl()->SetModifyHdl( link ); in SetModifyHdl()
437 return getImpl()->InsertEntry( rStr, nPos ); in InsertEntry()
442 getImpl()->RemoveEntry( GetEntryPos( rStr ) ); in RemoveEntry()
[all …]
H A Dwrapper.cxx607 if ( !getImpl()->mxWindow.is() ) in Enable()
609 getImpl()->mxWindow->setEnable( bEnable ); in Enable()
614 if ( !getImpl()->mxWindow.is() ) in Show()
616 getImpl()->mxWindow->setVisible( bVisible ); in Show()
618 getImpl()->bFirstTimeVisible = true; in Show()
619 else if (GetParent() && getImpl()->bFirstTimeVisible) in Show()
621 getImpl()->redraw (); in Show()
622 getImpl()->bFirstTimeVisible = false; in Show()
628 if ( !getImpl()->mxWindow.is() ) in GrabFocus()
630 getImpl()->mxWindow->setFocus(); in GrabFocus()
[all …]
H A Dwcontainer.cxx68 uno::Reference< awt::XLayoutConstrains > xChild( pChild->getImpl(), uno::UNO_QUERY ); in Add()
86 uno::Reference< awt::XLayoutConstrains > xChild( pChild->getImpl(), uno::UNO_QUERY ); in Remove()
152 WindowImpl *pImpl = window->getImpl(); in Add()
164 uno::Reference< awt::XLayoutConstrains > xChild( pContainer->getImpl(), in Add()
197 WindowImpl *pImpl = window->getImpl(); in Add()
210 uno::Reference< awt::XLayoutConstrains > xChild( pContainer->getImpl(), in Add()
H A Dwrapper.hxx86 inline WindowImpl *Window::getImpl() const{ return (static_cast< WindowImpl * >( mpImpl )); } in getImpl() function in layout::Window
91 inline t##Impl* t::getImpl() const \
/trunk/main/pyuno/source/module/
H A Dpyuno_gc.cxx76 runtime.getImpl()->cargo->mappedObjects.find( mPyObject ); in run()
77 if( ii != runtime.getImpl()->cargo->mappedObjects.end() ) in run()
79 runtime.getImpl()->cargo->mappedObjects.erase( ii ); in run()
H A Dpyuno_runtime.cxx534 … PyRef value = PyRef( PyUNO_new_UNCHECKED (a, getImpl()->cargo->xInvocation), SAL_NO_ACQUIRE); in any2PyObject()
575 Reference< XTypeConverter > tc = getImpl()->cargo->xTypeConverter; in any2PyObject()
576 Reference< XSingleServiceFactory > ssf = getImpl()->cargo->xInvocation; in any2PyObject()
614 return PyRef( PyUNO_new (a, getImpl()->cargo->xInvocation), SAL_NO_ACQUIRE ); in any2PyObject()
849 a = getImpl()->cargo->xTypeConverter->convertTo( a, t ); in pyObject2Any()
897 getImpl()->cargo->xAdapterFactory->createAdapter( in pyObject2Any()
H A Dpyuno_adapter.cxx124 runtime.getImpl()->cargo->xAdapterFactory->createAdapter( this, mTypes ); in getOutIndexes()
130 runtime.getImpl()->cargo->xIntrospection->inspect( makeAny( unoAdapterObject ) ); in getOutIndexes()
215 cargo = runtime.getImpl()->cargo; in invoke()
H A Dpyuno_type.cxx114 return PyRef( PyDict_GetItemString( r.getImpl()->cargo->getUnoModule().get(), (char*) name ) ); in getClass()
336 Any a = runtime.getImpl()->cargo->xTdMgr->getByHierarchicalName(name); in importToGlobal()
392 PyRef code( PyDict_GetItemString( r.getImpl()->cargo->getUnoModule().get(), (char*)clazz ) ); in callCtor()
H A Dpyuno_except.cxx223 const ClassSet & set = runtime.getImpl()->cargo->interfaceSet; in isInterfaceClass()
231 RuntimeCargo *cargo =runtime.getImpl()->cargo; in getClass()
H A Dpyuno_module.cxx151 ctx = runtime.getImpl()->cargo->xContext; in getComponentContext()
260 RuntimeCargo *c = runtime.getImpl()->cargo; in createUnoStructHelper()
375 Any a = runtime.getImpl()->cargo->xTdMgr->getByHierarchicalName(typeName); in getConstantByName()
/trunk/main/basic/source/sbx/
H A Dsbxvar.cxx394 SbxVariableImpl* SbxVariable::getImpl( void ) in getImpl() function in SbxVariable
403 SbxVariableImpl* pImpl = getImpl(); in GetDeclareClassName()
409 SbxVariableImpl* pImpl = getImpl(); in SetDeclareClassName()
416 SbxVariableImpl* pImpl = getImpl(); in SetComListener()
424 SbxVariableImpl* pImpl = getImpl(); in ClearComListener()
/trunk/main/connectivity/source/drivers/ado/
H A DAIndexes.cxx70 if ( FAILED( pIndexes->Append( OLEVariant( _rForName ), OLEVariant( pIndex->getImpl() ) ) ) ) in appendObject()
76 return new OAdoIndex(isCaseSensitive(),m_pConnection,pIndex->getImpl()); in appendObject()
H A DAKeys.cxx85 WpADOKey aKey = pKey->getImpl(); in appendObject()
100 return new OAdoKey(isCaseSensitive(),m_pConnection,pKey->getImpl()); in appendObject()
H A DATables.cxx81 if(!m_aCollection.Append(pTable->getImpl())) in appendObject()
85 return new OAdoTable(this,isCaseSensitive(),m_pCatalog,pTable->getImpl()); in appendObject()
H A DAGroups.cxx71 m_aCollection.Append( pGroup->getImpl() ); in appendObject()
H A DAUsers.cxx71 pUsers->Append(OLEVariant(pUser->getImpl()),OLEString(pUser->getPassword())); in appendObject()
/trunk/main/toolkit/inc/layout/
H A Dlayout.hxx105 inline t##Impl *getImpl() const
248 ImageImpl &getImpl() const { return *pImpl; } in getImpl() function in layout::Image
720 css::uno::Reference< css::awt::XLayoutContainer > getImpl() in getImpl() function in layout::Container
/trunk/main/desktop/source/migration/
H A Dmigration.cxx194 static MigrationImpl *getImpl() in getImpl() function
217 bResult = getImpl()->doMigration(); in doMigration()
236 return getImpl()->checkMigration(); in checkMigration()
241 return getImpl()->getOldVersionName(); in getOldVersionName()
/trunk/main/dbaccess/source/core/dataaccess/
H A Ddefinitioncontainer.cxx602 TContentPtr pImpl = pContent->getImpl(); in implAppend()
668 if ( rDefinitions.find( pContent->getImpl() ) != rDefinitions.end() ) in approveNewObject()
/trunk/main/connectivity/source/inc/ado/
H A DAView.hxx56 WpADOView getImpl() const { return m_aView;} in getImpl() function in connectivity::ado::OAdoView
H A DAIndex.hxx56 WpADOIndex getImpl() const { return m_aIndex;} in getImpl() function in connectivity::ado::OAdoIndex
H A DAKey.hxx57 WpADOKey getImpl() const { return m_aKey;} in getImpl() function in connectivity::ado::OAdoKey
H A DAGroup.hxx67 WpADOGroup getImpl() const { return m_aGroup; } in getImpl() function in connectivity::ado::OAdoGroup
H A DATable.hxx78 WpADOTable getImpl() const { return m_aTable;} in getImpl() function in connectivity::ado::OAdoTable

12