summaryrefslogtreecommitdiff
path: root/xmloff/source/forms/controlelement.hxx
blob: 0ddbed419310d721d6839944062be947ee413076 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
/* -*- 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_XMLOFF_SOURCE_FORMS_CONTROLELEMENT_HXX
#define INCLUDED_XMLOFF_SOURCE_FORMS_CONTROLELEMENT_HXX

#include <sal/types.h>

namespace xmloff
{

    //= OControlElement
    /** helper for translating between control types and XML tags
    */
    class OControlElement
    {
    public:
        enum ElementType
        {
            TEXT = 0,
            TEXT_AREA,
            PASSWORD,
            FILE,
            FORMATTED_TEXT,
            FIXED_TEXT,
            COMBOBOX,
            LISTBOX,
            BUTTON,
            IMAGE,
            CHECKBOX,
            RADIO,
            FRAME,
            IMAGE_FRAME,
            HIDDEN,
            GRID,
            VALUERANGE,
            GENERIC_CONTROL,
            TIME,
            DATE,

            UNKNOWN // must be the last element
        };

    protected:
        /** ctor.
            <p>This default constructor is protected, 'cause this class is not intended to be instantiated
            directly. Instead, the derived classes should be used.</p>
        */
        OControlElement() { }

    public:
        /** retrieves the tag name to be used to describe a control of the given type

            <p>The returned string is the pure element name, without any namespace.</p>

            @param  _eType
                the element type
        */
        static const sal_Char* getElementName(ElementType _eType);
    };

}   // namespace xmloff

#endif // INCLUDED_XMLOFF_SOURCE_FORMS_CONTROLELEMENT_HXX

/* vim:set shiftwidth=4 softtabstop=4 expandtab: */
>Armin Le Grand 2018-04-06Revert "SOSAW080: Added first bunch of basic changes to helpers"Armin Le Grand 2018-04-06SOSAW080: Added first bunch of basic changes to helpersArmin Le Grand 2017-10-31RotateFlyFrame2: Unified FrameAreaDefinitionArmin Le Grand 2017-10-30Adapted to get/setSwFrame and get/setSwPrintArmin Le Grand 2017-10-30Isolated SwFrame members maFrane and maPrtArmin Le Grand 2017-08-03loplugin:constparams in sw part2Noel Grandin 2017-03-31tdf#82580 tools: rename Rectangle to tools::RectangleMiklos Vajna 2017-02-10convert SvtSecurityOptions::EOption to scoped enumNoel Grandin 2017-01-13new loplugin: useuniqueptr: sw part 1Noel Grandin 2016-12-05convert DecodeMechanism to scoped enumNoel Grandin 2016-12-05convert INetURLObject::EncodeMechanism to scoped enumNoel Grandin 2016-11-14coverity#703927 Unchecked return valueCaolán McNamara 2016-10-05convert MapUnit to scoped enumNoel Grandin 2015-12-14Related: rhbz#1289394 always provide the screen area the tip applies toCaolán McNamara 2015-11-25bin/rename-sw-abbreviations.shlibreoffice-5-1-branch-pointRobinson Tryon 2015-11-10loplugin:nullptr (automatic rewrite)Stephan Bergmann 2015-10-06 tdf#94559: 4th step to remove rtti.hxxOliver Specht 2015-06-25SwViewShellImp::GetFirstVisPage: use vcl::RenderContextMiklos Vajna 2015-05-20bin/rename-sw-abbreviations.shlibreoffice-5-0-branch-pointChristian Lohmaier 2015-04-29convert SDRSEARCH_ constants to scoped enumNoel Grandin 2015-01-23do not use manual iterationBjoern Michaelsen 2014-12-12coverity#1257108 Explicit null dereferencedCaolán McNamara 2014-12-08coverity#1257109 Unchecked dynamic_castCaolán McNamara 2014-12-04impl. Clone for all subclasses of SdrPageDavid Tardon 2014-12-04unnecessary castBjoern Michaelsen 2014-11-25loplugin: cstylecastNoel Grandin 2014-11-19loplugin: cstylecastNoel Grandin 2014-11-11fdo#84938: replace HELPMODE_ constants with enumNoel Grandin