/* -*- 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_SC_SOURCE_UI_SIDEBAR_CELLAPPEARANCEPROPERTYPANEL_HXX #define INCLUDED_SC_SOURCE_UI_SIDEBAR_CELLAPPEARANCEPROPERTYPANEL_HXX #include #include #include #include #include namespace sc { namespace sidebar { class CellBorderUpdater; }} class ToolBox; namespace sc { namespace sidebar { class CellBorderStylePopup; class CellLineStylePopup; class CellAppearancePropertyPanel : public PanelLayout, public ::sfx2::sidebar::IContextChangeReceiver, public ::sfx2::sidebar::ControllerItem::ItemUpdateReceiverInterface { private: friend class CellLineStylePopup; friend class CellBorderStylePopup; public: static VclPtr Create( vcl::Window* pParent, const css::uno::Reference& rxFrame, SfxBindings* pBindings); virtual void DataChanged( const DataChangedEvent& rEvent) override; virtual void HandleContextChange( const vcl::EnumContext& rContext) override; virtual void NotifyItemUpdate( const sal_uInt16 nSId, const SfxItemState eState, const SfxPoolItem* pState, const bool bIsEnabled) override; SfxBindings* GetBindings() { return mpBindings;} // constructor/destructor CellAppearancePropertyPanel( vcl::Window* pParent, const css::uno::Reference& rxFrame, SfxBindings* pBindings); virtual ~CellAppearancePropertyPanel() override; virtual void dispose() override; private: //ui controls VclPtr mpTBCellBorder; VclPtr mpTBLineStyle; VclPtr mpTBLineColor; std::unique_ptr< CellBorderUpdater > mpCellBorderUpdater; ::sfx2::sidebar::ControllerItem maLineStyleControl; ::sfx2::sidebar::ControllerItem maBorderOuterControl; ::sfx2::sidebar::ControllerItem maBorderInnerControl; ::sfx2::sidebar::ControllerItem maGridShowControl; ::sfx2::sidebar::ControllerItem maBorderTLBRControl; ::sfx2::sidebar::ControllerItem maBorderBLTRControl; // images Image maIMGCellBorder; Image maIMGLineStyle1; Image maIMGLineStyle2; Image maIMGLineStyle3; Image maIMGLineStyle4; Image maIMGLineStyle5; Image maIMGLineStyle6; Image maIMGLineStyle7; Image maIMGLineStyle8; Image maIMGLineStyle9; // BorderStyle defines sal_uInt16 mnIn; sal_uInt16 mnOut; sal_uInt16 mnDis; sal_uInt16 mnTLBRIn; sal_uInt16 mnTLBROut; sal_uInt16 mnTLBRDis; sal_uInt16 mnBLTRIn; sal_uInt16 mnBLTROut; sal_uInt16 mnBLTRDis; bool mbBorderStyleAvailable : 1; // CellBorder defines bool mbLeft : 1; bool mbRight : 1; bool mbTop : 1; bool mbBottom : 1; bool mbVer : 1; bool mbHor : 1; bool mbOuterBorder : 1; // mbLeft || mbRight || mbTop || mbBottom bool mbInnerBorder : 1; // mbVer || mbHor || bLeft || bRight || bTop || bBottom bool mbTLBR : 1; bool mbBLTR : 1; // popups VclPtr mxCellLineStylePopup; VclPtr mxCellBorderStylePopup; vcl::EnumContext maContext; SfxBindings* mpBindings; DECL_LINK(TbxCellBorderSelectHdl, ToolBox*, void); DECL_LINK(TbxLineStyleSelectHdl, ToolBox*, void); void Initialize(); void SetStyleIcon(); void UpdateControlState(); }; } } // end of namespace ::sc::sidebar #endif /* vim:set shiftwidth=4 softtabstop=4 expandtab: */