summaryrefslogtreecommitdiffstats
path: root/src/bltGraph.h
diff options
context:
space:
mode:
authorjoye <joye>2014-06-27 18:18:19 (GMT)
committerjoye <joye>2014-06-27 18:18:19 (GMT)
commit6608d626098f2df532c7423fc0043a51864d18ec (patch)
tree88b69f7bf923cd252dfd9287d04a5aac2dcca420 /src/bltGraph.h
parent27a7bebf981ccfc6551238f3ae97321995513409 (diff)
downloadblt-6608d626098f2df532c7423fc0043a51864d18ec.zip
blt-6608d626098f2df532c7423fc0043a51864d18ec.tar.gz
blt-6608d626098f2df532c7423fc0043a51864d18ec.tar.bz2
*** empty log message ***
Diffstat (limited to 'src/bltGraph.h')
-rw-r--r--src/bltGraph.h24
1 files changed, 12 insertions, 12 deletions
diff --git a/src/bltGraph.h b/src/bltGraph.h
index 8a1de1b..d13c890 100644
--- a/src/bltGraph.h
+++ b/src/bltGraph.h
@@ -46,8 +46,6 @@ class Axis;
class Element;
class Legend;
class Pen;
-class Postscript;
-class PSOutput;
class Pick {
public:
@@ -55,7 +53,9 @@ class Pick {
};
namespace Blt {
-class Marker;
+ class Marker;
+ class Postscript;
+ class PSOutput;
};
typedef struct Ensemble {
@@ -150,7 +150,7 @@ class Graph : public Pick {
Legend* legend_;
Crosshairs* crosshairs_;
- Postscript* postscript_;
+ Blt::Postscript* postscript_;
int inset_;
short int titleX_;
@@ -180,7 +180,7 @@ class Graph : public Pick {
void layoutGraph();
void drawMargins(Drawable);
- void printMargins(PSOutput*);
+ void printMargins(Blt::PSOutput*);
int getMarginGeometry(Margin*);
void destroyPens();
@@ -190,14 +190,14 @@ class Graph : public Pick {
virtual void mapElements();
void drawElements(Drawable);
void drawActiveElements(Drawable);
- void printElements(PSOutput*);
- void printActiveElements(PSOutput*);
+ void printElements(Blt::PSOutput*);
+ void printActiveElements(Blt::PSOutput*);
void destroyMarkers();
void configureMarkers();
void mapMarkers();
void drawMarkers(Drawable, int);
- void printMarkers(PSOutput*, int);
+ void printMarkers(Blt::PSOutput*, int);
int createAxes();
void destroyAxes();
@@ -216,15 +216,15 @@ class Graph : public Pick {
void map();
void draw();
void eventuallyRedraw();
- int print(const char*, PSOutput*);
+ int print(const char*, Blt::PSOutput*);
void extents(Region2d*);
int invoke(const Ensemble*, int, int, Tcl_Obj* const []);
void reconfigure();
int createAxis(int, Tcl_Obj* const []);
- void printAxes(PSOutput*);
- void printAxesGrids(PSOutput*);
- void printAxesLimits(PSOutput*);
+ void printAxes(Blt::PSOutput*);
+ void printAxesGrids(Blt::PSOutput*);
+ void printAxesLimits(Blt::PSOutput*);
int getAxis(Tcl_Obj*, Axis**);
ClientData axisTag(const char*);
Point2d map2D(double, double, Axis*, Axis*);