]> granicus.if.org Git - graphviz/commitdiff
Declare static functions in glcompui.c only used locally;
authorerg <devnull@localhost>
Mon, 13 Sep 2010 22:25:25 +0000 (22:25 +0000)
committererg <devnull@localhost>
Mon, 13 Sep 2010 22:25:25 +0000 (22:25 +0000)
add declarations of real global functions to glcompui.h;
add include of glcompui.h to glutrender.c

cmd/smyrna/glutrender.c
cmd/smyrna/gui/glcompui.c
cmd/smyrna/gui/glcompui.h

index f51cca747a33b17897cd1d561e70117566227da3..f664b752347fd92a2fc5317ea200d1f9329dde3d 100644 (file)
@@ -19,8 +19,7 @@
 #include "arcball.h"
 #include "appmouse.h"
 #include "glexpose.h"
-
-
+#include "glcompui.h"
 
     /*call backs */
 
index 28ba7b1ba1b435c7041b791c4224ef38cf0af973..ba9b9cf7bd60798c3eeb8070906ca22d9ca611d5 100644 (file)
@@ -141,7 +141,7 @@ void switch2D3D(glCompObj *obj, GLfloat x, GLfloat y,
 }
 
 
-void CBglCompMouseUp(glCompObj *obj, GLfloat x, GLfloat y, glMouseButtonType t)
+static void CBglCompMouseUp(glCompObj *obj, GLfloat x, GLfloat y, glMouseButtonType t)
 {
     /* glCompMouse* m=&((glCompSet*)obj)->mouse; */
     sel->common.visible = 0;
@@ -150,7 +150,7 @@ void CBglCompMouseUp(glCompObj *obj, GLfloat x, GLfloat y, glMouseButtonType t)
 }
 
 
-void CBglCompMouseRightClick(glCompObj *obj, GLfloat x, GLfloat y,
+static void CBglCompMouseRightClick(glCompObj *obj, GLfloat x, GLfloat y,
                             glMouseButtonType t)
 {
     if (t == glMouseRightButton) 
@@ -160,15 +160,12 @@ void CBglCompMouseRightClick(glCompObj *obj, GLfloat x, GLfloat y,
     }
 }
 
-void attrList(glCompObj *obj, GLfloat x, GLfloat y, glMouseButtonType t)
+static void attrList(glCompObj *obj, GLfloat x, GLfloat y, glMouseButtonType t)
 {
        showAttrsWidget(view->Topview);
 }
 
-
-
-
-void glCompMouseMove(glCompObj *obj, GLfloat x, GLfloat y)
+static void glCompMouseMove(glCompObj *obj, GLfloat x, GLfloat y)
 {
     glCompMouse *m = &((glCompSet *) obj)->mouse;
 
@@ -184,7 +181,7 @@ void glCompMouseMove(glCompObj *obj, GLfloat x, GLfloat y)
        glexpose();
     }
 }
-void selectedges(glCompObj *obj, GLfloat x, GLfloat y)
+static void selectedges(glCompObj *obj, GLfloat x, GLfloat y)
 {
     if(view->Topview->sel.selectEdges==0)
        view->Topview->sel.selectEdges=1;
@@ -192,7 +189,7 @@ void selectedges(glCompObj *obj, GLfloat x, GLfloat y)
        view->Topview->sel.selectEdges=0;
 
 }
-void selectnodes(glCompObj *obj, GLfloat x, GLfloat y)
+static void selectnodes(glCompObj *obj, GLfloat x, GLfloat y)
 {
     if(view->Topview->sel.selectNodes==0)
        view->Topview->sel.selectNodes=1;
@@ -200,6 +197,7 @@ void selectnodes(glCompObj *obj, GLfloat x, GLfloat y)
        view->Topview->sel.selectNodes=0;
 }
 
+#if 0
 void testContainer(glCompSet *s)
 {
     glCompPanel* p;
@@ -217,7 +215,7 @@ void testContainer(glCompSet *s)
     p->common.anchor.top=10;
     p->common.anchor.right=10;
 }
-
+#endif
 
 
 glCompSet *glcreate_gl_topview_menu(void)
@@ -383,6 +381,7 @@ glCompSet *glcreate_gl_topview_menu(void)
 
 }
 
+#if 0
 int getIconsDirectory(char *bf)
 {
 #ifdef WIN32
@@ -396,3 +395,4 @@ int getIconsDirectory(char *bf)
     return 1;
 
 }
+#endif
index 449d1594725b1585983e655ce6004b9b5cce248c..1f1e8af969806f75ee05137a87a979c665ebf14e 100644 (file)
@@ -23,6 +23,11 @@ extern "C" {
 #endif
 
     extern glCompSet *glcreate_gl_topview_menu(void);
+    extern void switch2D3D(glCompObj *obj, GLfloat x, GLfloat y, glMouseButtonType t);
+    extern void menu_click_center(glCompObj *obj, GLfloat x, GLfloat y, glMouseButtonType t);
+    extern void menu_click_zoom_minus(glCompObj *obj, GLfloat x, GLfloat y, glMouseButtonType t);
+    extern void menu_click_zoom_plus(glCompObj *obj, GLfloat x, GLfloat y, glMouseButtonType t);
+    extern void menu_click_pan(glCompObj *obj, GLfloat x, GLfloat y, glMouseButtonType t);
 
 #ifdef __cplusplus
 }                              /* end extern "C" */