summaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorjoye <joye>2014-05-30 21:16:38 (GMT)
committerjoye <joye>2014-05-30 21:16:38 (GMT)
commit29c03bcc9df76650f217afa91a739490a5e394bc (patch)
treedc15c42e2cc73e75299cf1997bb51d4e5b4e701e /src
parent9c010915d7554efbab609e106ee67d37837111dd (diff)
downloadblt-29c03bcc9df76650f217afa91a739490a5e394bc.zip
blt-29c03bcc9df76650f217afa91a739490a5e394bc.tar.gz
blt-29c03bcc9df76650f217afa91a739490a5e394bc.tar.bz2
*** empty log message ***
Diffstat (limited to 'src')
-rw-r--r--src/bltGrMisc.h3
-rw-r--r--src/bltGraph.h3
2 files changed, 3 insertions, 3 deletions
diff --git a/src/bltGrMisc.h b/src/bltGrMisc.h
index d666df5..851c55d 100644
--- a/src/bltGrMisc.h
+++ b/src/bltGrMisc.h
@@ -99,9 +99,6 @@ extern int Blt_GetXY(Tcl_Interp* interp, Tk_Window tkwin,
extern int Blt_PolyRectClip(Region2d *extsPtr, Point2d *inputPts,
int nInputPts, Point2d *outputPts);
extern int Blt_LineRectClip(Region2d *regionPtr, Point2d *p, Point2d *q);
-extern GC Blt_GetPrivateGC(Tk_Window tkwin, unsigned long gcMask,
- XGCValues *valuePtr);
-extern void Blt_FreePrivateGC(Display *display, GC gc);
extern Point2d Blt_GetProjection (int x, int y, Point2d *p, Point2d *q);
extern long Blt_MaxRequestSize (Display *display, size_t elemSize);
extern Graph *Blt_GetGraphFromWindowData(Tk_Window tkwin);
diff --git a/src/bltGraph.h b/src/bltGraph.h
index 1f233da..c23468a 100644
--- a/src/bltGraph.h
+++ b/src/bltGraph.h
@@ -245,6 +245,9 @@ class Graph {
void drawSegments(Drawable, GC, Segment2d*, int);
void printSegments(Blt_Ps, Segment2d*, int);
+ GC getPrivateGC(unsigned long, XGCValues*);
+ void freePrivateGC(GC);
+
void getTextExtents(Tk_Font, const char*, int, int*, int*);
void getBoundingBox(int, int, float, double*, double*, Point2d*);
Point2d anchorPoint(double, double, double, double, Tk_Anchor);