/* -*- 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 . */ #include #include #include #include #include #include #include #ifdef DEBUG #include #include #endif #include #include #include #include #include #include using namespace css; using namespace css::uno; namespace sfx2 { namespace sidebar { Panel::Panel(const PanelDescriptor& rPanelDescriptor, vcl::Window* pParentWindow, const bool bIsInitiallyExpanded, const std::function& rDeckLayoutTrigger, const std::function& rContextAccess, const css::uno::Reference& rxFrame ) : Window(pParentWindow) , msPanelId(rPanelDescriptor.msId) , mpTitleBar(VclPtr::Create(rPanelDescriptor.msTitle, pParentWindow, this)) , mbIsTitleBarOptional(rPanelDescriptor.mbIsTitleBarOptional) , mxElement() , mxPanelComponent() , mbIsExpanded(bIsInitiallyExpanded) , maDeckLayoutTrigger(rDeckLayoutTrigger) , maContextAccess(rContextAccess) , mxFrame(rxFrame) { #ifdef DEBUG SetText(OUString("Panel")); #endif } Panel::~Panel() { disposeOnce(); assert(!mpTitleBar); } void Panel::ApplySettings(vcl::RenderContext& rRenderContext) { rRenderContext.SetBackground(Theme::GetPaint(Theme::Paint_PanelBackground).GetWallpaper()); } void Panel::dispose() { mxPanelComponent = nullptr; { Reference xComponent (mxElement, UNO_QUERY); mxElement = nullptr; if (xComponent.is()) xComponent->dispose(); } { Reference xComponent = GetElementWindow(); if (xComponent.is()) xComponent->dispose(); } mpTitleBar.disposeAndClear(); vcl::Window::dispose(); } VclPtr const & Panel::GetTitleBar() const { return mpTitleBar; } void Panel::SetUIElement (const Reference& rxElement) { mxElement = rxElement; if (mxElement.is()) { mxPanelComponent.set(mxElement->getRealInterface(), UNO_QUERY); } } void Panel::SetExpanded (const bool bIsExpanded) { SidebarController* pSidebarController = SidebarController::GetSidebarControllerForFrame(mxFrame); if (mbIsExpanded == bIsExpanded) return; mbIsExpanded = bIsExpanded; maDeckLayoutTrigger(); if (maContextAccess && pSidebarController) { pSidebarController->GetResourceManager()->StorePanelExpansionState( msPanelId, bIsExpanded, maContextAccess()); } } bool Panel::HasIdPredicate (const OUString& rsId) const { return msPanelId == rsId; } void Panel::Resize() { Window::Resize(); // Forward new size to window of XUIElement. Reference xElementWindow (GetElementWindow()); if(xElementWindow.is()) { const Size aSize(GetSizePixel()); xElementWindow->setPosSize(0, 0, aSize.Width(), aSize.Height(), awt::PosSize::POSSIZE); } } void Panel::DataChanged (const DataChangedEvent&) { Invalidate(); } Reference Panel::GetElementWindow() { if (mxElement.is()) { Reference xToolPanel(mxElement->getRealInterface(), UNO_QUERY); if (xToolPanel.is()) return xToolPanel->getWindow(); } return nullptr; } } } // end of namespace sfx2::sidebar /* vim:set shiftwidth=4 softtabstop=4 expandtab: */