/* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */ /* * This file is part of the LibreOffice project. * * This Source Code Form is subject to the terms of the Mozilla Public * License, v. 2.0. If a copy of the MPL was not distributed with this * file, You can obtain one at http://mozilla.org/MPL/2.0/. * * This file incorporates work covered by the following license notice: * * Licensed to the Apache Software Foundation (ASF) under one or more * contributor license agreements. See the NOTICE file distributed * with this work for additional information regarding copyright * ownership. The ASF licenses this file to you under the Apache * License, Version 2.0 (the "License"); you may not use this file * except in compliance with the License. You may obtain a copy of * the License at http://www.apache.org/licenses/LICENSE-2.0 . */ #ifndef INCLUDED_SVX_SOURCE_SIDEBAR_LINE_LINEPROPERTYPANELBASE_HXX #define INCLUDED_SVX_SOURCE_SIDEBAR_LINE_LINEPROPERTYPANELBASE_HXX #include #include #include #include #include #include #include #include #include #include #include "LineWidthPopup.hxx" #include class XLineStyleItem; class XLineDashItem; class XLineStartItem; class XLineWidthItem; class XLineEndItem; class XLineEndList; class XLineJointItem; class XLineCapItem; class XLineTransparenceItem; class XDashList; class ListBox; class ToolBox; class FloatingWindow; namespace { #define SIDEBAR_LINE_WIDTH_GLOBAL_VALUE "PopupPanel_LineWidth" } //end of anonymous namespace namespace sfx2 { namespace sidebar { class SidebarToolBox; } } namespace svx { namespace sidebar { class SVX_DLLPUBLIC LinePropertyPanelBase : public PanelLayout { public: virtual ~LinePropertyPanelBase(); virtual void dispose() override; virtual void DataChanged( const DataChangedEvent& rEvent) override; void SetWidth(long nWidth); void SetWidthIcon(int n); void SetWidthIcon(); // constructor/destuctor LinePropertyPanelBase( vcl::Window* pParent, const css::uno::Reference& rxFrame); virtual void setLineWidth(const XLineWidthItem& rItem) = 0; protected: virtual void setLineStyle(const XLineStyleItem& rItem) = 0; virtual void setLineDash(const XLineDashItem& rItem) = 0; virtual void setLineEndStyle(const XLineEndItem* pItem) = 0; virtual void setLineStartStyle(const XLineStartItem* pItem) = 0; virtual void setLineTransparency(const XLineTransparenceItem& rItem) = 0; virtual void setLineJoint(const XLineJointItem* pItem) = 0; virtual void setLineCap(const XLineCapItem* pItem) = 0; void updateLineStyle(bool bDisabled, bool bSetOrDefault, const SfxPoolItem* pItem); void updateLineDash(bool bDisabled, bool bSetOrDefault, const SfxPoolItem* pItem); void updateLineTransparence(bool bDisabled, bool bSetOrDefault, const SfxPoolItem* pItem); void updateLineWidth(bool bDisabled, bool bSetOrDefault, const SfxPoolItem* pItem); void updateLineStart(bool bDisabled, bool bSetOrDefault, const SfxPoolItem* pItem); void updateLineEnd(bool bDisabled, bool bSetOrDefault, const SfxPoolItem* pItem); void updateLineJoint(bool bDisabled, bool bSetOrDefault, const SfxPoolItem* pItem); void updateLineCap(bool bDisabled, bool bSetOrDefault, const SfxPoolItem* pItem); void FillLineEndList(); void FillLineStyleList(); void SelectEndStyle(bool bStart); void SelectLineStyle(); void ActivateControls(); void setMapUnit(MapUnit eMapUnit); void disableArrowHead(); protected: VclPtr mpTBColor; private: //ui controls VclPtr mpFTWidth; VclPtr mpTBWidth; VclPtr mpLBStyle; VclPtr mpFTTransparency; VclPtr mpMFTransparent; VclPtr mpLBStart; VclPtr mpLBEnd; VclPtr mpFTEdgeStyle; VclPtr mpLBEdgeStyle; VclPtr mpFTCapStyle; VclPtr mpLBCapStyle; VclPtr mpGridLineProps; VclPtr mpBoxArrowProps; std::unique_ptr mpStyleItem; std::unique_ptr mpDashItem; sal_uInt16 mnTrans; MapUnit meMapUnit; sal_Int32 mnWidthCoreValue; XLineEndListRef mxLineEndList; XDashListRef mxLineStyleList; std::unique_ptr mpStartItem; std::unique_ptr mpEndItem; //popup windows VclPtr mxLineWidthPopup; // images from resource Image maIMGNone; // multi-images std::unique_ptr mpIMGWidthIcon; bool mbWidthValuable : 1; bool mbArrowSupported; void Initialize(); DECL_LINK_TYPED(ChangeLineStyleHdl, ListBox&, void); DECL_LINK_TYPED(ToolboxWidthSelectHdl, ToolBox*, void); DECL_LINK_TYPED(ChangeTransparentHdl, Edit&, void ); DECL_LINK_TYPED(ChangeStartHdl, ListBox&, void); DECL_LINK_TYPED(ChangeEndHdl, ListBox&, void); DECL_LINK_TYPED(ChangeEdgeStyleHdl, ListBox&, void); DECL_LINK_TYPED(ChangeCapStyleHdl, ListBox&, void); }; } } // end of namespace svx::sidebar #endif /* vim:set shiftwidth=4 softtabstop=4 expandtab: */