comparison console/libgnt/gntmain.c @ 14325:985e5e3f6f2c

[gaim-migrate @ 17020] Some distros put the ncursesw headers in ncursesw/, some don't. committer: Tailor Script <tailor@pidgin.im>
author Sadrul Habib Chowdhury <imadil@gmail.com>
date Thu, 24 Aug 2006 19:41:34 +0000
parents c8ddda5d8ec8
children b1b76fb9c739
comparison
equal deleted inserted replaced
14324:2d7086454b08 14325:985e5e3f6f2c
1 #ifdef HAVE_NCURSESW_INC
1 #include <ncursesw/panel.h> 2 #include <ncursesw/panel.h>
3 #else
4 #include <panel.h>
5 #endif
2 6
3 #include "gnt.h" 7 #include "gnt.h"
4 #include "gntbox.h" 8 #include "gntbox.h"
5 #include "gntcolors.h" 9 #include "gntcolors.h"
6 #include "gntkeys.h" 10 #include "gntkeys.h"
483 487
484 /** 488 /**
485 * Mouse support: 489 * Mouse support:
486 * - bring a window on top if you click on its taskbar 490 * - bring a window on top if you click on its taskbar
487 * - click on the top-bar of the active window and drag+drop to move a window 491 * - click on the top-bar of the active window and drag+drop to move a window
492 * - click on a window to bring it to focus
488 * wishlist: 493 * wishlist:
489 * - have a little [X] on the windows, and clicking it will close that window. 494 * - have a little [X] on the windows, and clicking it will close that window.
490 * - click on a window to bring it to focus
491 * - allow scrolling in tree/textview on wheel-scroll event 495 * - allow scrolling in tree/textview on wheel-scroll event
492 * - click to activate button or select a row in tree 496 * - click to activate button or select a row in tree
493 * - all these can be fulfilled by adding a "clicked" event for GntWidget 497 * - all these can be fulfilled by adding a "clicked" event for GntWidget
494 * which will send the (x,y) to the widget. (look at "key_pressed" for hints) 498 * which will send the (x,y) to the widget. (look at "key_pressed" for hints)
495 */ 499 */