diff options
author | joye <joye> | 2014-04-08 20:36:58 (GMT) |
---|---|---|
committer | joye <joye> | 2014-04-08 20:36:58 (GMT) |
commit | 3f1545dd5cb9770a763d87f95a1ea877ba5dc9a5 (patch) | |
tree | 29668942b3ad3730fa7a1390e3c66b9b8c9bc700 /src/bltGrLegd.h | |
parent | 44dad6bcb8780bec637ddbd47a3b4596fb9b528a (diff) | |
download | blt-3f1545dd5cb9770a763d87f95a1ea877ba5dc9a5.zip blt-3f1545dd5cb9770a763d87f95a1ea877ba5dc9a5.tar.gz blt-3f1545dd5cb9770a763d87f95a1ea877ba5dc9a5.tar.bz2 |
*** empty log message ***
Diffstat (limited to 'src/bltGrLegd.h')
-rw-r--r-- | src/bltGrLegd.h | 11 |
1 files changed, 8 insertions, 3 deletions
diff --git a/src/bltGrLegd.h b/src/bltGrLegd.h index a1cc276..e780a47 100644 --- a/src/bltGrLegd.h +++ b/src/bltGrLegd.h @@ -112,9 +112,10 @@ typedef struct { class Legend { public: - Graph* graphPtr; - Tk_OptionTable optionTable; - void* ops; + Graph* graphPtr_; + Tk_OptionTable optionTable_; + void* ops_; + unsigned int flags; int nEntries; int nColumns; @@ -151,6 +152,10 @@ class Legend { Blt_Chain selected; unsigned int titleWidth; unsigned int titleHeight; + + public: + Legend(); + virtual ~Legend(); }; extern int Blt_CreateLegend(Graph *graphPtr); |