| 114 gtk_widget_show(icon_i); |
114 gtk_widget_show(icon_i); |
| 115 |
115 |
| 116 gtk_widget_show(button_box); |
116 gtk_widget_show(button_box); |
| 117 |
117 |
| 118 gtk_container_add(GTK_CONTAINER(join), button_box); |
118 gtk_container_add(GTK_CONTAINER(join), button_box); |
| |
119 gtk_widget_set_usize(join, 75, 30); |
| 119 |
120 |
| 120 /* End of OK Button */ |
121 /* End of OK Button */ |
| 121 |
122 |
| 122 /* Build Cancel Button */ |
123 /* Build Cancel Button */ |
| 123 |
124 |
| 136 gtk_widget_show(icon_i); |
137 gtk_widget_show(icon_i); |
| 137 |
138 |
| 138 gtk_widget_show(button_box); |
139 gtk_widget_show(button_box); |
| 139 |
140 |
| 140 gtk_container_add(GTK_CONTAINER(cancel), button_box); |
141 gtk_container_add(GTK_CONTAINER(cancel), button_box); |
| |
142 |
| |
143 gtk_widget_set_usize(cancel, 75, 30); |
| 141 |
144 |
| 142 /* End of Cancel Button */ |
145 /* End of Cancel Button */ |
| 143 |
146 |
| 144 gtk_box_pack_start(GTK_BOX(bbox), join, FALSE, FALSE, 5); |
147 gtk_box_pack_start(GTK_BOX(bbox), join, FALSE, FALSE, 5); |
| 145 gtk_box_pack_end(GTK_BOX(bbox), cancel, FALSE, FALSE, 5); |
148 gtk_box_pack_end(GTK_BOX(bbox), cancel, FALSE, FALSE, 5); |