Home
last modified time | relevance | path

Searched refs:xProp (Results 1 – 25 of 237) sorted by relevance

12345678910

/AOO42X/main/chart2/qa/
H A DTestCaseOldAPI.java259 XPropertySet xProp = xDisp.getWall(); in testDiagram() local
260 if( xProp != null ) in testDiagram()
263 xProp.setPropertyValue( "FillColor", new Integer( nColor ) ); in testDiagram()
264 int nNewColor = AnyConverter.toInt( xProp.getPropertyValue( "FillColor" ) ); in testDiagram()
272 xProp = (XPropertySet) UnoRuntime.queryInterface( XPropertySet.class, xDia ); in testDiagram()
273 assure( "Diagram is no property set", xProp != null ); in testDiagram()
277 xProp.setPropertyValue( "HasYAxisDescription", new Boolean( bFirstYAxisText )); in testDiagram()
279 xProp.getPropertyValue( "HasYAxisDescription" )); in testDiagram()
299 xProp.setPropertyValue( "HasSecondaryYAxis", new Boolean( bSecondaryYAxis )); in testDiagram()
301 xProp.getPropertyValue( "HasSecondaryYAxis" )); in testDiagram()
[all …]
/AOO42X/main/chart2/source/view/main/
H A DShapeFactory.cxx84 uno::Reference< beans::XPropertySet > xProp( xShape, uno::UNO_QUERY ); in setShapeName() local
85 DBG_ASSERT(xProp.is(), "shape offers no XPropertySet"); in setShapeName()
86 if( xProp.is()) in setShapeName()
90 xProp->setPropertyValue( C2U( UNO_NAME_MISC_OBJ_NAME ) in setShapeName()
106 uno::Reference< beans::XPropertySet > xProp( xShape, uno::UNO_QUERY ); in getShapeName() local
107 DBG_ASSERT(xProp.is(), "shape offers no XPropertySet"); in getShapeName()
108 if( xProp.is()) in getShapeName()
112 xProp->getPropertyValue( C2U( UNO_NAME_MISC_OBJ_NAME ) ) >>= aRet; in getShapeName()
468 uno::Reference< beans::XPropertySet > xProp( xShape, uno::UNO_QUERY ); in createCube() local
470 PropertyMapper::setMappedProperties( xProp, xSourceProp, rPropertyNameMap ); in createCube()
[all …]
H A DVLineProperties.cxx51 void VLineProperties::initFromPropertySet( const uno::Reference< beans::XPropertySet >& xProp, bool… in initFromPropertySet() argument
53 if(xProp.is()) in initFromPropertySet()
57 this->Color = xProp->getPropertyValue( C2U( "BorderColor" ) ); in initFromPropertySet()
58 this->LineStyle = xProp->getPropertyValue( C2U( "BorderStyle" ) ); in initFromPropertySet()
59 this->Transparence = xProp->getPropertyValue( C2U( "BorderTransparency" ) ); in initFromPropertySet()
60 this->Width = xProp->getPropertyValue( C2U( "BorderWidth" ) ); in initFromPropertySet()
61 this->DashName = xProp->getPropertyValue( C2U( "BorderDashName" ) ); in initFromPropertySet()
69 this->Color = xProp->getPropertyValue( C2U( "LineColor" ) ); in initFromPropertySet()
70 this->LineStyle = xProp->getPropertyValue( C2U( "LineStyle" ) ); in initFromPropertySet()
71 this->Transparence = xProp->getPropertyValue( C2U( "LineTransparence" ) ); in initFromPropertySet()
[all …]
/AOO42X/main/odk/examples/DevelopersGuide/Database/
H A Dsdbcx.java153 XPropertySet xProp = (XPropertySet)UnoRuntime.queryInterface(XPropertySet.class,table); in displayTableProperties() local
154 System.out.println("Name: " + xProp.getPropertyValue("Name")); in displayTableProperties()
155 System.out.println("CatalogName: " + xProp.getPropertyValue("CatalogName")); in displayTableProperties()
156 System.out.println("SchemaName: " + xProp.getPropertyValue("SchemaName")); in displayTableProperties()
157 System.out.println("Description: " + xProp.getPropertyValue("Description")); in displayTableProperties()
159 if(xProp.getPropertySetInfo().hasPropertyByName("Type")) in displayTableProperties()
160 System.out.println("Type: " + xProp.getPropertyValue("Type")); in displayTableProperties()
193 … XPropertySet xProp = (XPropertySet)UnoRuntime.queryInterface(XPropertySet.class,key); in printKeys() local
194 System.out.println(" " + xProp.getPropertyValue("Name")); in printKeys()
195 …lier xKeyColumnsSup = ( XColumnsSupplier ) UnoRuntime.queryInterface(XColumnsSupplier.class,xProp); in printKeys()
[all …]
H A DRowSet.java94 XPropertySet xProp = (XPropertySet)UnoRuntime.queryInterface(XPropertySet.class,xRowRes); in useRowSet() local
95 xProp.setPropertyValue("DataSourceName","Bibliography"); in useRowSet()
96 xProp.setPropertyValue("Command","biblio"); in useRowSet()
97 xProp.setPropertyValue("CommandType",new Integer(com.sun.star.sdb.CommandType.TABLE)); in useRowSet()
117 XPropertySet xProp = (XPropertySet)UnoRuntime.queryInterface(XPropertySet.class,xRowRes); in showRowSetPrivileges() local
118 xProp.setPropertyValue("DataSourceName","Bibliography"); in showRowSetPrivileges()
119 xProp.setPropertyValue("Command","biblio"); in showRowSetPrivileges()
120 xProp.setPropertyValue("CommandType",new Integer(com.sun.star.sdb.CommandType.TABLE)); in showRowSetPrivileges()
125 Integer aPriv = (Integer)xProp.getPropertyValue("Privileges"); in showRowSetPrivileges()
151 XPropertySet xProp = (XPropertySet)UnoRuntime.queryInterface(XPropertySet.class,xRowRes); in showRowSetRowCount() local
[all …]
H A DSales.java112 XPropertySet xProp = (XPropertySet)UnoRuntime.queryInterface(XPropertySet.class,stmt); in retrieveSalesData2() local
114xProp.setPropertyValue("ResultSetType", new java.lang.Integer(ResultSetType.SCROLL_INSENSITIVE)); in retrieveSalesData2()
115xProp.setPropertyValue("ResultSetConcurrency", new java.lang.Integer(ResultSetConcurrency.UPDATABL… in retrieveSalesData2()
151 XPropertySet xProp = (XPropertySet)UnoRuntime.queryInterface(XPropertySet.class,stmt); in insertRow() local
152xProp.setPropertyValue("ResultSetType", new java.lang.Integer(ResultSetType.SCROLL_INSENSITIVE)); in insertRow()
153xProp.setPropertyValue("ResultSetConcurrency", new java.lang.Integer(ResultSetConcurrency.UPDATABL… in insertRow()
175 XPropertySet xProp = (XPropertySet)UnoRuntime.queryInterface(XPropertySet.class,stmt); in deleteRow() local
176xProp.setPropertyValue("ResultSetType", new java.lang.Integer(ResultSetType.SCROLL_INSENSITIVE)); in deleteRow()
177xProp.setPropertyValue("ResultSetConcurrency", new java.lang.Integer(ResultSetConcurrency.UPDATABL… in deleteRow()
195 XPropertySet xProp = (XPropertySet)UnoRuntime.queryInterface(XPropertySet.class,stmt); in refreshRow() local
[all …]
/AOO42X/main/xmloff/source/chart/
H A DSchXMLPlotAreaContext.cxx109 uno::Reference< beans::XPropertySet > xProp( xDiagram, uno::UNO_QUERY ); in getCameraDefaultFromDiagram() local
110 if( xProp.is() ) in getCameraDefaultFromDiagram()
113xProp->getPropertyValue( ::rtl::OUString::createFromAscii("D3DCameraGeometry")) >>= aCamGeo; in getCameraDefaultFromDiagram()
200 uno::Reference< beans::XPropertySet > xProp( mxDiagram, uno::UNO_QUERY ); in SchXMLPlotAreaContext() local
202 xProp.is()) in SchXMLPlotAreaContext()
206 xProp->setPropertyValue( in SchXMLPlotAreaContext()
208 xProp->setPropertyValue( in SchXMLPlotAreaContext()
210 xProp->setPropertyValue( in SchXMLPlotAreaContext()
212 xProp->setPropertyValue( in SchXMLPlotAreaContext()
214 xProp->setPropertyValue( in SchXMLPlotAreaContext()
[all …]
/AOO42X/main/dbaccess/source/core/api/
H A DTableDeco.cxx262 Reference<XPropertySet> xProp(m_xTable,UNO_QUERY); in setFastPropertyValue_NoBroadcast() local
263 xProp->setPropertyValue(PROPERTY_CATALOGNAME,_rValue); in setFastPropertyValue_NoBroadcast()
268 Reference<XPropertySet> xProp(m_xTable,UNO_QUERY); in setFastPropertyValue_NoBroadcast() local
269 xProp->setPropertyValue(PROPERTY_SCHEMANAME,_rValue); in setFastPropertyValue_NoBroadcast()
274 Reference<XPropertySet> xProp(m_xTable,UNO_QUERY); in setFastPropertyValue_NoBroadcast() local
275 xProp->setPropertyValue(PROPERTY_NAME,_rValue); in setFastPropertyValue_NoBroadcast()
280 Reference<XPropertySet> xProp(m_xTable,UNO_QUERY); in setFastPropertyValue_NoBroadcast() local
281 xProp->setPropertyValue(PROPERTY_DESCRIPTION,_rValue); in setFastPropertyValue_NoBroadcast()
286 Reference<XPropertySet> xProp(m_xTable,UNO_QUERY); in setFastPropertyValue_NoBroadcast() local
287 xProp->setPropertyValue(PROPERTY_TYPE,_rValue); in setFastPropertyValue_NoBroadcast()
[all …]
/AOO42X/main/sc/workben/
H A Dtest.cxx340 XPropertySetRef xProp = (XPropertySet*)xCursor->queryInterface(XPropertySet::getSmartUik()); in lcl_SetText() local
357 if (xProp.is()) in lcl_SetText()
358 xProp->setPropertyValue(L"Bold", UsrAny((BOOL)TRUE)); in lcl_SetText()
537 XPropertySetRef xProp = (XPropertySet*) in lcl_Cursor() local
539 if ( xProp ) in lcl_Cursor()
543 aAny = xProp->getPropertyValue(L"ShadowFormat"); in lcl_Cursor()
554 xProp->setPropertyValue(L"ShadowFormat", aAny); in lcl_Cursor()
557 aAny = xProp->getPropertyValue(L"RotationValue"); in lcl_Cursor()
559 xProp->setPropertyValue(L"RotationValue", aAny); in lcl_Cursor()
561 aAny = xProp->getPropertyValue(L"FontHeight"); in lcl_Cursor()
[all …]
/AOO42X/main/chart2/source/tools/
H A DReferenceSizeProvider.cxx150 const Reference< beans::XPropertySet > & xProp, in setValuesAtPropertySet()
153 if( ! xProp.is()) in setValuesAtPropertySet()
162 bool bHasOldRefSize( xProp->getPropertyValue( aRefSizeName ) >>= aOldRefSize ); in setValuesAtPropertySet()
167 xProp->setPropertyValue( aRefSizeName, uno::makeAny( aRefSize )); in setValuesAtPropertySet()
173 xProp->setPropertyValue( aRefSizeName, uno::Any()); in setValuesAtPropertySet()
177 RelativeSizeHelper::adaptFontSizes( xProp, aOldRefSize, aRefSize ); in setValuesAtPropertySet()
188 const Reference< beans::XPropertySet > & xProp, in getAutoResizeFromPropSet()
194 if( xProp.is()) in getAutoResizeFromPropSet()
198 if( xProp->getPropertyValue( aRefSizeName ).hasValue()) in getAutoResizeFromPropSet()
228 Reference< beans::XPropertySet > xProp( xTitled->getTitleObject(), uno::UNO_QUERY ); in impl_getAutoResizeFromTitled() local
[all …]
H A DDataSeriesHelper.cxx77 Reference< beans::XPropertySet > xProp( xSeq->getValues(), uno::UNO_QUERY ); in operator ()() local
81 return ( xProp.is() && in operator ()()
82 (xProp->getPropertyValue( in operator ()()
86 return ( xProp.is() && in operator ()()
87 (xProp->getPropertyValue( in operator ()()
211 Reference< beans::XPropertySet > xProp( xLabeledDataSequence->getValues(), uno::UNO_QUERY ); in GetRole() local
212 if( xProp.is() ) in GetRole()
213 xProp->getPropertyValue( C2U("Role") ) >>= aRet; in GetRole()
412 Reference< beans::XPropertySet > xProp( aSeries[i], uno::UNO_QUERY ); in setStackModeAtSeries() local
413 if( xProp.is() ) in setStackModeAtSeries()
[all …]
H A DLegendHelper.cxx49 uno::Reference< beans::XPropertySet > xProp( xLegend, uno::UNO_QUERY ); in showLegend() local
50 if( xProp.is()) in showLegend()
52 xProp->setPropertyValue( C2U("Show"), uno::makeAny(sal_True) ); in showLegend()
55 if( !(xProp->getPropertyValue( C2U( "RelativePosition" )) >>= aRelativePosition) ) in showLegend()
58 if( !(xProp->getPropertyValue( C2U( "AnchorPosition" )) >>= ePos ) ) in showLegend()
59 xProp->setPropertyValue( C2U( "AnchorPosition" ), uno::makeAny( ePos )); in showLegend()
66 if( !(xProp->getPropertyValue( C2U( "Expansion" )) >>= eExpansion ) ) in showLegend()
67 xProp->setPropertyValue( C2U( "Expansion" ), uno::makeAny( eExpansion )); in showLegend()
69 xProp->setPropertyValue( C2U( "RelativePosition" ), uno::Any()); in showLegend()
79 uno::Reference< beans::XPropertySet > xProp( xLegend, uno::UNO_QUERY ); in hideLegend() local
[all …]
H A DChartModelHelper.cxx79 …::com::sun::star::uno::Reference< ::com::sun::star::beans::XPropertySet > xProp(aDiagram, uno::UNO… in createInternalDataProvider()
81 if(xProp.is()) in createInternalDataProvider()
85xProp->getPropertyValue( ::rtl::OUString::createFromAscii("DataRowSource")) >>= aDataRowSource; in createInternalDataProvider()
203 uno::Reference< beans::XPropertySet > xProp( xDiagram, uno::UNO_QUERY ); in isIncludeHiddenCells() local
204 if (!xProp.is()) in isIncludeHiddenCells()
209 xProp->getPropertyValue(C2U("IncludeHiddenCells")) >>= bIncluded; in isIncludeHiddenCells()
257 uno::Reference< beans::XPropertySet > xProp; in setIncludeHiddenCells() local
261xProp.set( uno::Reference< beans::XPropertySet >( aData[i]->getValues(), uno::UNO_QUERY ) ); in setIncludeHiddenCells()
262 if(xProp.is()) in setIncludeHiddenCells()
263 xProp->setPropertyValue(C2U("IncludeHiddenCells"), aNewValue ); in setIncludeHiddenCells()
[all …]
/AOO42X/main/dbaccess/source/core/dataaccess/
H A Ddefinitioncontainer.cxx182 Reference<XContent> xProp = aIter->second; in disposing() local
183 if ( xProp.is() ) in disposing()
185 removeObjectListener(xProp); in disposing()
186 ::comphelper::disposeComponent(xProp); in disposing()
429 Reference<XContent> xProp = aPos->second; in getByIndex() local
430 if (!xProp.is()) in getByIndex()
433 xProp = createObject(aPos->first); in getByIndex()
438 return makeAny(xProp); in getByIndex()
456 Reference< XContent > xProp = aMapPos->second; in implGetByName() local
458 if (_bReadIfNeccessary && !xProp.is()) in implGetByName()
[all …]
/AOO42X/main/sfx2/source/doc/
H A Doleprops.cxx742 SfxOlePropertyRef xProp; in GetProperty() local
745 xProp = aIt->second; in GetProperty()
746 return xProp; in GetProperty()
751 SfxOlePropertyRef xProp = GetProperty( nPropId ); in GetInt32Value() local
753 dynamic_cast< const SfxOleInt32Property* >( xProp.get() ); in GetInt32Value()
761 SfxOlePropertyRef xProp = GetProperty( nPropId ); in GetDoubleValue() local
763 dynamic_cast< const SfxOleDoubleProperty* >( xProp.get() ); in GetDoubleValue()
771 SfxOlePropertyRef xProp = GetProperty( nPropId ); in GetBoolValue() local
773 dynamic_cast< const SfxOleBoolProperty* >( xProp.get() ); in GetBoolValue()
781 SfxOlePropertyRef xProp = GetProperty( nPropId ); in GetStringValue() local
[all …]
/AOO42X/main/reportdesign/source/filter/xml/
H A DxmlHelper.cxx313 …uno::Reference<beans::XPropertySet> xProp = comphelper::GenericPropertySet_CreateInstance(new comp… in copyStyleElements() local
314 pAutoStyle->FillPropertySet(xProp); in copyStyleElements()
315 xProp->getPropertyValue(PROPERTY_FONTNAME) >>= aFont.Name; in copyStyleElements()
316 xProp->getPropertyValue(PROPERTY_CHARFONTHEIGHT) >>= aFont.Height; in copyStyleElements()
317 xProp->getPropertyValue(PROPERTY_FONTWIDTH) >>= aFont.Width; in copyStyleElements()
318 xProp->getPropertyValue(PROPERTY_FONTSTYLENAME) >>= aFont.StyleName; in copyStyleElements()
319 xProp->getPropertyValue(PROPERTY_FONTFAMILY) >>= aFont.Family; in copyStyleElements()
320 xProp->getPropertyValue(PROPERTY_FONTCHARSET) >>= aFont.CharSet; in copyStyleElements()
321 xProp->getPropertyValue(PROPERTY_FONTPITCH) >>= aFont.Pitch; in copyStyleElements()
322 xProp->getPropertyValue(PROPERTY_FONTCHARWIDTH) >>= aFont.CharacterWidth; in copyStyleElements()
[all …]
/AOO42X/main/chart2/source/view/axes/
H A DVAxisProperties.cxx302 uno::Reference< beans::XPropertySet > xProp = in init() local
304 if( !xProp.is() ) in init()
308 initAxisPositioning( xProp ); in init()
357 m_aLineProperties.initFromPropertySet( xProp ); in init()
360 xProp->getPropertyValue( C2U( "DisplayLabels" ) ) >>= m_bDisplayLabels; in init()
363 xProp->getPropertyValue( C2U( "MajorTickmarks" ) ) >>= m_nMajorTickmarks; in init()
364 xProp->getPropertyValue( C2U( "MinorTickmarks" ) ) >>= m_nMinorTickmarks; in init()
413 uno::Reference< beans::XPropertySet > xProp = in init() local
415 if(xProp.is()) in init()
419 xProp->getPropertyValue( C2U( "TextBreak" ) ) >>= this->bLineBreakAllowed; in init()
[all …]
/AOO42X/main/sc/source/ui/unoobj/
H A Dmiscuno.cxx61 sal_Bool ScUnoHelpFunctions::GetBoolProperty( const uno::Reference<beans::XPropertySet>& xProp, in GetBoolProperty() argument
65 if ( xProp.is() ) in GetBoolProperty()
69 uno::Any aAny(xProp->getPropertyValue( rName )); in GetBoolProperty()
87 sal_Int32 ScUnoHelpFunctions::GetLongProperty( const uno::Reference<beans::XPropertySet>& xProp, in GetLongProperty() argument
91 if ( xProp.is() ) in GetLongProperty()
96 xProp->getPropertyValue( rName ) >>= nRet; in GetLongProperty()
107 sal_Int32 ScUnoHelpFunctions::GetEnumProperty( const uno::Reference<beans::XPropertySet>& xProp, in GetEnumProperty() argument
111 if ( xProp.is() ) in GetEnumProperty()
115 uno::Any aAny(xProp->getPropertyValue( rName )); in GetEnumProperty()
138 const Reference<beans::XPropertySet>& xProp, const OUString& rName, const OUString& rDefault ) in GetStringProperty() argument
[all …]
/AOO42X/main/dbaccess/source/filter/xml/
H A DxmlExport.cxx276 Reference<XPropertySet> xProp( getDataSource(), UNO_SET_THROW ); in exportDataSource() local
282 OSL_VERIFY( xProp->getPropertyValue( PROPERTY_SETTINGS ) >>= xDataSourceSettings ); in exportDataSource()
293 const ::rtl::OUString sURL = ::comphelper::getString(xProp->getPropertyValue(PROPERTY_URL)); in exportDataSource()
511 Reference<XPropertySet> xProp(getDataSource()); in exportApplicationConnectionSettings() local
513 xProp->getPropertyValue(PROPERTY_TABLEFILTER) >>= aValue; in exportApplicationConnectionSettings()
520 xProp->getPropertyValue(PROPERTY_TABLETYPEFILTER) >>= aValue; in exportApplicationConnectionSettings()
554 Reference<XPropertySet> xProp(getDataSource()); in exportConnectionData() local
555 xProp->getPropertyValue(PROPERTY_URL) >>= sValue; in exportConnectionData()
584 … OSL_VERIFY( xProp->getPropertyValue( PROPERTY_SETTINGS ) >>= xDataSourceSettings ); in exportConnectionData()
617 …Reference< XPropertySet > xDataSourceSettings( xProp->getPropertyValue( PROPERTY_SETTINGS ), UNO_Q… in exportConnectionData()
[all …]
H A DxmlColumn.cxx151 Reference<XPropertySet> xProp(xFac->createDataDescriptor()); in EndElement() local
152 if ( xProp.is() ) in EndElement()
154 xProp->setPropertyValue(PROPERTY_NAME,makeAny(m_sName)); in EndElement()
155 xProp->setPropertyValue(PROPERTY_HIDDEN,makeAny(m_bHidden)); in EndElement()
157 xProp->setPropertyValue(PROPERTY_HELPTEXT,makeAny(m_sHelpMessage)); in EndElement()
160 xProp->setPropertyValue(PROPERTY_CONTROLDEFAULT,m_aDefaultValue); in EndElement()
164 xAppend->appendByDescriptor(xProp); in EndElement()
165 m_xParentContainer->getByName(m_sName) >>= xProp; in EndElement()
175 pAutoStyle->FillPropertySet(xProp); in EndElement()
187 pAutoStyle->FillPropertySet(xProp); in EndElement()
/AOO42X/main/connectivity/source/drivers/mysql/
H A DYTable.cxx196 Reference<XPropertySet> xProp; in alterColumnByName() local
197 m_pColumns->getByName(colName) >>= xProp; in alterColumnByName()
202 xProp->getPropertyValue(rProp.getNameByIndex(PROPERTY_ID_TYPE)) >>= nOldType; in alterColumnByName()
205 xProp->getPropertyValue(rProp.getNameByIndex(PROPERTY_ID_PRECISION)) >>= nOldPrec; in alterColumnByName()
207 xProp->getPropertyValue(rProp.getNameByIndex(PROPERTY_ID_SCALE)) >>= nOldScale; in alterColumnByName()
211xProp->getPropertyValue(rProp.getNameByIndex(PROPERTY_ID_ISNULLABLE)) >>= nOldNullable; in alterColumnByName()
216xProp->getPropertyValue(rProp.getNameByIndex(PROPERTY_ID_ISAUTOINCREMENT)) >>= bOldAutoIncrem… in alterColumnByName()
220 xProp->getPropertyValue(rProp.getNameByIndex(PROPERTY_ID_DESCRIPTION)) >>= sOldDesc; in alterColumnByName()
262 xProp->getPropertyValue(rProp.getNameByIndex(PROPERTY_ID_DEFAULTVALUE)) >>= sOldDefault; in alterColumnByName()
309 Reference<XPropertySet> xProp = pColumn; in alterColumnType() local
[all …]
/AOO42X/main/chart2/source/controller/chartapiwrapper/
H A DLegendWrapper.cxx315 Reference< beans::XPropertySet > xProp( this->getInnerPropertySet() ); in setPosition() local
316 if( xProp.is() ) in setPosition()
324 xProp->setPropertyValue( C2U( "RelativePosition" ), uno::makeAny(aRelativePosition) ); in setPosition()
338 Reference< beans::XPropertySet > xProp( this->getInnerPropertySet() ); in setSize() local
339 if( xProp.is() ) in setSize()
348 , xProp, aNewPositionAndSize, aPageRectangle ); in setSize()
391 Reference< beans::XPropertySet > xProp( this->getInnerPropertySet(), uno::UNO_QUERY ); in updateReferenceSize() local
392 if( xProp.is() ) in updateReferenceSize()
394 if( xProp->getPropertyValue( C2U("ReferencePageSize") ).hasValue() ) in updateReferenceSize()
395 xProp->setPropertyValue( C2U("ReferencePageSize"), uno::makeAny( in updateReferenceSize()
[all …]
H A DTitleWrapper.cxx311 Reference< beans::XPropertySet > xProp; in getFirstCharacterPropertySet() local
318 xProp.set( aStrings[0], uno::UNO_QUERY ); in getFirstCharacterPropertySet()
321 return xProp; in getFirstCharacterPropertySet()
329 Reference< beans::XPropertySet > xProp( getFirstCharacterPropertySet(), uno::UNO_QUERY ); in getFastCharacterPropertyValue() local
330 Reference< beans::XFastPropertySet > xFastProp( xProp, uno::UNO_QUERY ); in getFastCharacterPropertyValue()
331 if(xProp.is()) in getFastCharacterPropertyValue()
336 rValue = pWrappedProperty->getPropertyValue( xProp ); in getFastCharacterPropertyValue()
489 Reference< beans::XPropertySet > xProp( this->getTitleObject(), uno::UNO_QUERY ); in updateReferenceSize() local
490 if( xProp.is() ) in updateReferenceSize()
492 if( xProp->getPropertyValue( C2U("ReferencePageSize") ).hasValue() ) in updateReferenceSize()
[all …]
/AOO42X/main/reportdesign/source/ui/dlg/
H A DNavigator.cxx700 uno::Reference<beans::XPropertySet> xProp(_rEvent.Element,uno::UNO_QUERY_THROW); in _elementInserted() local
702 uno::Reference< beans::XPropertySetInfo> xInfo = xProp->getPropertySetInfo(); in _elementInserted()
706 xProp->getPropertyValue(PROPERTY_NAME) >>= sName; in _elementInserted()
708 xProp->getPropertyValue(PROPERTY_EXPRESSION) >>= sName; in _elementInserted()
710 uno::Reference< report::XGroup> xGroup(xProp,uno::UNO_QUERY); in _elementInserted()
718 uno::Reference< report::XReportComponent> xElement(xProp,uno::UNO_QUERY); in _elementInserted()
719 if ( xProp.is() ) in _elementInserted()
720 sName = lcl_getName(xProp); in _elementInserted()
721 …sal_uInt16(SID_RPT_NEW_FUNCTION) : lcl_getImageId(xElement)),LIST_APPEND,new UserData(this,xProp)); in _elementInserted()
729 uno::Reference<beans::XPropertySet> xProp(_rEvent.Element,uno::UNO_QUERY); in _elementRemoved() local
[all …]
/AOO42X/main/connectivity/source/drivers/hsqldb/
H A DHTable.cxx177 Reference<XPropertySet> xProp; in alterColumnByName() local
178 m_pColumns->getByName(colName) >>= xProp; in alterColumnByName()
186 xProp->getPropertyValue(rProp.getNameByIndex(PROPERTY_ID_TYPE)) >>= nOldType; in alterColumnByName()
188 xProp->getPropertyValue(rProp.getNameByIndex(PROPERTY_ID_TYPENAME)) >>= sOldTypeName; in alterColumnByName()
192 xProp->getPropertyValue(rProp.getNameByIndex(PROPERTY_ID_PRECISION)) >>= nOldPrec; in alterColumnByName()
194 xProp->getPropertyValue(rProp.getNameByIndex(PROPERTY_ID_SCALE)) >>= nOldScale; in alterColumnByName()
199xProp->getPropertyValue(rProp.getNameByIndex(PROPERTY_ID_ISNULLABLE)) >>= nOldNullable; in alterColumnByName()
204xProp->getPropertyValue(rProp.getNameByIndex(PROPERTY_ID_ISAUTOINCREMENT)) >>= bOldAutoIncrem… in alterColumnByName()
242 xProp->getPropertyValue(rProp.getNameByIndex(PROPERTY_ID_DEFAULTVALUE)) >>= sOldDefault; in alterColumnByName()
290 Reference<XPropertySet> xProp = pColumn; in alterColumnType() local
[all …]

12345678910