/* -*- 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 .
*/
/* * The GroupManager listens at the StarForm for FormComponent insertion and removal as well as * its properties "Name" and "TabIndex" and updates its Group using this information. * * The GroupManager manages a Group in which all Controls are sorted by TabIndex. * It also manages an array of Groups, in which each FormComponent is assigned a * Group according to its name. * Each Group is activated using a Map, if they contain more than one element. * * The Groups manage the FormComponents internally using two arrays. * In the GroupCompArray the Components are sorted by TabIndex and insertion position. * Because this array is accessed via the FormComponent, we also have the GroupCompAccessArray * in which the FormComponents are sorted by their storage address. * Every element of the GroupCompArray has a pointer to the GroupCompArray.
*/ namespace frm
{
class OGroupManager : public ::cppu::WeakImplHelper< css::beans::XPropertyChangeListener, css::container::XContainerListener>
{
std::unique_ptr<OGroup>
m_pCompGroup; // Sort all Components by TabIndices
OGroupArr m_aGroupArr; // Sort all Components by group
OActiveGroups m_aActiveGroupMap; // This map contains all indices of all groups with more than 1 element
Die Informationen auf dieser Webseite wurden
nach bestem Wissen sorgfältig zusammengestellt. Es wird jedoch weder Vollständigkeit, noch Richtigkeit,
noch Qualität der bereit gestellten Informationen zugesichert.
Bemerkung:
Die farbliche Syntaxdarstellung und die Messung sind noch experimentell.