committed by
Kristian Høgsberg
parent
850f504aa2
commit
a306a2691a
+10
-8
@@ -274,8 +274,16 @@ eventdemo_create(struct display *d)
|
|||||||
return NULL;
|
return NULL;
|
||||||
|
|
||||||
e->window = window_create(d);
|
e->window = window_create(d);
|
||||||
e->widget = frame_create(e->window, e);
|
|
||||||
window_set_title(e->window, title);
|
if (noborder) {
|
||||||
|
/* Demonstrate how to create a borderless window.
|
||||||
|
* Move windows with META + left mouse button.
|
||||||
|
*/
|
||||||
|
e->widget = window_add_widget(e->window, e);
|
||||||
|
} else {
|
||||||
|
e->widget = frame_create(e->window, e);
|
||||||
|
window_set_title(e->window, title);
|
||||||
|
}
|
||||||
e->display = d;
|
e->display = d;
|
||||||
|
|
||||||
/* The eventdemo window draws a red rectangle as a demonstration
|
/* The eventdemo window draws a red rectangle as a demonstration
|
||||||
@@ -309,12 +317,6 @@ eventdemo_create(struct display *d)
|
|||||||
/* Set the callback motion handler for the window */
|
/* Set the callback motion handler for the window */
|
||||||
widget_set_motion_handler(e->widget, motion_handler);
|
widget_set_motion_handler(e->widget, motion_handler);
|
||||||
|
|
||||||
/* Demonstrate how to create a borderless window.
|
|
||||||
Move windows with META + left mouse button.
|
|
||||||
*/
|
|
||||||
if (noborder) {
|
|
||||||
}
|
|
||||||
|
|
||||||
/* Initial drawing of the window */
|
/* Initial drawing of the window */
|
||||||
window_schedule_resize(e->window, width, height);
|
window_schedule_resize(e->window, width, height);
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user