/* -*- 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_ACCMGR_HXX #define INCLUDED_VCL_INC_ACCMGR_HXX #include class Accelerator; class KeyCode; typedef ::std::vector< Accelerator* > ImplAccelList; class ImplAccelManager { private: ImplAccelList* mpAccelList; ImplAccelList* mpSequenceList; public: ImplAccelManager() { mpAccelList = NULL; mpSequenceList = NULL; } ~ImplAccelManager(); bool InsertAccel( Accelerator* pAccel ); void RemoveAccel( Accelerator* pAccel ); void EndSequence( bool bCancel = false ); void FlushAccel() { EndSequence( true ); } bool IsAccelKey( const KeyCode& rKeyCode, sal_uInt16 nRepeat ); }; #endif // INCLUDED_VCL_INC_ACCMGR_HXX /* vim:set shiftwidth=4 softtabstop=4 expandtab: */ e='distro/cib/libreoffice-6-2'>distro/cib/libreoffice-6-2 LibreOffice 核心代码仓库文档基金会
summaryrefslogtreecommitdiff
path: root/setup_native
AgeCommit message (Expand)Author
2012-10-13Remove consecutive break and a break which follows a returnJulien Nabet
2012-10-09Killing even the last remenants of rebaseFridrich Štrba
2012-10-03xml2cmp no longer usedStephan Bergmann
2012-09-27Revert inadvertent chmodStephan Bergmann
2012-09-27No dictionaries were preselected for en_US langpackStephan Bergmann
2012-09-26msi-encodinglist.txt was moved to different locationAndras Timar
2012-09-12fdo#39791 do not steal .doc association from MS WordAndras Timar
2012-09-11fdo#53009: For msi installer, only default-select a subset of dictionariesStephan Bergmann
2012-09-11fdo#53520: One more dict pt vs. pt-PT inconsitencyStephan Bergmann
2012-09-11Some code simplificationStephan Bergmann
2012-09-11fdo#53520: Adapt to dict-pt*.oxt renames, and more pt-PT/pt-BR clean upStephan Bergmann
2012-09-11fix bug fdo#53520, pt-PT and pt-BR better splitOlivier Hallot
2012-08-10Related fdo#51252: No more prereg, no more unopkg syncStephan Bergmann