summaryrefslogtreecommitdiff
path: root/sc/inc/fmtuno.hxx
diff options
context:
space:
mode:
Diffstat (limited to 'sc/inc/fmtuno.hxx')
-rw-r--r--sc/inc/fmtuno.hxx241
1 files changed, 117 insertions, 124 deletions
diff --git a/sc/inc/fmtuno.hxx b/sc/inc/fmtuno.hxx
index 6044abea6e2e..5b870eaba087 100644
--- a/sc/inc/fmtuno.hxx
+++ b/sc/inc/fmtuno.hxx
@@ -67,11 +67,11 @@ struct ScCondFormatEntryItem
};
class ScTableConditionalFormat : public cppu::WeakImplHelper<
- com::sun::star::sheet::XSheetConditionalEntries,
- com::sun::star::container::XNameAccess,
- com::sun::star::container::XEnumerationAccess,
- com::sun::star::lang::XUnoTunnel,
- com::sun::star::lang::XServiceInfo >
+ css::sheet::XSheetConditionalEntries,
+ css::container::XNameAccess,
+ css::container::XEnumerationAccess,
+ css::lang::XUnoTunnel,
+ css::lang::XServiceInfo >
{
private:
std::vector<ScTableConditionalEntry*> aEntries;
@@ -89,60 +89,58 @@ public:
formula::FormulaGrammar::Grammar eGrammar) const;
// XSheetConditionalEntries
- virtual void SAL_CALL addNew( const ::com::sun::star::uno::Sequence<
- ::com::sun::star::beans::PropertyValue >& aConditionalEntry )
- throw(::com::sun::star::uno::RuntimeException, std::exception) override;
+ virtual void SAL_CALL addNew( const css::uno::Sequence< css::beans::PropertyValue >& aConditionalEntry )
+ throw(css::uno::RuntimeException, std::exception) override;
virtual void SAL_CALL removeByIndex( sal_Int32 nIndex )
- throw(::com::sun::star::uno::RuntimeException, std::exception) override;
- virtual void SAL_CALL clear() throw(::com::sun::star::uno::RuntimeException, std::exception) override;
+ throw(css::uno::RuntimeException, std::exception) override;
+ virtual void SAL_CALL clear() throw(css::uno::RuntimeException, std::exception) override;
// XIndexAccess
- virtual sal_Int32 SAL_CALL getCount() throw(::com::sun::star::uno::RuntimeException, std::exception) override;
- virtual ::com::sun::star::uno::Any SAL_CALL getByIndex( sal_Int32 Index )
- throw(::com::sun::star::lang::IndexOutOfBoundsException,
- ::com::sun::star::lang::WrappedTargetException,
- ::com::sun::star::uno::RuntimeException, std::exception) override;
+ virtual sal_Int32 SAL_CALL getCount() throw(css::uno::RuntimeException, std::exception) override;
+ virtual css::uno::Any SAL_CALL getByIndex( sal_Int32 Index )
+ throw(css::lang::IndexOutOfBoundsException,
+ css::lang::WrappedTargetException,
+ css::uno::RuntimeException, std::exception) override;
// XNameAccess
- virtual ::com::sun::star::uno::Any SAL_CALL getByName( const OUString& aName )
- throw(::com::sun::star::container::NoSuchElementException,
- ::com::sun::star::lang::WrappedTargetException,
- ::com::sun::star::uno::RuntimeException, std::exception) override;
- virtual ::com::sun::star::uno::Sequence< OUString > SAL_CALL getElementNames()
- throw(::com::sun::star::uno::RuntimeException, std::exception) override;
+ virtual css::uno::Any SAL_CALL getByName( const OUString& aName )
+ throw(css::container::NoSuchElementException,
+ css::lang::WrappedTargetException,
+ css::uno::RuntimeException, std::exception) override;
+ virtual css::uno::Sequence< OUString > SAL_CALL getElementNames()
+ throw(css::uno::RuntimeException, std::exception) override;
virtual sal_Bool SAL_CALL hasByName( const OUString& aName )
- throw(::com::sun::star::uno::RuntimeException, std::exception) override;
+ throw(css::uno::RuntimeException, std::exception) override;
// XEnumerationAccess
- virtual ::com::sun::star::uno::Reference< ::com::sun::star::container::XEnumeration > SAL_CALL
- createEnumeration() throw(::com::sun::star::uno::RuntimeException, std::exception) override;
+ virtual css::uno::Reference< css::container::XEnumeration > SAL_CALL
+ createEnumeration() throw(css::uno::RuntimeException, std::exception) override;
// XElementAccess
- virtual ::com::sun::star::uno::Type SAL_CALL getElementType()
- throw(::com::sun::star::uno::RuntimeException, std::exception) override;
- virtual sal_Bool SAL_CALL hasElements() throw(::com::sun::star::uno::RuntimeException, std::exception) override;
+ virtual css::uno::Type SAL_CALL getElementType()
+ throw(css::uno::RuntimeException, std::exception) override;
+ virtual sal_Bool SAL_CALL hasElements() throw(css::uno::RuntimeException, std::exception) override;
// XUnoTunnel
- virtual sal_Int64 SAL_CALL getSomething( const ::com::sun::star::uno::Sequence<
- sal_Int8 >& aIdentifier )
- throw(::com::sun::star::uno::RuntimeException, std::exception) override;
+ virtual sal_Int64 SAL_CALL getSomething( const css::uno::Sequence< sal_Int8 >& aIdentifier )
+ throw(css::uno::RuntimeException, std::exception) override;
- static const com::sun::star::uno::Sequence<sal_Int8>& getUnoTunnelId();
+ static const css::uno::Sequence<sal_Int8>& getUnoTunnelId();
static ScTableConditionalFormat* getImplementation(const css::uno::Reference<css::sheet::XSheetConditionalEntries>& rObj);
// XServiceInfo
virtual OUString SAL_CALL getImplementationName()
- throw(::com::sun::star::uno::RuntimeException, std::exception) override;
+ throw(css::uno::RuntimeException, std::exception) override;
virtual sal_Bool SAL_CALL supportsService( const OUString& ServiceName )
- throw(::com::sun::star::uno::RuntimeException, std::exception) override;
- virtual ::com::sun::star::uno::Sequence< OUString > SAL_CALL getSupportedServiceNames()
- throw(::com::sun::star::uno::RuntimeException, std::exception) override;
+ throw(css::uno::RuntimeException, std::exception) override;
+ virtual css::uno::Sequence< OUString > SAL_CALL getSupportedServiceNames()
+ throw(css::uno::RuntimeException, std::exception) override;
};
class ScTableConditionalEntry : public cppu::WeakImplHelper<
- com::sun::star::sheet::XSheetCondition2,
- com::sun::star::sheet::XSheetConditionalEntry,
- com::sun::star::lang::XServiceInfo >
+ css::sheet::XSheetCondition2,
+ css::sheet::XSheetConditionalEntry,
+ css::lang::XServiceInfo >
{
private:
ScCondFormatEntryItem aData;
@@ -155,45 +153,45 @@ public:
void GetData(ScCondFormatEntryItem& rData) const;
// XSheetCondition
- virtual ::com::sun::star::sheet::ConditionOperator SAL_CALL getOperator()
- throw(::com::sun::star::uno::RuntimeException, std::exception) override;
+ virtual css::sheet::ConditionOperator SAL_CALL getOperator()
+ throw(css::uno::RuntimeException, std::exception) override;
virtual sal_Int32 SAL_CALL getConditionOperator()
- throw(::com::sun::star::uno::RuntimeException, std::exception) override;
- virtual void SAL_CALL setOperator( ::com::sun::star::sheet::ConditionOperator nOperator )
- throw(::com::sun::star::uno::RuntimeException, std::exception) override;
+ throw(css::uno::RuntimeException, std::exception) override;
+ virtual void SAL_CALL setOperator( css::sheet::ConditionOperator nOperator )
+ throw(css::uno::RuntimeException, std::exception) override;
virtual void SAL_CALL setConditionOperator( sal_Int32 nOperator )
- throw(::com::sun::star::uno::RuntimeException, std::exception) override;
- virtual OUString SAL_CALL getFormula1() throw(::com::sun::star::uno::RuntimeException, std::exception) override;
+ throw(css::uno::RuntimeException, std::exception) override;
+ virtual OUString SAL_CALL getFormula1() throw(css::uno::RuntimeException, std::exception) override;
virtual void SAL_CALL setFormula1( const OUString& aFormula1 )
- throw(::com::sun::star::uno::RuntimeException, std::exception) override;
- virtual OUString SAL_CALL getFormula2() throw(::com::sun::star::uno::RuntimeException, std::exception) override;
+ throw(css::uno::RuntimeException, std::exception) override;
+ virtual OUString SAL_CALL getFormula2() throw(css::uno::RuntimeException, std::exception) override;
virtual void SAL_CALL setFormula2( const OUString& aFormula2 )
- throw(::com::sun::star::uno::RuntimeException, std::exception) override;
- virtual ::com::sun::star::table::CellAddress SAL_CALL getSourcePosition()
- throw(::com::sun::star::uno::RuntimeException, std::exception) override;
- virtual void SAL_CALL setSourcePosition( const ::com::sun::star::table::CellAddress& aSourcePosition )
- throw(::com::sun::star::uno::RuntimeException, std::exception) override;
+ throw(css::uno::RuntimeException, std::exception) override;
+ virtual css::table::CellAddress SAL_CALL getSourcePosition()
+ throw(css::uno::RuntimeException, std::exception) override;
+ virtual void SAL_CALL setSourcePosition( const css::table::CellAddress& aSourcePosition )
+ throw(css::uno::RuntimeException, std::exception) override;
// XSheetConditionalEntry
- virtual OUString SAL_CALL getStyleName() throw(::com::sun::star::uno::RuntimeException, std::exception) override;
+ virtual OUString SAL_CALL getStyleName() throw(css::uno::RuntimeException, std::exception) override;
virtual void SAL_CALL setStyleName( const OUString& aStyleName )
- throw(::com::sun::star::uno::RuntimeException, std::exception) override;
+ throw(css::uno::RuntimeException, std::exception) override;
// XServiceInfo
virtual OUString SAL_CALL getImplementationName()
- throw(::com::sun::star::uno::RuntimeException, std::exception) override;
+ throw(css::uno::RuntimeException, std::exception) override;
virtual sal_Bool SAL_CALL supportsService( const OUString& ServiceName )
- throw(::com::sun::star::uno::RuntimeException, std::exception) override;
- virtual ::com::sun::star::uno::Sequence< OUString > SAL_CALL getSupportedServiceNames()
- throw(::com::sun::star::uno::RuntimeException, std::exception) override;
+ throw(css::uno::RuntimeException, std::exception) override;
+ virtual css::uno::Sequence< OUString > SAL_CALL getSupportedServiceNames()
+ throw(css::uno::RuntimeException, std::exception) override;
};
class ScTableValidationObj : public cppu::WeakImplHelper<
- com::sun::star::sheet::XSheetCondition2,
- com::sun::star::sheet::XMultiFormulaTokens,
- com::sun::star::beans::XPropertySet,
- com::sun::star::lang::XUnoTunnel,
- com::sun::star::lang::XServiceInfo >
+ css::sheet::XSheetCondition2,
+ css::sheet::XMultiFormulaTokens,
+ css::beans::XPropertySet,
+ css::lang::XUnoTunnel,
+ css::lang::XServiceInfo >
{
private:
SfxItemPropertySet aPropSet;
@@ -204,8 +202,8 @@ private:
OUString maExprNmsp2;
formula::FormulaGrammar::Grammar meGrammar1; // grammar used with aExpr1 and aExpr2
formula::FormulaGrammar::Grammar meGrammar2; // grammar used with aExpr1 and aExpr2
- ::com::sun::star::uno::Sequence< ::com::sun::star::sheet::FormulaToken > aTokens1;
- ::com::sun::star::uno::Sequence< ::com::sun::star::sheet::FormulaToken > aTokens2;
+ css::uno::Sequence< css::sheet::FormulaToken > aTokens1;
+ css::uno::Sequence< css::sheet::FormulaToken > aTokens2;
ScAddress aSrcPos;
OUString aPosString; // formula position as text
sal_uInt16 nValMode; // enum ScValidationMode
@@ -231,90 +229,85 @@ public:
formula::FormulaGrammar::Grammar eGrammar ) const;
// XSheetCondition
- virtual ::com::sun::star::sheet::ConditionOperator SAL_CALL getOperator()
- throw(::com::sun::star::uno::RuntimeException, std::exception) override;
+ virtual css::sheet::ConditionOperator SAL_CALL getOperator()
+ throw(css::uno::RuntimeException, std::exception) override;
virtual sal_Int32 SAL_CALL getConditionOperator()
- throw(::com::sun::star::uno::RuntimeException, std::exception) override;
- virtual void SAL_CALL setOperator( ::com::sun::star::sheet::ConditionOperator nOperator )
- throw(::com::sun::star::uno::RuntimeException, std::exception) override;
+ throw(css::uno::RuntimeException, std::exception) override;
+ virtual void SAL_CALL setOperator( css::sheet::ConditionOperator nOperator )
+ throw(css::uno::RuntimeException, std::exception) override;
virtual void SAL_CALL setConditionOperator( sal_Int32 nOperator )
- throw(::com::sun::star::uno::RuntimeException, std::exception) override;
- virtual OUString SAL_CALL getFormula1() throw(::com::sun::star::uno::RuntimeException, std::exception) override;
+ throw(css::uno::RuntimeException, std::exception) override;
+ virtual OUString SAL_CALL getFormula1() throw(css::uno::RuntimeException, std::exception) override;
virtual void SAL_CALL setFormula1( const OUString& aFormula1 )
- throw(::com::sun::star::uno::RuntimeException, std::exception) override;
- virtual OUString SAL_CALL getFormula2() throw(::com::sun::star::uno::RuntimeException, std::exception) override;
+ throw(css::uno::RuntimeException, std::exception) override;
+ virtual OUString SAL_CALL getFormula2() throw(css::uno::RuntimeException, std::exception) override;
virtual void SAL_CALL setFormula2( const OUString& aFormula2 )
- throw(::com::sun::star::uno::RuntimeException, std::exception) override;
- virtual ::com::sun::star::table::CellAddress SAL_CALL getSourcePosition()
- throw(::com::sun::star::uno::RuntimeException, std::exception) override;
- virtual void SAL_CALL setSourcePosition( const ::com::sun::star::table::CellAddress& aSourcePosition )
- throw(::com::sun::star::uno::RuntimeException, std::exception) override;
+ throw(css::uno::RuntimeException, std::exception) override;
+ virtual css::table::CellAddress SAL_CALL getSourcePosition()
+ throw(css::uno::RuntimeException, std::exception) override;
+ virtual void SAL_CALL setSourcePosition( const css::table::CellAddress& aSourcePosition )
+ throw(css::uno::RuntimeException, std::exception) override;
// XMultiFormulaTokens
- virtual ::com::sun::star::uno::Sequence< ::com::sun::star::sheet::FormulaToken >
+ virtual css::uno::Sequence< css::sheet::FormulaToken >
SAL_CALL getTokens( sal_Int32 nIndex )
- throw(::com::sun::star::uno::RuntimeException,::com::sun::star::lang::IndexOutOfBoundsException, std::exception) override;
+ throw(css::uno::RuntimeException,css::lang::IndexOutOfBoundsException, std::exception) override;
virtual void SAL_CALL setTokens( sal_Int32 nIndex,
- const ::com::sun::star::uno::Sequence< ::com::sun::star::sheet::FormulaToken >& aTokens )
- throw(::com::sun::star::uno::RuntimeException,::com::sun::star::lang::IndexOutOfBoundsException, std::exception) override;
- virtual sal_Int32 SAL_CALL getCount() throw(::com::sun::star::uno::RuntimeException, std::exception) override;
+ const css::uno::Sequence< css::sheet::FormulaToken >& aTokens )
+ throw(css::uno::RuntimeException,css::lang::IndexOutOfBoundsException, std::exception) override;
+ virtual sal_Int32 SAL_CALL getCount() throw(css::uno::RuntimeException, std::exception) override;
// XPropertySet
- virtual ::com::sun::star::uno::Reference< ::com::sun::star::beans::XPropertySetInfo >
+ virtual css::uno::Reference< css::beans::XPropertySetInfo >
SAL_CALL getPropertySetInfo()
- throw(::com::sun::star::uno::RuntimeException, std::exception) override;
+ throw(css::uno::RuntimeException, std::exception) override;
virtual void SAL_CALL setPropertyValue( const OUString& aPropertyName,
- const ::com::sun::star::uno::Any& aValue )
- throw(::com::sun::star::beans::UnknownPropertyException,
- ::com::sun::star::beans::PropertyVetoException,
- ::com::sun::star::lang::IllegalArgumentException,
- ::com::sun::star::lang::WrappedTargetException,
- ::com::sun::star::uno::RuntimeException, std::exception) override;
- virtual ::com::sun::star::uno::Any SAL_CALL getPropertyValue(
+ const css::uno::Any& aValue )
+ throw(css::beans::UnknownPropertyException,
+ css::beans::PropertyVetoException,
+ css::lang::IllegalArgumentException,
+ css::lang::WrappedTargetException,
+ css::uno::RuntimeException, std::exception) override;
+ virtual css::uno::Any SAL_CALL getPropertyValue(
const OUString& PropertyName )
- throw(::com::sun::star::beans::UnknownPropertyException,
- ::com::sun::star::lang::WrappedTargetException,
- ::com::sun::star::uno::RuntimeException, std::exception) override;
+ throw(css::beans::UnknownPropertyException,
+ css::lang::WrappedTargetException,
+ css::uno::RuntimeException, std::exception) override;
virtual void SAL_CALL addPropertyChangeListener( const OUString& aPropertyName,
- const ::com::sun::star::uno::Reference<
- ::com::sun::star::beans::XPropertyChangeListener >& xListener )
- throw(::com::sun::star::beans::UnknownPropertyException,
- ::com::sun::star::lang::WrappedTargetException,
- ::com::sun::star::uno::RuntimeException, std::exception) override;
+ const css::uno::Reference< css::beans::XPropertyChangeListener >& xListener )
+ throw(css::beans::UnknownPropertyException,
+ css::lang::WrappedTargetException,
+ css::uno::RuntimeException, std::exception) override;
virtual void SAL_CALL removePropertyChangeListener( const OUString& aPropertyName,
- const ::com::sun::star::uno::Reference<
- ::com::sun::star::beans::XPropertyChangeListener >& aListener )
- throw(::com::sun::star::beans::UnknownPropertyException,
- ::com::sun::star::lang::WrappedTargetException,
- ::com::sun::star::uno::RuntimeException, std::exception) override;
+ const css::uno::Reference< css::beans::XPropertyChangeListener >& aListener )
+ throw(css::beans::UnknownPropertyException,
+ css::lang::WrappedTargetException,
+ css::uno::RuntimeException, std::exception) override;
virtual void SAL_CALL addVetoableChangeListener( const OUString& PropertyName,
- const ::com::sun::star::uno::Reference<
- ::com::sun::star::beans::XVetoableChangeListener >& aListener )
- throw(::com::sun::star::beans::UnknownPropertyException,
- ::com::sun::star::lang::WrappedTargetException,
- ::com::sun::star::uno::RuntimeException, std::exception) override;
+ const css::uno::Reference< css::beans::XVetoableChangeListener >& aListener )
+ throw(css::beans::UnknownPropertyException,
+ css::lang::WrappedTargetException,
+ css::uno::RuntimeException, std::exception) override;
virtual void SAL_CALL removeVetoableChangeListener( const OUString& PropertyName,
- const ::com::sun::star::uno::Reference<
- ::com::sun::star::beans::XVetoableChangeListener >& aListener )
- throw(::com::sun::star::beans::UnknownPropertyException,
- ::com::sun::star::lang::WrappedTargetException,
- ::com::sun::star::uno::RuntimeException, std::exception) override;
+ const css::uno::Reference< css::beans::XVetoableChangeListener >& aListener )
+ throw(css::beans::UnknownPropertyException,
+ css::lang::WrappedTargetException,
+ css::uno::RuntimeException, std::exception) override;
// XUnoTunnel
- virtual sal_Int64 SAL_CALL getSomething( const ::com::sun::star::uno::Sequence<
- sal_Int8 >& aIdentifier )
- throw(::com::sun::star::uno::RuntimeException, std::exception) override;
+ virtual sal_Int64 SAL_CALL getSomething( const css::uno::Sequence< sal_Int8 >& aIdentifier )
+ throw(css::uno::RuntimeException, std::exception) override;
- static const com::sun::star::uno::Sequence<sal_Int8>& getUnoTunnelId();
+ static const css::uno::Sequence<sal_Int8>& getUnoTunnelId();
static ScTableValidationObj* getImplementation(const css::uno::Reference<css::beans::XPropertySet>& rObj);
// XServiceInfo
virtual OUString SAL_CALL getImplementationName()
- throw(::com::sun::star::uno::RuntimeException, std::exception) override;
+ throw(css::uno::RuntimeException, std::exception) override;
virtual sal_Bool SAL_CALL supportsService( const OUString& ServiceName )
- throw(::com::sun::star::uno::RuntimeException, std::exception) override;
- virtual ::com::sun::star::uno::Sequence< OUString > SAL_CALL getSupportedServiceNames()
- throw(::com::sun::star::uno::RuntimeException, std::exception) override;
+ throw(css::uno::RuntimeException, std::exception) override;
+ virtual css::uno::Sequence< OUString > SAL_CALL getSupportedServiceNames()
+ throw(css::uno::RuntimeException, std::exception) override;
};
#endif