/* -*- 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_TOOLBARVALUE_HXX #define INCLUDED_VCL_INC_TOOLBARVALUE_HXX #include #include /* Toolbarvalue: * * Value container for toolbars detailing the grip position */ class ToolbarValue final : public ImplControlValue { public: ToolbarValue() : ImplControlValue(ControlType::Toolbar, 0) { mbIsTopDockingArea = false; } virtual ~ToolbarValue() override; virtual ToolbarValue* clone() const override; ToolbarValue(ToolbarValue const&) = default; ToolbarValue(ToolbarValue&&) = default; ToolbarValue& operator=(ToolbarValue const&) = delete; // due to ImplControlValue ToolbarValue& operator=(ToolbarValue&&) = delete; // due to ImplControlValue tools::Rectangle maGripRect; // indicates that this is the top aligned dockingarea // adjacent to the menubar, only used on Windows bool mbIsTopDockingArea; }; #endif // INCLUDED_VCL_INC_TOOLBARVALUE_HXX /* vim:set shiftwidth=4 softtabstop=4 expandtab: */ LibreOffice 核心代码仓库文档基金会
summaryrefslogtreecommitdiff
path: root/jvmfwk
AgeCommit message (Expand)Author
2013-02-22s/the the/the/Tor Lillqvist
2013-02-12Some cppcheck cleaningJulien Nabet
2013-01-30Removed several useless macros: A2OU, A2S, C2U, C2S, OUSTR, OUSTRINGJean-Noël Rouvignac
2013-01-26gbuild: fix silly "expandtabs" in makefile VIM modelinesMichael Stahl
2013-01-26gbuild: do not copy boost headers aroundMichael Stahl
2012-12-25Get rid of (most uses of) GUITor Lillqvist
2012-12-18Let JavaVirtualMachine::getJavaVm start the VM it already foundStephan Bergmann
2012-11-27Make python3 work with custom VALGRIND_CFLAGSStephan Bergmann
2012-11-15Drop support for /etc/opt/ure and ~/.ure from LibreOffice 4Stephan Bergmann
2012-10-15fix typosJulien Nabet
2012-10-09loplugin: unused OStringsCaolán McNamara
2012-10-08TypoTor Lillqvist
2012-10-08Fix for !SOLAR_JAVATor Lillqvist
2012-10-07Move the #ifndef DISABLE_DYNLOADING a bit earlierTor Lillqvist
2012-10-07Handle lack of module loading/unloading API when DISABLE_DYNLOADINGTor Lillqvist
2012-10-04sal_Bool->bool in jvmfwkNoel Grandin
2012-10-04Mention the plugin mechanismTor Lillqvist
2012-10-01Replace usage of rtl_*Memory with equivalent from string.hArnaud Versini
2012-09-28gbuild: invert handling of standard system libraries:Michael Stahl
2012-09-28gbuild: gb_Library_PLAINLIBS_NONE cleanup for WNT:Michael Stahl
2012-09-28gbuild: replace direct gb_STDLIBS use with ...Michael Stahl
2012-09-28gbuild: split uwinapi out of gb_STDLIBSMichael Stahl
2012-09-18deprecate oustringostreaminserter.hxxNorbert Thiebaud