19 TString fOtherAttribs;
22 TString GetClass()
const {
return fClass; };
23 TString GetId()
const {
return fID; };
24 TString GetStyle()
const {
return fStyle; };
25 TString GetProperties()
const;
35 HtmlObject(TString
id, TString className, TString style);
40 void SetClass(TString className) { fClass = className; };
49 void SetId(TString
id) { fID = id; };
54 void SetStyle(TString style) { fStyle = style; };
60 void SetStringContent(TString content) { fContent = content; };
61 TString GetContent()
const {
return fContent; };
62 virtual void AddStringContent(TString text) { fContent = fContent + text; };
63 void AddAtrib(TString name, TString value);