aboutsummaryrefslogtreecommitdiff
path: root/Graph.h
diff options
context:
space:
mode:
authorDimitri Sokolyuk <demon@dim13.org>2014-09-20 00:16:30 +0000
committerDimitri Sokolyuk <demon@dim13.org>2014-09-20 00:16:30 +0000
commit22751b71809fca1bf028adcfb4157b0ffd84543a (patch)
tree1da4372e9395974f1e89002ccf6665f861f7c14f /Graph.h
initial import of demomonitor example
Diffstat (limited to 'Graph.h')
-rw-r--r--Graph.h22
1 files changed, 22 insertions, 0 deletions
diff --git a/Graph.h b/Graph.h
new file mode 100644
index 0000000..d4da9b2
--- /dev/null
+++ b/Graph.h
@@ -0,0 +1,22 @@
+#ifndef _Graph_h
+#define _Graph_h
+
+// #include <X11/Intrinsic.h>
+
+#define XtNnumEntries "numEntries"
+#define XtCNumEntries "NumEntries"
+#define XtNlabels "labels"
+#define XtCLabels "Labels"
+#define XtNvalues "values"
+#define XtCValues "Values"
+#define XtNmaxValue "maxValue"
+#define XtCMaxValue "MaxValue"
+#define XtNscale "scale"
+#define XtCScale "Scale"
+
+extern WidgetClass graphWidgetClass;
+
+typedef struct _GraphRec *GraphWidget;
+typedef struct _GraphClassRec *GraphWidgetClass;
+
+#endif