blob: 638850fbd203652efd97a73bc8b0c3ef88352e8c [file] [log] [blame]
/**************************************************************
*
* 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
*
* Unless required by applicable law or agreed to in writing,
* software distributed under the License is distributed on an
* "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
* KIND, either express or implied. See the License for the
* specific language governing permissions and limitations
* under the License.
*
*************************************************************/
#ifndef _SVTOOLS_ACCESSIBLEBROWSEBOXOBJTYPE_HXX
#define _SVTOOLS_ACCESSIBLEBROWSEBOXOBJTYPE_HXX
// ============================================================================
namespace svt {
// ============================================================================
/** This enumeration contains a constant for each kind of accessible object of
a BrowseBox. */
enum AccessibleBrowseBoxObjType
{
BBTYPE_BROWSEBOX, /// The BrowseBox itself.
BBTYPE_TABLE, /// The data table.
BBTYPE_ROWHEADERBAR, /// The row header bar ("handle column").
BBTYPE_COLUMNHEADERBAR, /// The horizontal column header bar.
BBTYPE_TABLECELL, /// A cell of the data table.
BBTYPE_ROWHEADERCELL, /// A cell of the row header bar.
BBTYPE_COLUMNHEADERCELL, /// A cell of the column header bar.
BBTYPE_CHECKBOXCELL /// A cell with a checkbox.
};
// ============================================================================
} // namespace svt
// ============================================================================
#endif