source: window.c @ 438409f

release-1.10release-1.7release-1.8release-1.9
Last change on this file since 438409f was 438409f, checked in by David Benjamin <davidben@mit.edu>, 14 years ago
Don't forget to unset dirty_subtree after redrawing it
  • Property mode set to 100644
File size: 12.3 KB
Line 
1#include "owl.h"
2
3#include <assert.h>
4
5struct _owl_window { /*noproto*/
6  GObject object;
7  /* hierarchy information */
8  owl_window *parent;
9  owl_window *child;
10  owl_window *next, *prev;
11  /* flags */
12  int dirty : 1;
13  int dirty_subtree : 1;
14  int shown : 1;
15  int is_screen : 1;
16  /* window information */
17  WINDOW *win;
18  PANEL *pan;
19  int nlines, ncols;
20  int begin_y, begin_x;
21};
22
23enum {
24  REDRAW,
25  RESIZED,
26  LAST_SIGNAL
27};
28
29static guint window_signals[LAST_SIGNAL] = { 0 };
30
31static void owl_window_dispose(GObject *gobject);
32static void owl_window_finalize(GObject *gobject);
33
34static owl_window *_owl_window_new(owl_window *parent, int nlines, int ncols, int begin_y, int begin_x);
35
36static void _owl_window_link(owl_window *w, owl_window *parent);
37
38static void _owl_window_create_curses(owl_window *w);
39static void _owl_window_destroy_curses(owl_window *w);
40
41static void _owl_window_realize(owl_window *w);
42static void _owl_window_unrealize(owl_window *w);
43
44static owl_window *cursor_owner;
45static owl_window *default_cursor;
46
47G_DEFINE_TYPE (OwlWindow, owl_window, G_TYPE_OBJECT)
48
49static void owl_window_class_init (OwlWindowClass *klass)
50{
51  GObjectClass *gobject_class = G_OBJECT_CLASS (klass);
52
53  /* Set up the vtabl */
54  gobject_class->dispose = owl_window_dispose;
55  gobject_class->finalize = owl_window_finalize;
56
57  klass->redraw = NULL;
58  klass->resized = NULL;
59
60  /* Create the signals, remember IDs */
61  window_signals[REDRAW] =
62    g_signal_new("redraw",
63                 G_TYPE_FROM_CLASS(gobject_class),
64                 G_SIGNAL_RUN_CLEANUP,
65                 G_STRUCT_OFFSET(OwlWindowClass, redraw),
66                 NULL, NULL,
67                 g_cclosure_marshal_VOID__POINTER,
68                 G_TYPE_NONE,
69                 1,
70                 G_TYPE_POINTER, NULL);
71
72  /* TODO: maybe type should be VOID__INT_INT_INT_INT; will need to generate a
73   * marshaller */
74  window_signals[RESIZED] =
75    g_signal_new("resized",
76                 G_TYPE_FROM_CLASS(gobject_class),
77                 G_SIGNAL_RUN_FIRST,
78                 G_STRUCT_OFFSET(OwlWindowClass, resized),
79                 NULL, NULL,
80                 g_cclosure_marshal_VOID__VOID,
81                 G_TYPE_NONE,
82                 0,
83                 NULL);
84}
85
86static void owl_window_dispose (GObject *object)
87{
88  owl_window *w = OWL_WINDOW (object);
89
90  /* Unmap the window */
91  owl_window_hide (w);
92
93  /* Unlink and unref all children */
94  while (w->child) {
95    owl_window *child = w->child;
96    owl_window_unlink (child);
97  }
98
99  /* Remove from hierarchy */
100  owl_window_unlink (w);
101
102  G_OBJECT_CLASS (owl_window_parent_class)->dispose (object);
103}
104
105static void owl_window_finalize (GObject *object)
106{
107  owl_window *w = OWL_WINDOW(object);
108
109  if (w->pan) {
110    del_panel(w->pan);
111    w->pan = NULL;
112  }
113
114  G_OBJECT_CLASS (owl_window_parent_class)->finalize (object);
115}
116
117static void owl_window_init (owl_window *w)
118{
119}
120
121/** singletons **/
122
123static WINDOW *_dummy_window(void)
124{
125  static WINDOW *dummy = NULL;
126  if (!dummy) {
127    dummy = newwin(1, 1, 0, 0);
128  }
129  return dummy;
130}
131
132owl_window *owl_window_get_screen(void)
133{
134  static owl_window *screen = NULL;
135  if (!screen) {
136    /* The screen is magical. It's 'shown', but the only mean of it going
137     * invisible is if we're tore down curses (i.e. screen resize) */
138    screen = _owl_window_new(NULL, g.lines, g.cols, 0, 0);
139    screen->is_screen = 1;
140    owl_window_show(screen);
141  }
142  return screen;
143}
144
145/** Creation and Destruction **/
146
147owl_window *owl_window_new(owl_window *parent)
148{
149  if (!parent)
150    parent = owl_window_get_screen();
151  return _owl_window_new(parent, 0, 0, 0, 0);
152}
153
154static owl_window *_owl_window_new(owl_window *parent, int nlines, int ncols, int begin_y, int begin_x)
155{
156  owl_window *w;
157
158  w = g_object_new (OWL_TYPE_WINDOW, NULL);
159  if (w == NULL) g_error("Failed to create owl_window instance");
160
161  w->nlines = nlines;
162  w->ncols = ncols;
163  w->begin_y = begin_y;
164  w->begin_x = begin_x;
165
166  _owl_window_link(w, parent);
167  if (parent && parent->is_screen) {
168    w->pan = new_panel(_dummy_window());
169    set_panel_userptr(w->pan, w);
170  }
171
172  return w;
173}
174
175/** Hierarchy **/
176
177void owl_window_unlink(owl_window *w)
178{
179  /* make sure the window is unmapped first */
180  _owl_window_unrealize(w);
181  /* unlink parent/child information */
182  if (w->parent) {
183    if (w->prev)
184      w->prev->next = w->next;
185    if (w->next)
186      w->next->prev = w->prev;
187    if (w->parent->child == w)
188      w->parent->child = w->next;
189    w->parent = NULL;
190    g_object_unref (w);
191  }
192}
193
194static void _owl_window_link(owl_window *w, owl_window *parent)
195{
196  if (w->parent == parent)
197    return;
198
199  owl_window_unlink(w);
200  if (parent) {
201    w->parent = parent;
202    w->next = parent->child;
203    parent->child = w;
204    g_object_ref (w);
205  }
206}
207
208/* mimic g_list_foreach for consistency */
209void owl_window_children_foreach(owl_window *parent, GFunc func, gpointer user_data)
210{
211  owl_window *w;
212  for (w = parent->child;
213       w != NULL;
214       w = w->next) {
215    func(w, user_data);
216  }
217}
218
219gboolean owl_window_has_children(owl_window *parent)
220{
221  return parent->child != NULL;
222}
223
224int owl_window_num_children(owl_window *parent)
225{
226  owl_window *w;
227  int num = 0;
228  for (w = parent->child;
229       w != NULL;
230       w = w->next) {
231    num++;
232  }
233  return num;
234}
235
236owl_window *owl_window_get_parent(owl_window *w)
237{
238  return w->parent;
239}
240
241/** Internal window management **/
242
243static void _owl_window_create_curses(owl_window *w)
244{
245  if (w->is_screen) {
246    resizeterm(w->nlines, w->ncols);
247    w->win = stdscr;
248  } else {
249    /* Explicitly disallow realizing an unlinked non-root */
250    if (w->parent == NULL || w->parent->win == NULL)
251      return;
252    if (w->pan) {
253      w->win = newwin(w->nlines, w->ncols, w->begin_y, w->begin_x);
254      replace_panel(w->pan, w->win);
255    } else {
256      w->win = derwin(w->parent->win, w->nlines, w->ncols, w->begin_y, w->begin_x);
257    }
258  }
259}
260
261static void _owl_window_destroy_curses(owl_window *w)
262{
263  if (w->is_screen) {
264    /* don't deallocate the dummy */
265    w->win = NULL;
266  } else {
267    if (w->pan) {
268      /* panels assume their windows always exist, so we put in a fake one */
269      replace_panel(w->pan, _dummy_window());
270    }
271    if (w->win) {
272      /* and destroy our own window */
273      delwin(w->win);
274      w->win = NULL;
275    }
276  }
277}
278
279void owl_window_show(owl_window *w)
280{
281  w->shown = 1;
282  _owl_window_realize(w);
283  if (w->pan)
284    show_panel(w->pan);
285}
286
287void owl_window_show_all(owl_window *w)
288{
289  owl_window_show(w);
290  owl_window_children_foreach(w, (GFunc)owl_window_show, 0);
291}
292
293void owl_window_hide(owl_window *w)
294{
295  /* you can't unmap the screen */
296  if (w->is_screen)
297    return;
298  w->shown = 0;
299  if (w->pan)
300    hide_panel(w->pan);
301  _owl_window_unrealize(w);
302}
303
304int owl_window_is_shown(owl_window *w)
305{
306  return w->shown;
307}
308
309int owl_window_is_realized(owl_window *w)
310{
311  return w->win != NULL;
312}
313
314int owl_window_is_toplevel(owl_window *w)
315{
316  return w->pan != NULL;
317}
318
319static void _owl_window_realize(owl_window *w)
320{
321  /* check if we can create a window */
322  if ((w->parent && w->parent->win == NULL)
323      || !w->shown
324      || w->win != NULL)
325    return;
326  if (w->nlines <= 0 || w->ncols <= 0)
327    return;
328  _owl_window_create_curses(w);
329  if (w->win == NULL)
330    return;
331  /* schedule a repaint */
332  owl_window_dirty(w);
333  /* map the children */
334  owl_window_children_foreach(w, (GFunc)_owl_window_realize, 0);
335}
336
337static void _owl_window_unrealize(owl_window *w)
338{
339  if (w->win == NULL)
340    return;
341  /* unmap all the children */
342  owl_window_children_foreach(w, (GFunc)_owl_window_unrealize, 0);
343  _owl_window_destroy_curses(w);
344  w->dirty = w->dirty_subtree = 0;
345  /* subwins leave a mess in the parent; dirty it */
346  if (w->parent)
347    owl_window_dirty(w->parent);
348}
349
350/** Painting and book-keeping **/
351
352void owl_window_set_cursor(owl_window *w)
353{
354  if (cursor_owner)
355    g_object_remove_weak_pointer(G_OBJECT(cursor_owner), (gpointer*) &cursor_owner);
356  cursor_owner = w;
357  if (w)
358    g_object_add_weak_pointer(G_OBJECT(w), (gpointer*) &cursor_owner);
359  owl_global_set_needrefresh(&g);
360}
361
362void owl_window_set_default_cursor(owl_window *w)
363{
364  if (default_cursor)
365    g_object_remove_weak_pointer(G_OBJECT(default_cursor), (gpointer*) &default_cursor);
366  default_cursor = w;
367  if (w)
368    g_object_add_weak_pointer(G_OBJECT(w), (gpointer*) &default_cursor);
369  owl_global_set_needrefresh(&g);
370}
371
372static owl_window *_get_cursor(void)
373{
374  if (cursor_owner && owl_window_is_realized(cursor_owner))
375    return cursor_owner;
376  if (default_cursor && owl_window_is_realized(default_cursor))
377    return default_cursor;
378  return owl_window_get_screen();
379}
380
381void owl_window_dirty(owl_window *w)
382{
383  /* don't put the screen on this list; pointless */
384  if (w->is_screen)
385    return;
386  if (!owl_window_is_realized(w))
387    return;
388  if (!w->dirty) {
389    w->dirty = 1;
390    while (w && !w->dirty_subtree) {
391      w->dirty_subtree = 1;
392      w = w->parent;
393    }
394    owl_global_set_needrefresh(&g);
395  }
396}
397
398void owl_window_dirty_children(owl_window *w)
399{
400  owl_window_children_foreach(w, (GFunc)owl_window_dirty, 0);
401}
402
403static void _owl_window_redraw(owl_window *w)
404{
405  if (!w->dirty) return;
406  if (w->win) {
407    if (!owl_window_is_toplevel(w)) {
408      /* If a subwin, we might have gotten random touched lines from wsyncup or
409       * past drawing. That information is useless, so we discard it all */
410      untouchwin(w->win);
411    }
412    g_signal_emit(w, window_signals[REDRAW], 0, w->win);
413    wsyncup(w->win);
414  }
415  w->dirty = 0;
416}
417
418static void _owl_window_redraw_subtree(owl_window *w)
419{
420  if (!w->dirty_subtree)
421    return;
422  _owl_window_redraw(w);
423  owl_window_children_foreach(w, (GFunc)_owl_window_redraw_subtree, 0);
424  w->dirty_subtree = 0;
425}
426
427/*
428Redraw all the windows with scheduled redraws.
429NOTE: This function shouldn't be called outside the event loop
430*/
431void owl_window_redraw_scheduled(void)
432{
433  owl_window *cursor;
434
435  _owl_window_redraw_subtree(owl_window_get_screen());
436  update_panels();
437  cursor = _get_cursor();
438  if (cursor && cursor->win) {
439    /* untouch it to avoid drawing; window should be clean now, but we must
440     * clean up in case there was junk left over on a subwin (cleaning up after
441     * subwin drawing isn't sufficient because a wsyncup messes up subwin
442     * ancestors */
443    untouchwin(cursor->win);
444    wnoutrefresh(cursor->win);
445  }
446}
447
448/** Window position **/
449
450void owl_window_get_position(owl_window *w, int *nlines, int *ncols, int *begin_y, int *begin_x)
451{
452  if (nlines)  *nlines  = w->nlines;
453  if (ncols)   *ncols   = w->ncols;
454  if (begin_y) *begin_y = w->begin_y;
455  if (begin_x) *begin_x = w->begin_x;
456}
457
458void owl_window_move(owl_window *w, int begin_y, int begin_x)
459{
460  owl_window_set_position(w, w->nlines, w->ncols, begin_y, begin_x);
461#if 0
462  /* This routine tries to move a window efficiently, but begy and begx are
463   * then wrong. Currently, this only effects the wnoutrefresh to move cursor.
464   * TODO: fix that and reinstate this code if it's worth the trouble */
465  if (w->is_screen) return; /* can't move the screen */
466  if (w->begin_y == begin_y && w->begin_x == begin_x) return;
467
468  w->begin_y = begin_y;
469  w->begin_x = begin_x;
470  if (w->shown) {
471    /* Window is shown, we must try to have a window at the end */
472    if (w->win) {
473      /* We actually do have a window; let's move it */
474      if (w->pan) {
475        if (move_panel(w->pan, begin_y, begin_x) == OK)
476          return;
477      } else {
478        if (mvderwin(w->win, begin_y, begin_x) == OK) {
479          /* now both we and the parent are dirty */
480          owl_window_dirty(w->parent);
481          owl_window_dirty(w);
482          return;
483        }
484      }
485    }
486    /* We don't have a window or failed to move it. Fine. Brute force. */
487    _owl_window_unrealize(w);
488    _owl_window_realize(w);
489  }
490#endif
491}
492
493void owl_window_set_position(owl_window *w, int nlines, int ncols, int begin_y, int begin_x)
494{
495  int resized;
496  /* can't move the screen */
497  if (w->is_screen) {
498    begin_y = begin_x = 0;
499  }
500
501  if (w->nlines == nlines && w->ncols == ncols
502      && w->begin_y == begin_y && w->begin_x == begin_x) {
503    return;
504  }
505  resized = w->nlines != nlines || w->ncols != ncols;
506
507  _owl_window_unrealize(w);
508  w->begin_y = begin_y;
509  w->begin_x = begin_x;
510  w->nlines = nlines;
511  w->ncols = ncols;
512  if (resized)
513    g_signal_emit(w, window_signals[RESIZED], 0);
514  if (w->shown) {
515    /* ncurses is screwy: give up and recreate windows at the right place */
516    _owl_window_realize(w);
517  }
518}
519
520void owl_window_resize(owl_window *w, int nlines, int ncols)
521{
522  owl_window_set_position(w, nlines, ncols, w->begin_y, w->begin_x);
523}
Note: See TracBrowser for help on using the repository browser.