comparison finch/libgnt/gntwindow.h @ 21161:e119edfc0fb0

applied changes from 172a59b41412c4630834d66f2e7ec3be970cc36b through 365b126365cc18309aea7f8eef0e9b2a19e6bda8 And others.
author Sadrul Habib Chowdhury <imadil@gmail.com>
date Wed, 07 Nov 2007 14:07:52 +0000
parents bddf964880cf
children 6de09629f091
comparison
equal deleted inserted replaced
21160:45e550db32ab 21161:e119edfc0fb0
75 75
76 #define gnt_vwindow_new(homo) gnt_window_box_new(homo, TRUE) 76 #define gnt_vwindow_new(homo) gnt_window_box_new(homo, TRUE)
77 #define gnt_hwindow_new(homo) gnt_window_box_new(homo, FALSE) 77 #define gnt_hwindow_new(homo) gnt_window_box_new(homo, FALSE)
78 78
79 /** 79 /**
80 * 80 * Create a new window.
81 * 81 *
82 * @return 82 * @return The newly created window.
83 */ 83 */
84 GntWidget * gnt_window_new(void); 84 GntWidget * gnt_window_new(void);
85 85
86 /** 86 /**
87 * 87 * Create a new window.
88 * @param homo
89 * @param vert
90 * 88 *
91 * @return 89 * @param homo @c TRUE if the widgets inside the window should have the same dimensions.
90 * @param vert @c TRUE if the widgets inside the window should be stacked vertically.
91 *
92 * @return The newly created window.
92 */ 93 */
93 GntWidget * gnt_window_box_new(gboolean homo, gboolean vert); 94 GntWidget * gnt_window_box_new(gboolean homo, gboolean vert);
94 95
95 /** 96 /**
96 * 97 * Set the menu for a window.
97 * @param window 98 *
98 * @param menu 99 * @param window The window.
100 * @param menu The menu for the window.
99 */ 101 */
100 void gnt_window_set_menu(GntWindow *window, GntMenu *menu); 102 void gnt_window_set_menu(GntWindow *window, GntMenu *menu);
101 103
102 void gnt_window_workspace_hiding(GntWindow *); 104 void gnt_window_workspace_hiding(GntWindow *);
103 void gnt_window_workspace_showing(GntWindow *); 105 void gnt_window_workspace_showing(GntWindow *);