diff options
Diffstat (limited to 'sw/inc/unosett.hxx')
-rw-r--r-- | sw/inc/unosett.hxx | 65 |
1 files changed, 0 insertions, 65 deletions
diff --git a/sw/inc/unosett.hxx b/sw/inc/unosett.hxx index d5351a9b3a4f..f08a473f10b2 100644 --- a/sw/inc/unosett.hxx +++ b/sw/inc/unosett.hxx @@ -243,71 +243,6 @@ public: }; -class SwXTextColumns final : public cppu::WeakAggImplHelper4 -< - - css::lang::XUnoTunnel, - css::beans::XPropertySet, - css::text::XTextColumns, - css::lang::XServiceInfo -> -{ - sal_Int32 m_nReference; - css::uno::Sequence< css::text::TextColumn> m_aTextColumns; - bool m_bIsAutomaticWidth; - sal_Int32 m_nAutoDistance; - - const SfxItemPropertySet* m_pPropSet; - - //separator line - sal_Int32 m_nSepLineWidth; - Color m_nSepLineColor; - sal_Int8 m_nSepLineHeightRelative; - css::style::VerticalAlignment m_nSepLineVertAlign; - bool m_bSepLineIsOn; - sal_Int8 m_nSepLineStyle; - - - virtual ~SwXTextColumns() override; -public: - SwXTextColumns(); - SwXTextColumns(const SwFormatCol& rFormatCol); - - static const css::uno::Sequence< sal_Int8 > & getUnoTunnelId(); - - //XUnoTunnel - virtual sal_Int64 SAL_CALL getSomething( const css::uno::Sequence< sal_Int8 >& aIdentifier ) override; - - //XTextColumns - virtual sal_Int32 SAL_CALL getReferenceValue( ) override; - virtual sal_Int16 SAL_CALL getColumnCount( ) override; - virtual void SAL_CALL setColumnCount( sal_Int16 nColumns ) override; - virtual css::uno::Sequence< css::text::TextColumn > SAL_CALL getColumns( ) override; - virtual void SAL_CALL setColumns( const css::uno::Sequence< css::text::TextColumn >& Columns ) override; - - //XPropertySet - virtual css::uno::Reference< css::beans::XPropertySetInfo > SAL_CALL getPropertySetInfo( ) override; - virtual void SAL_CALL setPropertyValue( const OUString& aPropertyName, const css::uno::Any& aValue ) override; - virtual css::uno::Any SAL_CALL getPropertyValue( const OUString& PropertyName ) override; - virtual void SAL_CALL addPropertyChangeListener( const OUString& aPropertyName, const css::uno::Reference< css::beans::XPropertyChangeListener >& xListener ) override; - virtual void SAL_CALL removePropertyChangeListener( const OUString& aPropertyName, const css::uno::Reference< css::beans::XPropertyChangeListener >& aListener ) override; - virtual void SAL_CALL addVetoableChangeListener( const OUString& PropertyName, const css::uno::Reference< css::beans::XVetoableChangeListener >& aListener ) override; - virtual void SAL_CALL removeVetoableChangeListener( const OUString& PropertyName, const css::uno::Reference< css::beans::XVetoableChangeListener >& aListener ) override; - - //XServiceInfo - virtual OUString SAL_CALL getImplementationName() override; - virtual sal_Bool SAL_CALL supportsService(const OUString& ServiceName) override; - virtual css::uno::Sequence< OUString > SAL_CALL getSupportedServiceNames() override; - - sal_Int32 GetSepLineWidth() const {return m_nSepLineWidth;} - Color GetSepLineColor() const {return m_nSepLineColor;} - sal_Int8 GetSepLineHeightRelative() const {return m_nSepLineHeightRelative;} - css::style::VerticalAlignment GetSepLineVertAlign() const {return m_nSepLineVertAlign;} - bool GetSepLineIsOn() const {return m_bSepLineIsOn;} - sal_Int8 GetSepLineStyle() const {return m_nSepLineStyle;} - - bool IsAutomaticWidth() const {return m_bIsAutomaticWidth;} -}; #endif /* vim:set shiftwidth=4 softtabstop=4 expandtab: */ |