[449af72] | 1 | #include "owl.h" |
---|
| 2 | |
---|
| 3 | #include <assert.h> |
---|
| 4 | |
---|
| 5 | struct _owl_window { /*noproto*/ |
---|
[053f751] | 6 | GObject object; |
---|
[449af72] | 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; |
---|
[50031f0] | 14 | int shown : 1; |
---|
[449af72] | 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 | |
---|
[7a6e6c7] | 23 | enum { |
---|
| 24 | REDRAW, |
---|
| 25 | RESIZED, |
---|
| 26 | LAST_SIGNAL |
---|
| 27 | }; |
---|
| 28 | |
---|
| 29 | static guint window_signals[LAST_SIGNAL] = { 0 }; |
---|
| 30 | |
---|
[053f751] | 31 | static void owl_window_dispose(GObject *gobject); |
---|
| 32 | static void owl_window_finalize(GObject *gobject); |
---|
| 33 | |
---|
[449af72] | 34 | static owl_window *_owl_window_new(owl_window *parent, int nlines, int ncols, int begin_y, int begin_x); |
---|
| 35 | |
---|
| 36 | static void _owl_window_link(owl_window *w, owl_window *parent); |
---|
| 37 | |
---|
| 38 | static void _owl_window_create_curses(owl_window *w); |
---|
| 39 | static void _owl_window_destroy_curses(owl_window *w); |
---|
| 40 | |
---|
[46e2e56] | 41 | static void _owl_window_realize(owl_window *w); |
---|
| 42 | static void _owl_window_unrealize(owl_window *w); |
---|
[449af72] | 43 | |
---|
[84a4aca] | 44 | static owl_window *cursor_owner; |
---|
[f70a7a3] | 45 | static owl_window *default_cursor; |
---|
[84a4aca] | 46 | |
---|
[053f751] | 47 | G_DEFINE_TYPE (OwlWindow, owl_window, G_TYPE_OBJECT) |
---|
| 48 | |
---|
| 49 | static void owl_window_class_init (OwlWindowClass *klass) |
---|
| 50 | { |
---|
[7a6e6c7] | 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 | |
---|
[f91767d] | 57 | klass->redraw = NULL; |
---|
[7a6e6c7] | 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); |
---|
[053f751] | 84 | } |
---|
| 85 | |
---|
| 86 | static 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 | |
---|
| 105 | static 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 | |
---|
| 117 | static void owl_window_init (owl_window *w) |
---|
| 118 | { |
---|
| 119 | } |
---|
| 120 | |
---|
[449af72] | 121 | /** singletons **/ |
---|
| 122 | |
---|
| 123 | static 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 | |
---|
| 132 | owl_window *owl_window_get_screen(void) |
---|
| 133 | { |
---|
| 134 | static owl_window *screen = NULL; |
---|
| 135 | if (!screen) { |
---|
[50031f0] | 136 | /* The screen is magical. It's 'shown', but the only mean of it going |
---|
[449af72] | 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; |
---|
[402ed3d3] | 140 | owl_window_show(screen); |
---|
[449af72] | 141 | } |
---|
| 142 | return screen; |
---|
| 143 | } |
---|
| 144 | |
---|
| 145 | /** Creation and Destruction **/ |
---|
| 146 | |
---|
[d106110] | 147 | owl_window *owl_window_new(owl_window *parent) |
---|
[449af72] | 148 | { |
---|
| 149 | if (!parent) |
---|
| 150 | parent = owl_window_get_screen(); |
---|
[d106110] | 151 | return _owl_window_new(parent, 0, 0, 0, 0); |
---|
[449af72] | 152 | } |
---|
| 153 | |
---|
| 154 | static owl_window *_owl_window_new(owl_window *parent, int nlines, int ncols, int begin_y, int begin_x) |
---|
| 155 | { |
---|
| 156 | owl_window *w; |
---|
| 157 | |
---|
[053f751] | 158 | w = g_object_new (OWL_TYPE_WINDOW, NULL); |
---|
| 159 | if (w == NULL) g_error("Failed to create owl_window instance"); |
---|
[449af72] | 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 | |
---|
[3da1f4f] | 177 | void owl_window_unlink(owl_window *w) |
---|
[449af72] | 178 | { |
---|
[ec4ccfc] | 179 | /* make sure the window is unmapped first */ |
---|
[46e2e56] | 180 | _owl_window_unrealize(w); |
---|
[449af72] | 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; |
---|
[933aa7d] | 189 | w->parent = NULL; |
---|
[053f751] | 190 | g_object_unref (w); |
---|
[449af72] | 191 | } |
---|
| 192 | } |
---|
| 193 | |
---|
| 194 | static void _owl_window_link(owl_window *w, owl_window *parent) |
---|
| 195 | { |
---|
| 196 | if (w->parent == parent) |
---|
| 197 | return; |
---|
| 198 | |
---|
[933aa7d] | 199 | owl_window_unlink(w); |
---|
[449af72] | 200 | if (parent) { |
---|
[933aa7d] | 201 | w->parent = parent; |
---|
[449af72] | 202 | w->next = parent->child; |
---|
| 203 | parent->child = w; |
---|
[053f751] | 204 | g_object_ref (w); |
---|
[449af72] | 205 | } |
---|
| 206 | } |
---|
| 207 | |
---|
| 208 | /* mimic g_list_foreach for consistency */ |
---|
| 209 | void 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 | |
---|
[b6cb985] | 219 | owl_window *owl_window_get_parent(owl_window *w) |
---|
| 220 | { |
---|
| 221 | return w->parent; |
---|
| 222 | } |
---|
| 223 | |
---|
[449af72] | 224 | /** Internal window management **/ |
---|
| 225 | |
---|
| 226 | static void _owl_window_create_curses(owl_window *w) |
---|
| 227 | { |
---|
| 228 | if (w->is_screen) { |
---|
| 229 | resizeterm(w->nlines, w->ncols); |
---|
[2dfccc7] | 230 | w->win = stdscr; |
---|
[449af72] | 231 | } else { |
---|
[aab7af1] | 232 | /* Explicitly disallow realizing an unlinked non-root */ |
---|
[fe49685] | 233 | if (w->parent == NULL || w->parent->win == NULL) |
---|
| 234 | return; |
---|
[aab7af1] | 235 | if (w->pan) { |
---|
| 236 | w->win = newwin(w->nlines, w->ncols, w->begin_y, w->begin_x); |
---|
| 237 | replace_panel(w->pan, w->win); |
---|
| 238 | } else { |
---|
| 239 | w->win = derwin(w->parent->win, w->nlines, w->ncols, w->begin_y, w->begin_x); |
---|
| 240 | } |
---|
[449af72] | 241 | } |
---|
| 242 | } |
---|
| 243 | |
---|
| 244 | static void _owl_window_destroy_curses(owl_window *w) |
---|
| 245 | { |
---|
| 246 | if (w->is_screen) { |
---|
| 247 | /* don't deallocate the dummy */ |
---|
| 248 | w->win = NULL; |
---|
| 249 | } else { |
---|
| 250 | if (w->pan) { |
---|
| 251 | /* panels assume their windows always exist, so we put in a fake one */ |
---|
| 252 | replace_panel(w->pan, _dummy_window()); |
---|
| 253 | } |
---|
| 254 | if (w->win) { |
---|
| 255 | /* and destroy our own window */ |
---|
| 256 | delwin(w->win); |
---|
| 257 | w->win = NULL; |
---|
| 258 | } |
---|
| 259 | } |
---|
| 260 | } |
---|
| 261 | |
---|
[402ed3d3] | 262 | void owl_window_show(owl_window *w) |
---|
[449af72] | 263 | { |
---|
[50031f0] | 264 | w->shown = 1; |
---|
[46e2e56] | 265 | _owl_window_realize(w); |
---|
[449af72] | 266 | if (w->pan) |
---|
| 267 | show_panel(w->pan); |
---|
[402ed3d3] | 268 | } |
---|
| 269 | |
---|
| 270 | void owl_window_show_all(owl_window *w) |
---|
| 271 | { |
---|
| 272 | owl_window_show(w); |
---|
[7a70e26] | 273 | owl_window_children_foreach(w, (GFunc)owl_window_show, 0); |
---|
[449af72] | 274 | } |
---|
| 275 | |
---|
[50031f0] | 276 | void owl_window_hide(owl_window *w) |
---|
[449af72] | 277 | { |
---|
| 278 | /* you can't unmap the screen */ |
---|
| 279 | if (w->is_screen) |
---|
| 280 | return; |
---|
[50031f0] | 281 | w->shown = 0; |
---|
[449af72] | 282 | if (w->pan) |
---|
| 283 | hide_panel(w->pan); |
---|
[46e2e56] | 284 | _owl_window_unrealize(w); |
---|
[449af72] | 285 | } |
---|
| 286 | |
---|
[50031f0] | 287 | int owl_window_is_shown(owl_window *w) |
---|
[449af72] | 288 | { |
---|
[50031f0] | 289 | return w->shown; |
---|
[449af72] | 290 | } |
---|
| 291 | |
---|
[ce7c6c3] | 292 | int owl_window_is_realized(owl_window *w) |
---|
[449af72] | 293 | { |
---|
| 294 | return w->win != NULL; |
---|
| 295 | } |
---|
| 296 | |
---|
| 297 | int owl_window_is_toplevel(owl_window *w) |
---|
| 298 | { |
---|
| 299 | return w->pan != NULL; |
---|
| 300 | } |
---|
| 301 | |
---|
[46e2e56] | 302 | static void _owl_window_realize(owl_window *w) |
---|
[449af72] | 303 | { |
---|
| 304 | /* check if we can create a window */ |
---|
| 305 | if ((w->parent && w->parent->win == NULL) |
---|
[50031f0] | 306 | || !w->shown |
---|
[449af72] | 307 | || w->win != NULL) |
---|
| 308 | return; |
---|
[f041595] | 309 | if (w->nlines <= 0 || w->ncols <= 0) |
---|
| 310 | return; |
---|
[449af72] | 311 | _owl_window_create_curses(w); |
---|
[fe49685] | 312 | if (w->win == NULL) |
---|
| 313 | return; |
---|
[449af72] | 314 | /* schedule a repaint */ |
---|
| 315 | owl_window_dirty(w); |
---|
[fe49685] | 316 | /* map the children */ |
---|
[7a70e26] | 317 | owl_window_children_foreach(w, (GFunc)_owl_window_realize, 0); |
---|
[449af72] | 318 | } |
---|
| 319 | |
---|
[46e2e56] | 320 | static void _owl_window_unrealize(owl_window *w) |
---|
[449af72] | 321 | { |
---|
| 322 | if (w->win == NULL) |
---|
| 323 | return; |
---|
| 324 | /* unmap all the children */ |
---|
[7a70e26] | 325 | owl_window_children_foreach(w, (GFunc)_owl_window_unrealize, 0); |
---|
[449af72] | 326 | _owl_window_destroy_curses(w); |
---|
[cb5a9f3] | 327 | w->dirty = w->dirty_subtree = 0; |
---|
[449af72] | 328 | /* subwins leave a mess in the parent; dirty it */ |
---|
| 329 | if (w->parent) |
---|
| 330 | owl_window_dirty(w->parent); |
---|
| 331 | } |
---|
| 332 | |
---|
| 333 | /** Painting and book-keeping **/ |
---|
| 334 | |
---|
[84a4aca] | 335 | void owl_window_set_cursor(owl_window *w) |
---|
| 336 | { |
---|
[cc36f27] | 337 | if (cursor_owner) |
---|
| 338 | g_object_remove_weak_pointer(G_OBJECT(cursor_owner), (gpointer*) &cursor_owner); |
---|
[84a4aca] | 339 | cursor_owner = w; |
---|
[f70a7a3] | 340 | if (w) |
---|
| 341 | g_object_add_weak_pointer(G_OBJECT(w), (gpointer*) &cursor_owner); |
---|
[a5a9572] | 342 | owl_global_set_needrefresh(&g); |
---|
[84a4aca] | 343 | } |
---|
| 344 | |
---|
[f70a7a3] | 345 | void owl_window_set_default_cursor(owl_window *w) |
---|
| 346 | { |
---|
| 347 | if (default_cursor) |
---|
| 348 | g_object_remove_weak_pointer(G_OBJECT(default_cursor), (gpointer*) &default_cursor); |
---|
| 349 | default_cursor = w; |
---|
| 350 | if (w) |
---|
| 351 | g_object_add_weak_pointer(G_OBJECT(w), (gpointer*) &default_cursor); |
---|
| 352 | owl_global_set_needrefresh(&g); |
---|
| 353 | } |
---|
| 354 | |
---|
| 355 | static owl_window *_get_cursor(void) |
---|
| 356 | { |
---|
| 357 | if (cursor_owner && owl_window_is_realized(cursor_owner)) |
---|
| 358 | return cursor_owner; |
---|
| 359 | if (default_cursor && owl_window_is_realized(default_cursor)) |
---|
| 360 | return default_cursor; |
---|
| 361 | return owl_window_get_screen(); |
---|
| 362 | } |
---|
| 363 | |
---|
[449af72] | 364 | void owl_window_dirty(owl_window *w) |
---|
| 365 | { |
---|
| 366 | /* don't put the screen on this list; pointless */ |
---|
| 367 | if (w->is_screen) |
---|
| 368 | return; |
---|
[7cbef8c] | 369 | if (!owl_window_is_realized(w)) |
---|
| 370 | return; |
---|
[449af72] | 371 | if (!w->dirty) { |
---|
| 372 | w->dirty = 1; |
---|
| 373 | while (w && !w->dirty_subtree) { |
---|
| 374 | w->dirty_subtree = 1; |
---|
| 375 | w = w->parent; |
---|
| 376 | } |
---|
| 377 | owl_global_set_needrefresh(&g); |
---|
| 378 | } |
---|
| 379 | } |
---|
| 380 | |
---|
| 381 | void owl_window_dirty_children(owl_window *w) |
---|
| 382 | { |
---|
[7a70e26] | 383 | owl_window_children_foreach(w, (GFunc)owl_window_dirty, 0); |
---|
[449af72] | 384 | } |
---|
| 385 | |
---|
| 386 | static void _owl_window_redraw(owl_window *w) |
---|
| 387 | { |
---|
| 388 | if (!w->dirty) return; |
---|
[7a6e6c7] | 389 | if (w->win) { |
---|
[f91767d] | 390 | if (!owl_window_is_toplevel(w)) { |
---|
| 391 | /* If a subwin, we might have gotten random touched lines from wsyncup or |
---|
| 392 | * past drawing. That information is useless, so we discard it all */ |
---|
| 393 | untouchwin(w->win); |
---|
| 394 | } |
---|
[7a6e6c7] | 395 | g_signal_emit(w, window_signals[REDRAW], 0, w->win); |
---|
[f91767d] | 396 | wsyncup(w->win); |
---|
[449af72] | 397 | } |
---|
| 398 | w->dirty = 0; |
---|
| 399 | } |
---|
| 400 | |
---|
| 401 | static void _owl_window_redraw_subtree(owl_window *w) |
---|
| 402 | { |
---|
| 403 | if (!w->dirty_subtree) |
---|
| 404 | return; |
---|
| 405 | _owl_window_redraw(w); |
---|
[7a70e26] | 406 | owl_window_children_foreach(w, (GFunc)_owl_window_redraw_subtree, 0); |
---|
[449af72] | 407 | } |
---|
| 408 | |
---|
| 409 | /* |
---|
| 410 | Redraw all the windows with scheduled redraws. |
---|
| 411 | NOTE: This function shouldn't be called outside the event loop |
---|
| 412 | */ |
---|
| 413 | void owl_window_redraw_scheduled(void) |
---|
| 414 | { |
---|
[f70a7a3] | 415 | owl_window *cursor; |
---|
| 416 | |
---|
[449af72] | 417 | _owl_window_redraw_subtree(owl_window_get_screen()); |
---|
[a57f87a] | 418 | update_panels(); |
---|
[f70a7a3] | 419 | cursor = _get_cursor(); |
---|
| 420 | if (cursor && cursor->win) { |
---|
[f91767d] | 421 | /* untouch it to avoid drawing; window should be clean now, but we must |
---|
| 422 | * clean up in case there was junk left over on a subwin (cleaning up after |
---|
| 423 | * subwin drawing isn't sufficient because a wsyncup messes up subwin |
---|
| 424 | * ancestors */ |
---|
[f70a7a3] | 425 | untouchwin(cursor->win); |
---|
| 426 | wnoutrefresh(cursor->win); |
---|
[f91767d] | 427 | } |
---|
[7a6e6c7] | 428 | } |
---|
| 429 | |
---|
[449af72] | 430 | /** Window position **/ |
---|
| 431 | |
---|
| 432 | void owl_window_get_position(owl_window *w, int *nlines, int *ncols, int *begin_y, int *begin_x) |
---|
| 433 | { |
---|
| 434 | if (nlines) *nlines = w->nlines; |
---|
| 435 | if (ncols) *ncols = w->ncols; |
---|
| 436 | if (begin_y) *begin_y = w->begin_y; |
---|
| 437 | if (begin_x) *begin_x = w->begin_x; |
---|
| 438 | } |
---|
| 439 | |
---|
[b0cbde4] | 440 | void owl_window_move(owl_window *w, int begin_y, int begin_x) |
---|
| 441 | { |
---|
[d15ea5f] | 442 | owl_window_set_position(w, w->nlines, w->ncols, begin_y, begin_x); |
---|
| 443 | #if 0 |
---|
| 444 | /* This routine tries to move a window efficiently, but begy and begx are |
---|
| 445 | * then wrong. Currently, this only effects the wnoutrefresh to move cursor. |
---|
| 446 | * TODO: fix that and reinstate this code if it's worth the trouble */ |
---|
[6b93305] | 447 | if (w->is_screen) return; /* can't move the screen */ |
---|
| 448 | if (w->begin_y == begin_y && w->begin_x == begin_x) return; |
---|
[b0cbde4] | 449 | |
---|
| 450 | w->begin_y = begin_y; |
---|
| 451 | w->begin_x = begin_x; |
---|
[50031f0] | 452 | if (w->shown) { |
---|
| 453 | /* Window is shown, we must try to have a window at the end */ |
---|
[b0cbde4] | 454 | if (w->win) { |
---|
| 455 | /* We actually do have a window; let's move it */ |
---|
| 456 | if (w->pan) { |
---|
| 457 | if (move_panel(w->pan, begin_y, begin_x) == OK) |
---|
| 458 | return; |
---|
| 459 | } else { |
---|
| 460 | if (mvderwin(w->win, begin_y, begin_x) == OK) { |
---|
| 461 | /* now both we and the parent are dirty */ |
---|
| 462 | owl_window_dirty(w->parent); |
---|
| 463 | owl_window_dirty(w); |
---|
| 464 | return; |
---|
| 465 | } |
---|
| 466 | } |
---|
| 467 | } |
---|
| 468 | /* We don't have a window or failed to move it. Fine. Brute force. */ |
---|
[46e2e56] | 469 | _owl_window_unrealize(w); |
---|
| 470 | _owl_window_realize(w); |
---|
[b0cbde4] | 471 | } |
---|
[d15ea5f] | 472 | #endif |
---|
[b0cbde4] | 473 | } |
---|
| 474 | |
---|
[449af72] | 475 | void owl_window_set_position(owl_window *w, int nlines, int ncols, int begin_y, int begin_x) |
---|
| 476 | { |
---|
[840032d] | 477 | int resized; |
---|
[449af72] | 478 | /* can't move the screen */ |
---|
| 479 | if (w->is_screen) { |
---|
| 480 | begin_y = begin_x = 0; |
---|
| 481 | } |
---|
| 482 | |
---|
[d15ea5f] | 483 | if (w->nlines == nlines && w->ncols == ncols |
---|
| 484 | && w->begin_y == begin_y && w->begin_x == begin_x) { |
---|
[449af72] | 485 | return; |
---|
| 486 | } |
---|
[840032d] | 487 | resized = w->nlines != nlines || w->ncols != ncols; |
---|
[449af72] | 488 | |
---|
[d15ea5f] | 489 | _owl_window_unrealize(w); |
---|
[678a505c] | 490 | w->begin_y = begin_y; |
---|
| 491 | w->begin_x = begin_x; |
---|
| 492 | w->nlines = nlines; |
---|
| 493 | w->ncols = ncols; |
---|
[840032d] | 494 | if (resized) |
---|
| 495 | g_signal_emit(w, window_signals[RESIZED], 0); |
---|
[50031f0] | 496 | if (w->shown) { |
---|
[d15ea5f] | 497 | /* ncurses is screwy: give up and recreate windows at the right place */ |
---|
[46e2e56] | 498 | _owl_window_realize(w); |
---|
[449af72] | 499 | } |
---|
| 500 | } |
---|
| 501 | |
---|
| 502 | void owl_window_resize(owl_window *w, int nlines, int ncols) |
---|
| 503 | { |
---|
| 504 | owl_window_set_position(w, nlines, ncols, w->begin_y, w->begin_x); |
---|
| 505 | } |
---|