summaryrefslogtreecommitdiff
path: root/Xaw3d-1.6.1-3Dlabel.patch
blob: 0feb7aa4afb458299b9a17c72a3a266990edcf1c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
diff -up libXaw3d-1.6.1/src/Label.c.3Dlabel libXaw3d-1.6.1/src/Label.c
--- libXaw3d-1.6.1/src/Label.c.3Dlabel	2011-09-19 15:42:36.000000000 -0600
+++ libXaw3d-1.6.1/src/Label.c	2012-02-25 14:44:33.766774776 -0700
@@ -416,9 +416,16 @@ GetgrayGC(LabelWidget lw)
 static void
 compute_bitmap_offsets (LabelWidget lw)
 {
-    if (lw->label.lbm_height != 0)
-	lw->label.lbm_y = (lw->core.height - lw->label.lbm_height) / 2;
-    else
+    /*
+     * bitmap will be eventually be displayed at 
+     * (internal_width, internal_height + lbm_y)
+     */
+    if (lw->label.lbm_height != 0) {
+	lw->label.lbm_y = (lw->core.height -
+			   (lw->threeD.shadow_width * 2 +
+			    lw->label.internal_height * 2 +
+			    lw->label.lbm_height)) / 2;
+    } else
 	lw->label.lbm_y = 0;
 }
 
@@ -444,9 +451,11 @@ Initialize(Widget request, Widget new, A
 {
     LabelWidget lw = (LabelWidget) new;
 
+#if 0
     /* disable shadows if we're not a subclass of Command */
     if (!XtIsSubclass(new, commandWidgetClass))
 	lw->threeD.shadow_width = 0;
+#endif
 
     if (lw->label.label == NULL)
         lw->label.label = XtNewString(lw->core.name);
@@ -460,18 +469,20 @@ Initialize(Widget request, Widget new, A
 
     if (lw->core.height == 0)
 	lw->core.height = lw->label.label_height +
-				2 * lw->label.internal_height;
+			  2 * lw->label.internal_height +
+			  2 * lw->threeD.shadow_width;
 
     set_bitmap_info(lw);  /* req's core.height, sets label.lbm_* */
 
     if (lw->label.lbm_height > lw->label.label_height)
 	lw->core.height = lw->label.lbm_height +
-				2 * lw->label.internal_height;
+			  2 * lw->label.internal_height;
 
     if (lw->core.width == 0)
         lw->core.width = lw->label.label_width +
-				2 * lw->label.internal_width +
-				LEFT_OFFSET(lw);  /* req's label.lbm_width */
+			 2 * lw->label.internal_width +
+			 2 * lw->threeD.shadow_width +
+			 LEFT_OFFSET(lw);	/* req's label.lbm_width */
 
     lw->label.label_x = lw->label.label_y = 0;
     (*XtClass(new)->core_class.resize) ((Widget)lw);
@@ -549,14 +560,16 @@ Redisplay(Widget gw, XEvent *event, Regi
 	    if (w->label.depth == 1)
 		XCopyPlane(XtDisplay(gw), pm, XtWindow(gw), gc, 0, 0,
 			   w->label.lbm_width, w->label.lbm_height,
-			   (int) w->label.internal_width,
-			   (int) w->label.lbm_y,
+			   (int) w->label.internal_width + w->threeD.shadow_width,
+			   (int) w->label.internal_height + w->threeD.shadow_width
+				 + w->label.lbm_y,
 			   (unsigned long) 1L);
 	    else
 		XCopyArea(XtDisplay(gw), pm, XtWindow(gw), gc, 0, 0,
 			  w->label.lbm_width, w->label.lbm_height,
-			  (int) w->label.internal_width,
-			  (int) w->label.lbm_y);
+			  (int) w->label.internal_width + w->threeD.shadow_width,
+			  (int) w->label.internal_height + w->threeD.shadow_width
+				+ w->label.lbm_y);
 	}
 
 #ifdef XAW_INTERNATIONALIZATION
@@ -646,14 +659,17 @@ _Reposition(LabelWidget lw, Dimension wi
             Position *dx, Position *dy)
 {
     Position newPos;
-    Position leftedge = lw->label.internal_width + LEFT_OFFSET(lw);
+    Position leftedge = lw->label.internal_width + LEFT_OFFSET(lw) +
+			lw->threeD.shadow_width;
+
 
     switch (lw->label.justify) {
 	case XtJustifyLeft:
 	    newPos = leftedge;
 	    break;
 	case XtJustifyRight:
-	    newPos = width - lw->label.label_width - lw->label.internal_width;
+	    newPos = width - (lw->label.label_width + lw->label.internal_width +
+			      lw->threeD.shadow_width);
 	    break;
 	case XtJustifyCenter:
 	default:
@@ -745,17 +761,20 @@ SetValues(Widget current, Widget request
     if (newlw->label.resize && was_resized) {
 	if (curlw->core.height == reqlw->core.height && !checks[HEIGHT])
 	    newlw->core.height = newlw->label.label_height +
-				2 * newlw->label.internal_height;
+				 2 * newlw->label.internal_height +
+				 2 * newlw->threeD.shadow_width;
 
 	set_bitmap_info (newlw);  /* req's core.height, sets label.lbm_* */
 
 	if (newlw->label.lbm_height > newlw->label.label_height)
 	    newlw->core.height = newlw->label.lbm_height +
-					2 * newlw->label.internal_height;
+				 2 * newlw->label.internal_height +
+				 2 * newlw->threeD.shadow_width;
 
 	if (curlw->core.width == reqlw->core.width && !checks[WIDTH])
 	    newlw->core.width = newlw->label.label_width +
 				2 * newlw->label.internal_width +
+				2 * newlw->threeD.shadow_width +
 				LEFT_OFFSET(newlw);  /* req's label.lbm_width */
     }
 
@@ -764,15 +783,20 @@ SetValues(Widget current, Widget request
 	if (checks[HEIGHT]) {
 	    if (newlw->label.label_height > newlw->label.lbm_height)
 		i = newlw->label.label_height +
-			2 * newlw->label.internal_height;
+		    2 * newlw->label.internal_height +
+		    2 * newlw->threeD.shadow_width;
 	    else
-		i = newlw->label.lbm_height + 2 * newlw->label.internal_height;
+		i = newlw->label.lbm_height +
+		    2 * newlw->label.internal_height +
+		    2 * newlw->threeD.shadow_width;
 	    if (i > newlw->core.height)
 		newlw->core.height = i;
 	}
 	if (checks[WIDTH]) {
-	    i = newlw->label.label_width + 2 * newlw->label.internal_width +
-			LEFT_OFFSET(newlw);  /* req's label.lbm_width */
+	    i = newlw->label.label_width +
+		2 * newlw->label.internal_width +
+		2 * newlw->threeD.shadow_width +
+		LEFT_OFFSET(newlw);		    /* req's label.lbm_width */
 	    if (i > newlw->core.width)
 		newlw->core.width = i;
 	}
@@ -843,9 +867,11 @@ QueryGeometry(Widget w, XtWidgetGeometry
     preferred->request_mode = CWWidth | CWHeight;
     preferred->width = (lw->label.label_width +
 			    2 * lw->label.internal_width +
+			    2 * lw->threeD.shadow_width +
 			    LEFT_OFFSET(lw));
     preferred->height = lw->label.label_height +
-			    2 * lw->label.internal_height;
+			    2 * lw->label.internal_height +
+			    2 * lw->threeD.shadow_width;
     if (  ((intended->request_mode & (CWWidth | CWHeight))
 	   	== (CWWidth | CWHeight)) &&
 	  intended->width == preferred->width &&