diff options
author | Noel Grandin <noel.grandin@collabora.co.uk> | 2019-12-22 19:19:01 +0200 |
---|---|---|
committer | Noel Grandin <noel.grandin@collabora.co.uk> | 2019-12-22 19:28:07 +0100 |
commit | a62a139c4f33b4e981851dac961cfc41f23f896f (patch) | |
tree | 2769be51f81f19bf153f9e160c4be6e07a1a45bb /cui | |
parent | 38d9e38981a8ade60bb627b00197ecd28fb9158e (diff) |
loplugin:unusedmethods
Change-Id: Iad97bdbcbec4cbbccf3df9b9d682e744b0c1982e
Reviewed-on: https://gerrit.libreoffice.org/85709
Tested-by: Jenkins
Reviewed-by: Noel Grandin <noel.grandin@collabora.co.uk>
Diffstat (limited to 'cui')
-rw-r--r-- | cui/source/inc/backgrnd.hxx | 79 |
1 files changed, 0 insertions, 79 deletions
diff --git a/cui/source/inc/backgrnd.hxx b/cui/source/inc/backgrnd.hxx index 7c9b1ce7ab5f..1339e176a9c9 100644 --- a/cui/source/inc/backgrnd.hxx +++ b/cui/source/inc/backgrnd.hxx @@ -40,85 +40,6 @@ class SvxBrushItem; <SvxBrushItem>: <SID_ATTR_BRUSH>; */ -class SvxBackgroundTabPage : public SvxTabPage -{ - static const sal_uInt16 pPageRanges[]; -public: - SvxBackgroundTabPage(weld::Container* pPage, weld::DialogController* pController, const SfxItemSet& rCoreSet); - static std::unique_ptr<SfxTabPage> Create( weld::Container* pPage, weld::DialogController* pController, const SfxItemSet* rAttrSet ); - virtual ~SvxBackgroundTabPage() override; - - // returns the area of the which-values - static const sal_uInt16* GetRanges() { return pPageRanges; } - - virtual bool FillItemSet( SfxItemSet* rSet ) override; - virtual void Reset( const SfxItemSet* rSet ) override; - virtual void FillUserData() override; - virtual void PointChanged( weld::DrawingArea* pWindow, RectPoint eRP ) override; - - /// Shift-ListBox activation - void ShowSelector(); - /// for the Writer (cells/rows/tables) - void ShowTblControl(); - - virtual void PageCreated(const SfxAllItemSet& aSet) override; -protected: - virtual DeactivateRC DeactivatePage( SfxItemSet* pSet ) override; - -private: - // DDListBox for Writer ------------------------------- - - std::unique_ptr<weld::Label> m_xFindGraphicsFt; - std::unique_ptr<weld::Widget> m_xAsGrid; - std::unique_ptr<weld::Label> m_xSelectTxt; - std::unique_ptr<weld::ComboBox> m_xLbSelect; - std::unique_ptr<weld::Label> m_xTblDesc; - std::unique_ptr<weld::ComboBox> m_xTblLBox; - - std::unique_ptr<weld::Label> m_xBackGroundColorLabelFT; - std::unique_ptr<weld::Widget> m_xBackGroundColorFrame; - - std::unique_ptr<weld::CheckButton> m_xBtnPreview; - - // Background Bitmap ---------------------------------- - std::unique_ptr<weld::Widget> m_xBitmapContainer; - std::unique_ptr<weld::Widget> m_xFileFrame; - std::unique_ptr<weld::Button> m_xBtnBrowse; - std::unique_ptr<weld::CheckButton> m_xBtnLink; - std::unique_ptr<weld::Label> m_xFtUnlinked; - std::unique_ptr<weld::Label> m_xFtFile; - - std::unique_ptr<weld::Widget> m_xTypeFrame; - std::unique_ptr<weld::RadioButton> m_xBtnPosition; - std::unique_ptr<weld::RadioButton> m_xBtnArea; - std::unique_ptr<weld::RadioButton> m_xBtnTile; - - std::unique_ptr<weld::CustomWeld> m_xWndPositionWin; - std::unique_ptr<weld::CustomWeld> m_xBackgroundColorSetWin; - std::unique_ptr<weld::CustomWeld> m_xPreviewWin1; - std::unique_ptr<weld::CustomWeld> m_xPreviewWin2; - - void FillColorValueSets_Impl(); - void ShowColorUI_Impl(); - void HideColorUI_Impl(); - void ShowBitmapUI_Impl(); - void HideBitmapUI_Impl(); - bool LoadLinkedGraphic_Impl(); - void RaiseLoadError_Impl(); - void SetGraphicPosition_Impl( SvxGraphicPosition ePos ); - SvxGraphicPosition GetGraphicPosition_Impl() const; - void FillControls_Impl(const SvxBrushItem& rBgdAttr, - const OUString& rUserData); - - DECL_LINK(LoadIdleHdl_Impl, Timer*, void); - DECL_LINK(SelectHdl_Impl, weld::ComboBox&, void); - DECL_LINK(BrowseHdl_Impl, weld::Button&, void); - DECL_LINK(RadioClickHdl_Impl, weld::ToggleButton&, void ); - DECL_LINK(FileClickHdl_Impl, weld::ToggleButton&, void); - DECL_LINK(BackgroundColorHdl_Impl, SvtValueSet*, void); - DECL_LINK(TblDestinationHdl_Impl, weld::ComboBox&, void); -}; - class SvxBkgTabPage : public SvxAreaTabPage { static const sal_uInt16 pPageRanges[]; |