/* -*- 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 SFX_TITLEDOCKWIN_HXX #define SFX_TITLEDOCKWIN_HXX #include "sfx2/dllapi.h" #include "sfx2/dockwin.hxx" #include #include //...................................................................................................................... namespace sfx2 { //...................................................................................................................... //================================================================================================================== //= TitledDockingWindow //================================================================================================================== class SFX2_DLLPUBLIC TitledDockingWindow : public SfxDockingWindow { public: TitledDockingWindow( SfxBindings* i_pBindings, SfxChildWindow* i_pChildWindow, Window* i_pParent, WinBits i_nStyle = 0 ); TitledDockingWindow( SfxBindings* i_pBindings, SfxChildWindow* i_pChildWindow, Window* i_pParent, const ResId& i_rResId ); virtual ~TitledDockingWindow(); /** sets a title to be displayed in the docking window */ void SetTitle( const String& i_rTitle ); /** adds a drop down item to the toolbox. Usually, this is used to add some kind of menu to the toolbox. @param i_rItemText the text to display for the item @param i_nHelpId the help ID for the new toolbox item @param i_rCallback the callback to invoke when the drop item has been clicked @return the ID of the newly created toolbox item */ sal_uInt16 AddDropDownToolBoxItem( const String& i_rItemText, const OString& i_nHelpId, const Link& i_rCallback ) { return impl_addDropDownToolBoxItem( i_rItemText, i_nHelpId, i_rCallback ); } void SetEndDockingHdl( const Link& i_rEndDockingHdl ) { m_aEndDockingHdl = i_rEndDockingHdl; } const Link& GetEndDockingHdl() const { return m_aEndDockingHdl; } /** resets the toolbox. Upon return, the only item in the toolbox is the closer. */ void ResetToolBox() { impl_resetToolBox(); } /** returns the content window, which is to be used as parent window for any content to be displayed in the docking window. */ ::Window& GetContentWindow() { return m_aContentWindow; } const ::Window& GetContentWindow() const { return m_aContentWindow; } ToolBox& GetToolBox() { return m_aToolbox; } const ToolBox& GetToolBox() const { return m_aToolbox; } /** Return the border that is painted around the inner window as decoration. */ SvBorder GetDecorationBorder (void) const { return m_aBorder; } protected: // Window overridables virtual void Paint( const Rectangle& i_rArea ); virtual void Resize(); virtual void StateChanged( StateChangedType i_nType ); virtual void DataChanged( const DataChangedEvent& i_rDataChangedEvent ); virtual void SetText( const OUString& i_rText ); // DockingWindow overridables void EndDocking( const Rectangle& rRect, sal_Bool bFloatMode ); // own overridables virtual void onLayoutDone(); protected: /** internal version of ResetToolBox */ void impl_resetToolBox(); /** internal version of AddDropDownToolBoxItem */ sal_uInt16 impl_addDropDownToolBoxItem( const String& i_rItemText, const OString& i_nHelpId, const Link& i_rCallback ); /** returns the current title. If no title has been set via SetTitle, then the window text (Window::GetText) is returned. */ String impl_getTitle() const; private: DECL_LINK( OnToolboxItemSelected, ToolBox* ); void impl_construct(); void impl_layout(); void impl_scheduleLayout(); private: OUString m_sTitle; ToolBox m_aToolbox; Window m_aContentWindow; Link m_aEndDockingHdl; /** The border that is painted arround the inner window. The bevel shadow lines are part of the border, so where the border is 0 no such line is painted. */ SvBorder m_aBorder; /** Remember that a layout is pending, i.e. Resize() has been called since the last Paint(). */ bool m_bLayoutPending; /** Height of the title bar. Calculated in impl_layout(). */ int m_nTitleBarHeight; }; //...................................................................................................................... } // namespace sfx2 //...................................................................................................................... #endif // SFX_TITLEDOCKWIN_HXX /* vim:set shiftwidth=4 softtabstop=4 expandtab: */ 6+backports LibreOffice 核心代码仓库文档基金会
summaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
2015-08-07libodfgen bundled soname patchAndras Timar
Change-Id: I09f0528420577e4b417ee4e39a52150777910d13 Reviewed-on: https://gerrit.libreoffice.org/17569 Tested-by: Jenkins <ci@libreoffice.org> Reviewed-by: Andras Timar <andras.timar@collabora.com>
2015-06-05use $(DISABLE_DYNLOADING) consistentlyDavid Tardon
Change-Id: Iec611290770ae0393eb787a3883bb22a12340b0a
2015-01-01updates should not require touching ExternalPackage*David Tardon
Change-Id: Ic23c434770159ddea1f05ac0ef49572b387ebb54
2015-01-01upload libodfgen 0.1.3David Tardon
Change-Id: Ia28bac4b12f23f3e85e42e323b35d8715a6d5d02
2014-11-24upload libodfgen 0.1.2David Tardon
Change-Id: I9a4719e60f910256c529551fdbb387e98aefd6ce
2014-06-17external/librevenge,libmwaw,libodfgen,libwps: fix self-linked symlinks build ↵Douglas Mencken
problem ...LibreOfficeDev.app/Contents/MacOS/librevenge-0.0.0.dylib: Too many levels of symbolic links (librevenge-0.0.0.dylib --> librevenge-0.0.0.dylib: broken symbolic link to librevenge-0.0.0.dylib) The reason for this is that symlink librevenge-0.0.dylib (UnpackedTarball/librevenge/src/lib/.libs/librevenge-0.0.dylib -> librevenge-0.0.0.dylib) is copied via cp --no-dereference, thus becoming linked to self. Change-Id: I4b918c35c594800fb2d7f84ee0ee9f2ff2a5fe14 Reviewed-on: https://gerrit.libreoffice.org/9783 Tested-by: David Tardon <dtardon@redhat.com> Reviewed-by: David Tardon <dtardon@redhat.com>
2014-06-03upload libodfgen 0.1.1David Tardon
Change-Id: I46079625b9aa6fd4e1c205a381d2c157b51dc7e4
2014-05-26rebase all import libsDavid Tardon
Change-Id: I9e1fc613816c943f4fb1033185e34e3acf317f1d
2014-05-25build libodfgen as shared libDavid Tardon
Change-Id: I3a2c9f56e87ee6395bd3505a8fe372632e242312