/* -*- 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_VCL_INC_MENUBARVALUE_HXX #define INCLUDED_VCL_INC_MENUBARVALUE_HXX #include /* MenubarValue: * * Value container for menubars specifying height of adjacent docking area */ class MenubarValue final : public ImplControlValue { public: MenubarValue() : ImplControlValue(ControlType::Menubar, 0) { maTopDockingAreaHeight = 0; } virtual ~MenubarValue() override; virtual MenubarValue* clone() const override; MenubarValue(MenubarValue const&) = default; MenubarValue(MenubarValue&&) = default; MenubarValue& operator=(MenubarValue const&) = delete; // due to ImplControlValue MenubarValue& operator=(MenubarValue&&) = delete; // due to ImplControlValue int maTopDockingAreaHeight; }; #endif // INCLUDED_VCL_INC_MENUBARVALUE_HXX /* vim:set shiftwidth=4 softtabstop=4 expandtab: */ LibreOffice 核心代码仓库文档基金会
summaryrefslogtreecommitdiff
path: root/salhelper
AgeCommit message (Expand)Author
2014-05-15Resolves fdo#70681: fixincludeguards.pl: all that's leftThomas Arnhold
2014-04-28prefer makefile-gmake-modeTakeshi Abe
2014-04-01Explicitly mark overriding destructors as "virtual"Stephan Bergmann
2014-03-26First batch of adding SAL_OVERRRIDE to overriding function declarationsStephan Bergmann
2014-02-26Remove visual noise from salhelperAlexander Wilms
2014-02-21Replace deprecated std::auto_ptr with boost::scoped_ptrTakeshi Abe
2014-02-17salhelper: sal_Bool -> boolStephan Bergmann
2013-11-19remove most use of RTL_CONSTASCII_USTRINGPARAM macroNoel Grandin
2013-09-22gbuild: make the versioned library the linktarget on UnixesMichael Stahl
2013-04-30Move to MPLv2 license headers, with ESC decision and author's permission.Michael Meeks
2013-04-24Don't point to inc directories that don't exist any longerTor Lillqvist
2013-04-24move URE headers to include/David Tardon
2013-04-22Move to MPLv2 license headers, with ESC decision and author's permission.Michael Meeks
2013-04-13simplify makefilesDavid Tardon
2013-04-13simplify generation of *_allheaders.hxxDavid Tardon
2013-04-13install SDK headers from filelistsDavid Tardon
2013-03-14remove legacy build.pl prj/build.lst files.Michael Meeks
2013-03-04doubled namespacesThomas Arnhold
2013-03-03coverity#983108: fix memory leakMarkus Mohrhard
2013-03-03coverity#983107: fix memory leakMarkus Mohrhard
2013-02-28remove all d.lstMichael Stahl
2013-02-27salhelper: new ZipPackage_salhelper_odk_headersMichael Stahl
2013-01-26gbuild: do not copy boost headers aroundMichael Stahl
2013-01-16Get rid of GetVersionInfo and checkdllTor Lillqvist
2012-12-07Proper indentationStephan Bergmann
2012-12-04API CHANGE: remove long-deprecated Semaphore & related stuff.Thorsten Behrens