Ice Sheet System Model  4.18
Code documentation
Public Member Functions | Data Fields
KML_Overlay Class Reference

#include <KML_Overlay.h>

Inheritance diagram for KML_Overlay:
KML_Feature KML_Object Object KML_GroundOverlay

Public Member Functions

 KML_Overlay ()
 
 ~KML_Overlay ()
 
void Echo ()
 
void DeepEcho ()
 
void DeepEcho (const char *indent)
 
void Write (FILE *fid, const char *indent)
 
void Read (FILE *fid, char *kstr)
 
int Id ()
 
int ObjectEnum ()
 
Objectcopy ()
 
void Marshall (char **pmarshalled_data, int *pmarshalled_data_size, int marshall_direction)
 
- Public Member Functions inherited from KML_Feature
 KML_Feature ()
 
 ~KML_Feature ()
 
- Public Member Functions inherited from KML_Object
 KML_Object ()
 
 ~KML_Object ()
 
virtual void WriteExp (FILE *fid, const char *nstr, int sgn, double cm, double sp)
 
virtual void AddAttrib (const char *name, const char *value)
 
virtual void WriteAttrib (FILE *fid, const char *indent)
 
virtual void AddCommnt (int ncom, char **pcom)
 
virtual void AddCommnt (char *value)
 
virtual void WriteCommnt (FILE *fid, const char *indent)
 
- Public Member Functions inherited from Object
virtual ~Object ()
 

Data Fields

char color [KML_OVERLAY_COLOR_LENGTH+1]
 
int draword
 
KML_Iconicon
 
- Data Fields inherited from KML_Feature
char name [KML_FEATURE_NAME_LENGTH+1]
 
bool visibility
 
bool open
 
char snippet [KML_FEATURE_SNIPPET_LENGTH+1]
 
char descript [KML_FEATURE_DESCRIPT_LENGTH+1]
 
char styleurl [KML_FEATURE_STYLEURL_LENGTH+1]
 
DataSetstyle
 
- Data Fields inherited from KML_Object
DataSetattrib
 
DataSetcommnt
 
DataSetkmlobj
 

Detailed Description

Definition at line 17 of file KML_Overlay.h.

Constructor & Destructor Documentation

◆ KML_Overlay()

KML_Overlay::KML_Overlay ( )

Definition at line 20 of file KML_Overlay.cpp.

20  {/*{{{*/
21 
22  strcpy(color ,"ffffffff");
23  memcpy(color,"ffffffff",(strlen("ffffffff")+1)*sizeof(char));
24 
25  draword = 0;
26  icon =NULL;
27 
28 }

◆ ~KML_Overlay()

KML_Overlay::~KML_Overlay ( )

Definition at line 30 of file KML_Overlay.cpp.

30  {/*{{{*/
31 
32  if (icon) {
33  delete icon;
34  icon =NULL;
35  }
36 
37 }

Member Function Documentation

◆ Echo()

void KML_Overlay::Echo ( void  )
virtual

Reimplemented from KML_Feature.

Definition at line 41 of file KML_Overlay.cpp.

41  {/*{{{*/
42 
44  _printf0_(" color: \"" << color << "\"\n");
45  _printf0_(" draword: " << draword << "\n");
46  _printf0_(" icon: " << icon << "\n");
47 }

◆ DeepEcho() [1/2]

void KML_Overlay::DeepEcho ( void  )
virtual

Reimplemented from KML_Feature.

Definition at line 49 of file KML_Overlay.cpp.

49  {/*{{{*/
50 
51  char indent[81]="";
52 
53  KML_Overlay::DeepEcho(indent);
54 
55  return;
56 }

◆ DeepEcho() [2/2]

void KML_Overlay::DeepEcho ( const char *  indent)
virtual

Reimplemented from KML_Feature.

Definition at line 58 of file KML_Overlay.cpp.

58  {/*{{{*/
59 
60  char indent2[81];
61  KML_Feature::DeepEcho(indent);
62 
63  memcpy(indent2,indent,(strlen(indent)+1)*sizeof(char));
64  strcat(indent2," ");
65 
66  _printf0_(indent << " color: " << color << "\n");
67  _printf0_(indent << " draword: " << draword << "\n");
68  if (icon)
69  icon->DeepEcho(indent2);
70  else
71  _printf0_(indent << " icon: " << icon << "\n");
72 }

◆ Write()

void KML_Overlay::Write ( FILE *  fid,
const char *  indent 
)
virtual

Reimplemented from KML_Feature.

Definition at line 74 of file KML_Overlay.cpp.

74  {/*{{{*/
75 
76  char indent2[81];
77 
78  KML_Feature::Write(filout,indent);
79 
80  memcpy(indent2,indent,(strlen(indent)+1)*sizeof(char));
81 
82  strcat(indent2," ");
83 
84  if (color && strlen(color))
85  fprintf(filout,"%s <color>%s</color>\n",indent,color);
86  fprintf(filout,"%s <drawOrder>%d</drawOrder>\n",indent,draword);
87  if (icon)
88  icon->Write(filout,indent2);
89 
90  return;
91 }

◆ Read()

void KML_Overlay::Read ( FILE *  fid,
char *  kstr 
)
virtual

Reimplemented from KML_Feature.

Definition at line 93 of file KML_Overlay.cpp.

93  {/*{{{*/
94 
95 /* process field within opening and closing tags */
96 
97  if (!strncmp(kstr,"</Overlay", 9)) {
98  xDelete<char>(kstr);
99  return;
100  }
101  else if (!strncmp(kstr,"</",2))
102  {_error_("KML_Overlay::Read -- Unexpected closing tag " << kstr << ".\n");}
103  else if (strncmp(kstr,"<",1))
104  {_error_("KML_Overlay::Read -- Unexpected field \"" << kstr << "\".\n");}
105 
106  else if (!strcmp(kstr,"<color>"))
108  kstr,
109  fid);
110  else if (!strcmp(kstr,"<drawOrder>"))
112  kstr,
113  fid);
114 
115  else if (!strncmp(kstr,"<Icon", 5)) {
116  icon =new KML_Icon();
117  icon ->Read(fid,kstr);
118  }
119 
120  else if (!strncmp(kstr,"<",1))
121  KML_Feature::Read(fid,kstr);
122 
123  return;
124 }

◆ Id()

int KML_Overlay::Id ( void  )
inlinevirtual

Reimplemented from KML_Feature.

Definition at line 35 of file KML_Overlay.h.

35 {_error_("Not implemented yet.");};

◆ ObjectEnum()

int KML_Overlay::ObjectEnum ( void  )
inlinevirtual

Reimplemented from KML_Feature.

Definition at line 36 of file KML_Overlay.h.

36 {_error_("Not implemented yet.");};

◆ copy()

Object* KML_Overlay::copy ( void  )
inlinevirtual

Reimplemented from KML_Feature.

Definition at line 37 of file KML_Overlay.h.

37 {_error_("Not implemented yet.");};

◆ Marshall()

void KML_Overlay::Marshall ( char **  pmarshalled_data,
int *  pmarshalled_data_size,
int  marshall_direction 
)
inlinevirtual

Reimplemented from KML_Feature.

Definition at line 38 of file KML_Overlay.h.

38 { _error_("not implemented yet!");};

Field Documentation

◆ color

char KML_Overlay::color[KML_OVERLAY_COLOR_LENGTH+1]

Definition at line 21 of file KML_Overlay.h.

◆ draword

int KML_Overlay::draword

Definition at line 22 of file KML_Overlay.h.

◆ icon

KML_Icon* KML_Overlay::icon

Definition at line 23 of file KML_Overlay.h.


The documentation for this class was generated from the following files:
KML_Overlay::color
char color[KML_OVERLAY_COLOR_LENGTH+1]
Definition: KML_Overlay.h:21
_printf0_
#define _printf0_(StreamArgs)
Definition: Print.h:29
KML_OVERLAY_COLOR_LENGTH
#define KML_OVERLAY_COLOR_LENGTH
Definition: KML_Overlay.h:8
KML_Icon::Read
void Read(FILE *fid, char *kstr)
Definition: KML_Icon.cpp:115
KML_Feature::DeepEcho
void DeepEcho()
Definition: KML_Feature.cpp:70
KMLFileTokenParse
int KMLFileTokenParse(int *pival, char *ktag, FILE *fid)
Definition: KMLFileReadUtils.cpp:335
KML_Overlay::DeepEcho
void DeepEcho()
Definition: KML_Overlay.cpp:49
KML_Feature::Write
void Write(FILE *fid, const char *indent)
Definition: KML_Feature.cpp:111
_error_
#define _error_(StreamArgs)
Definition: exceptions.h:49
KML_Icon
Definition: KML_Icon.h:20
KML_Icon::Write
void Write(FILE *fid, const char *indent)
Definition: KML_Icon.cpp:87
KML_Feature::Echo
void Echo()
Definition: KML_Feature.cpp:53
KML_Icon::DeepEcho
void DeepEcho()
Definition: KML_Icon.cpp:59
KML_Overlay::draword
int draword
Definition: KML_Overlay.h:22
KML_Feature::Read
void Read(FILE *fid, char *kstr)
Definition: KML_Feature.cpp:141
KML_Overlay::icon
KML_Icon * icon
Definition: KML_Overlay.h:23