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

#include <KML_Style.h>

Inheritance diagram for KML_Style:
KML_StyleSelector KML_Object Object

Public Member Functions

 KML_Style ()
 
 ~KML_Style ()
 
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_StyleSelector
 KML_StyleSelector ()
 
 ~KML_StyleSelector ()
 
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_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

void * icon
 
void * label
 
KML_LineStyleline
 
KML_PolyStylepoly
 
void * balloon
 
void * list
 
- Data Fields inherited from KML_Object
DataSetattrib
 
DataSetcommnt
 
DataSetkmlobj
 

Detailed Description

Definition at line 16 of file KML_Style.h.

Constructor & Destructor Documentation

◆ KML_Style()

KML_Style::KML_Style ( )

Definition at line 21 of file KML_Style.cpp.

21  {/*{{{*/
22 
23  icon =NULL;
24  label =NULL;
25  line =NULL;
26  poly =NULL;
27  balloon =NULL;
28  list =NULL;
29 
30 }

◆ ~KML_Style()

KML_Style::~KML_Style ( )

Definition at line 32 of file KML_Style.cpp.

32  {/*{{{*/
33 
34  if (list) {
35 // delete list;
36  list =NULL;
37  }
38  if (balloon) {
39 // delete balloon;
40  balloon =NULL;
41  }
42  if (poly) {
43  delete poly;
44  poly =NULL;
45  }
46  if (line) {
47  delete line;
48  line =NULL;
49  }
50  if (label) {
51 // delete label;
52  label =NULL;
53  }
54  if (icon) {
55 // delete icon;
56  icon =NULL;
57  }
58 
59 }

Member Function Documentation

◆ Echo()

void KML_Style::Echo ( void  )
virtual

Reimplemented from KML_Object.

Definition at line 63 of file KML_Style.cpp.

63  {/*{{{*/
64 
65  bool flag=true;
66 
67  if(flag) _printf0_("KML_Style:\n");
69 
70  if(flag) _printf0_(" icon: " << icon << "\n");
71  if(flag) _printf0_(" label: " << label << "\n");
72  if(flag) _printf0_(" line: " << line << "\n");
73  if(flag) _printf0_(" poly: " << poly << "\n");
74  if(flag) _printf0_(" balloon: " << balloon << "\n");
75  if(flag) _printf0_(" list: " << list << "\n");
76 
77  return;
78 }

◆ DeepEcho() [1/2]

void KML_Style::DeepEcho ( void  )
virtual

Reimplemented from KML_Object.

Definition at line 80 of file KML_Style.cpp.

80  {/*{{{*/
81 
82  char indent[81]="";
83 
84  KML_Style::DeepEcho(indent);
85 
86  return;
87 }

◆ DeepEcho() [2/2]

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

Reimplemented from KML_Object.

Definition at line 89 of file KML_Style.cpp.

89  {/*{{{*/
90 
91  char indent2[81];
92  bool flag=true;
93 
94  if(flag) _printf0_(indent << "KML_Style:\n");
96 
97  memcpy(indent2,indent,(strlen(indent)+1)*sizeof(char));
98  strcat(indent2," ");
99 
100 // if (icon)
101 // icon->DeepEcho(indent2);
102 // else
103  if(flag) _printf0_(indent << " icon: " << icon << "\n");
104 // if (label)
105 // label->DeepEcho(indent2);
106 // else
107  if(flag) _printf0_(indent << " label: " << label << "\n");
108  if (line)
109  line->DeepEcho(indent2);
110  else
111  if(flag) _printf0_(indent << " line: " << line << "\n");
112  if (poly)
113  poly->DeepEcho(indent2);
114  else
115  if(flag) _printf0_(indent << " poly: " << poly << "\n");
116 // if (balloon)
117 // balloon->DeepEcho(indent2);
118 // else
119  if(flag) _printf0_(indent << " balloon: " << balloon << "\n");
120 // if (list)
121 // list->DeepEcho(indent2);
122 // else
123  if(flag) _printf0_(indent << " list: " << list << "\n");
124 
125  return;
126 }

◆ Write()

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

Implements KML_Object.

Definition at line 128 of file KML_Style.cpp.

128  {/*{{{*/
129 
130  char indent2[81];
131 
132  fprintf(filout,"%s<Style",indent);
133  WriteAttrib(filout," ");
134  fprintf(filout,">\n");
135  WriteCommnt(filout,indent);
136 
137  KML_StyleSelector::Write(filout,indent);
138 
139  memcpy(indent2,indent,(strlen(indent)+1)*sizeof(char));
140 
141  strcat(indent2," ");
142 
143 // if (icon)
144 // icon->Write(filout,indent2);
145 // if (label)
146 // label->Write(filout,indent2);
147  if (line)
148  line->Write(filout,indent2);
149  if (poly)
150  poly->Write(filout,indent2);
151 // if (balloon)
152 // balloon->Write(filout,indent2);
153 // if (list)
154 // list->Write(filout,indent2);
155 
156  fprintf(filout,"%s</Style>\n",indent);
157 
158  return;
159 }

◆ Read()

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

Implements KML_Object.

Definition at line 161 of file KML_Style.cpp.

161  {/*{{{*/
162 
163  char* kstri;
164  int ncom=0;
165  char** pcom=NULL;
166 
167 /* get object attributes and check for solo tag */
168 
169  if (KMLFileTagAttrib(this,
170  kstr))
171  return;
172 
173 /* loop over and process fields within opening and closing tags */
174 
175  while((kstri=KMLFileToken(fid, &ncom,&pcom))){
176  if (!strncmp(kstri,"</Style", 7)) {
177  xDelete<char>(kstri);
178  break;
179  }
180  else if (!strncmp(kstri,"</",2))
181  {_error_("KML_Style::Read -- Unexpected closing tag " << kstri << ".\n");}
182  else if (strncmp(kstri,"<",1))
183  {_error_("KML_Style::Read -- Unexpected field \"" << kstri << "\".\n");}
184 
185 // else if (!strncmp(kstri,"<IconStyle",10)) {
186 // icon =new KML_IconStyle();
187 // icon ->Read(fid,kstri);
188 // }
189 
190 // else if (!strncmp(kstri,"<LabelStyle",11)) {
191 // label =new KML_LabelStyle();
192 // label ->Read(fid,kstri);
193 // }
194 
195  else if (!strncmp(kstri,"<LineStyle",10)) {
196  line =new KML_LineStyle();
197  line ->Read(fid,kstri);
198  }
199 
200  else if (!strncmp(kstri,"<PolyStyle",10)) {
201  poly =new KML_PolyStyle();
202  poly ->Read(fid,kstri);
203  }
204 
205 // else if (!strncmp(kstri,"<BalloonStyle",13)) {
206 // balloon =new KML_BalloonStyle();
207 // balloon ->Read(fid,kstri);
208 // }
209 
210 // else if (!strncmp(kstri,"<ListStyle",10)) {
211 // list =new KML_ListStyle();
212 // list ->Read(fid,kstri);
213 // }
214 
215  else if (!strncmp(kstri,"<",1))
216  KML_StyleSelector::Read(fid,kstri);
217 
218  xDelete<char>(kstri);
219  }
220 
221  this->AddCommnt(ncom,pcom);
222 
223  for(ncom=ncom; ncom>0; ncom--)
224  xDelete<char>(pcom[ncom-1]);
225  xDelete<char*>(pcom);
226 
227  return;
228 }

◆ Id()

int KML_Style::Id ( void  )
inlinevirtual

Reimplemented from KML_Object.

Definition at line 37 of file KML_Style.h.

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

◆ ObjectEnum()

int KML_Style::ObjectEnum ( void  )
inlinevirtual

Reimplemented from KML_Object.

Definition at line 38 of file KML_Style.h.

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

◆ copy()

Object* KML_Style::copy ( void  )
inlinevirtual

Reimplemented from KML_Object.

Definition at line 39 of file KML_Style.h.

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

◆ Marshall()

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

Reimplemented from KML_Object.

Definition at line 40 of file KML_Style.h.

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

Field Documentation

◆ icon

void* KML_Style::icon

Definition at line 20 of file KML_Style.h.

◆ label

void* KML_Style::label

Definition at line 21 of file KML_Style.h.

◆ line

KML_LineStyle* KML_Style::line

Definition at line 22 of file KML_Style.h.

◆ poly

KML_PolyStyle* KML_Style::poly

Definition at line 23 of file KML_Style.h.

◆ balloon

void* KML_Style::balloon

Definition at line 24 of file KML_Style.h.

◆ list

void* KML_Style::list

Definition at line 25 of file KML_Style.h.


The documentation for this class was generated from the following files:
_printf0_
#define _printf0_(StreamArgs)
Definition: Print.h:29
KML_Object::WriteAttrib
virtual void WriteAttrib(FILE *fid, const char *indent)
Definition: KML_Object.cpp:288
KMLFileTagAttrib
int KMLFileTagAttrib(KML_Object *kobj, char *ktag)
Definition: KMLFileReadUtils.cpp:287
KML_Style::icon
void * icon
Definition: KML_Style.h:20
KML_PolyStyle::Read
void Read(FILE *fid, char *kstr)
Definition: KML_PolyStyle.cpp:88
KML_Style::line
KML_LineStyle * line
Definition: KML_Style.h:22
KMLFileToken
char * KMLFileToken(FILE *fid, int *pncom=NULL, char ***ppcom=NULL)
Definition: KMLFileReadUtils.cpp:18
KML_Style::balloon
void * balloon
Definition: KML_Style.h:24
KML_LineStyle::DeepEcho
void DeepEcho()
Definition: KML_LineStyle.cpp:45
KML_LineStyle::Read
void Read(FILE *fid, char *kstr)
Definition: KML_LineStyle.cpp:82
KML_PolyStyle::Write
void Write(FILE *fid, const char *indent)
Definition: KML_PolyStyle.cpp:71
_error_
#define _error_(StreamArgs)
Definition: exceptions.h:49
KML_Style::label
void * label
Definition: KML_Style.h:21
KML_LineStyle
Definition: KML_LineStyle.h:14
KML_Style::DeepEcho
void DeepEcho()
Definition: KML_Style.cpp:80
KML_PolyStyle
Definition: KML_PolyStyle.h:14
KML_Style::poly
KML_PolyStyle * poly
Definition: KML_Style.h:23
KML_Style::list
void * list
Definition: KML_Style.h:25
KML_PolyStyle::DeepEcho
void DeepEcho()
Definition: KML_PolyStyle.cpp:49
KML_StyleSelector::Read
void Read(FILE *fid, char *kstr)
Definition: KML_StyleSelector.cpp:63
KML_LineStyle::Write
void Write(FILE *fid, const char *indent)
Definition: KML_LineStyle.cpp:66
KML_StyleSelector::Write
void Write(FILE *fid, const char *indent)
Definition: KML_StyleSelector.cpp:56
KML_StyleSelector::DeepEcho
void DeepEcho()
Definition: KML_StyleSelector.cpp:40
KML_Object::AddCommnt
virtual void AddCommnt(int ncom, char **pcom)
Definition: KML_Object.cpp:301
KML_Object::WriteCommnt
virtual void WriteCommnt(FILE *fid, const char *indent)
Definition: KML_Object.cpp:326
KML_StyleSelector::Echo
void Echo()
Definition: KML_StyleSelector.cpp:33