• Skip to content
  • Skip to link menu
KDE API Reference
  • KDE API Reference
  • kdeedu API Reference
  • KDE Home
  • Contact Us
 

marble

  • sources
  • kde-4.14
  • kdeedu
  • marble
  • src
  • lib
  • marble
  • geodata
  • handlers
  • dgml
DgmlSectionTagHandler.cpp
Go to the documentation of this file.
1 /*
2  Copyright (C) 2007 Nikolas Zimmermann <zimmermann@kde.org>
3  Copyright (C) 2008 Torsten Rahn <tackat@kde.org>
4 
5  This file is part of the KDE project
6 
7  This library is free software you can redistribute it and/or
8  modify it under the terms of the GNU Library General Public
9  License as published by the Free Software Foundation either
10  version 2 of the License, or (at your option) any later version.
11 
12  This library is distributed in the hope that it will be useful,
13  but WITHOUT ANY WARRANTY without even the implied warranty of
14  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
15  Library General Public License for more details.
16 
17  You should have received a copy of the GNU Library General Public License
18  aint with this library see the file COPYING.LIB. If not, write to
19  the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
20  Boston, MA 02110-1301, USA.
21 */
22 
23 #include "DgmlSectionTagHandler.h"
24 
25 #include "MarbleDebug.h"
26 
27 #include "DgmlElementDictionary.h"
28 #include "DgmlAttributeDictionary.h"
29 #include "DgmlAuxillaryDictionary.h"
30 #include "GeoParser.h"
31 #include "GeoSceneLegend.h"
32 #include "GeoSceneSection.h"
33 
34 namespace Marble
35 {
36 namespace dgml
37 {
38 DGML_DEFINE_TAG_HANDLER(Section)
39 
40 GeoNode* DgmlSectionTagHandler::parse(GeoParser& parser) const
41 {
42  // Check whether the tag is valid
43  Q_ASSERT(parser.isStartElement() && parser.isValidElement(dgmlTag_Section));
44 
45  QString name = parser.attribute(dgmlAttr_name);
46  QString checkable = parser.attribute(dgmlAttr_checkable).toLower().trimmed();
47  QString connectTo = parser.attribute(dgmlAttr_connect).trimmed();
48  QString radio = parser.attribute(dgmlAttr_radio);
49  int spacing = parser.attribute(dgmlAttr_spacing).toInt();
50 
51  GeoSceneSection* section = 0;
52 
53  // Checking for parent item
54  GeoStackItem parentItem = parser.parentElement();
55  if (parentItem.represents(dgmlTag_Legend)) {
56  section = new GeoSceneSection( name );
57  section->setCheckable( checkable == dgmlValue_true || checkable == dgmlValue_on );
58  section->setConnectTo( connectTo );
59  section->setSpacing( spacing );
60  section->setRadio( radio );
61  parentItem.nodeAs<GeoSceneLegend>()->addSection( section );
62  }
63 
64  return section;
65 }
66 
67 }
68 }
DgmlAttributeDictionary.h
Marble::GeoSceneSection::setConnectTo
void setConnectTo(const QString &text)
Definition: GeoSceneSection.cpp:129
DGML_DEFINE_TAG_HANDLER
#define DGML_DEFINE_TAG_HANDLER(Name)
Definition: DgmlElementDictionary.h:85
Marble::GeoStackItem::nodeAs
T * nodeAs()
Definition: GeoParser.h:120
Marble::dgml::dgmlTag_Section
const char * dgmlTag_Section
Definition: DgmlElementDictionary.cpp:64
DgmlAuxillaryDictionary.h
Marble::GeoNode
A shared base class for all classes that are mapped to a specific tag (ie.
Definition: GeoDocument.h:60
GeoParser.h
Marble::dgml::DgmlSectionTagHandler
Definition: DgmlSectionTagHandler.h:33
Marble::dgml::dgmlAttr_name
const char * dgmlAttr_name
Definition: DgmlAttributeDictionary.cpp:54
Marble::GeoSceneSection::setCheckable
void setCheckable(bool checkable)
Definition: GeoSceneSection.cpp:119
MarbleDebug.h
Marble::GeoParser
Definition: GeoParser.h:40
Marble::GeoStackItem::represents
bool represents(const char *tagName) const
Definition: GeoParser.h:113
Marble::GeoSceneSection::setSpacing
void setSpacing(int spacing)
Definition: GeoSceneSection.cpp:139
Marble::dgml::dgmlAttr_checkable
const char * dgmlAttr_checkable
Definition: DgmlAttributeDictionary.cpp:41
Marble::GeoSceneLegend
Legend of a GeoScene document.
Definition: GeoSceneLegend.h:41
Marble::dgml::dgmlValue_true
const char * dgmlValue_true
Definition: DgmlAuxillaryDictionary.cpp:36
QString::toInt
int toInt(bool *ok, int base) const
Marble::dgml::dgmlTag_Legend
const char * dgmlTag_Legend
Definition: DgmlElementDictionary.cpp:54
QString::trimmed
QString trimmed() const
DgmlElementDictionary.h
Marble::GeoStackItem
Definition: GeoParser.h:97
QString
Marble::dgml::dgmlAttr_radio
const char * dgmlAttr_radio
Definition: DgmlAttributeDictionary.cpp:62
QString::toLower
QString toLower() const
Marble::GeoSceneSection::setRadio
void setRadio(const QString &radio)
Definition: GeoSceneSection.cpp:149
Marble::dgml::dgmlAttr_spacing
const char * dgmlAttr_spacing
Definition: DgmlAttributeDictionary.cpp:66
Marble::GeoSceneSection
Section of a GeoScene document.
Definition: GeoSceneSection.h:39
GeoSceneSection.h
DgmlSectionTagHandler.h
GeoSceneLegend.h
Marble::dgml::dgmlValue_on
const char * dgmlValue_on
Definition: DgmlAuxillaryDictionary.cpp:37
Marble::dgml::dgmlAttr_connect
const char * dgmlAttr_connect
Definition: DgmlAttributeDictionary.cpp:42
This file is part of the KDE documentation.
Documentation copyright © 1996-2020 The KDE developers.
Generated on Mon Jun 22 2020 13:13:38 by doxygen 1.8.7 written by Dimitri van Heesch, © 1997-2006

KDE's Doxygen guidelines are available online.

marble

Skip menu "marble"
  • Main Page
  • Namespace List
  • Namespace Members
  • Alphabetical List
  • Class List
  • Class Hierarchy
  • Class Members
  • File List
  • File Members
  • Related Pages

kdeedu API Reference

Skip menu "kdeedu API Reference"
  • Analitza
  •     lib
  • kalgebra
  • kalzium
  •   libscience
  • kanagram
  • kig
  •   lib
  • klettres
  • marble
  • parley
  • rocs
  •   App
  •   RocsCore
  •   VisualEditor
  •   stepcore

Search



Report problems with this website to our bug tracking system.
Contact the specific authors with questions and comments about the page contents.

KDE® and the K Desktop Environment® logo are registered trademarks of KDE e.V. | Legal