Mercurial > pidgin
diff finch/libgnt/gntws.h @ 19174:974f9298814c
propagate from branch 'im.pidgin.pidgin.2.1.0' (head 1b855097a1f8ddde513bda1e81761c8d8455f931)
to branch 'im.pidgin.soc.2007.finchfeat' (head 547aba29502f4db0b429e29c831c88b06270862e)
author | Sadrul Habib Chowdhury <imadil@gmail.com> |
---|---|
date | Sat, 11 Aug 2007 02:38:56 +0000 |
parents | 5e1412f4e67a |
children | 44b4e8bd759b |
line wrap: on
line diff
--- a/finch/libgnt/gntws.h Sat Aug 11 02:38:23 2007 +0000 +++ b/finch/libgnt/gntws.h Sat Aug 11 02:38:56 2007 +0000 @@ -1,3 +1,29 @@ +/** + * @file gntws.h Workspace API + * @ingroup gnt + */ +/* + * GNT - The GLib Ncurses Toolkit + * + * GNT is the legal property of its developers, whose names are too numerous + * to list here. Please refer to the COPYRIGHT file distributed with this + * source distribution. + * + * This library is free software; you can redistribute it and/or modify + * it under the terms of the GNU General Public License as published by + * the Free Software Foundation; either version 2 of the License, or + * (at your option) any later version. + * + * This program is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + * GNU General Public License for more details. + * + * You should have received a copy of the GNU General Public License + * along with this program; if not, write to the Free Software + * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA + */ + #ifndef GNTWS_H #define GNTWS_H @@ -46,14 +72,14 @@ GType gnt_ws_get_gtype(void); GntWS *gnt_ws_new(const char *name); -void gnt_ws_set_name(GntWS *, const gchar *); -void gnt_ws_add_widget(GntWS *, GntWidget *); -void gnt_ws_remove_widget(GntWS *, GntWidget *); -void gnt_ws_widget_hide(GntWidget *, GHashTable *nodes); -void gnt_ws_widget_show(GntWidget *, GHashTable *nodes); -void gnt_ws_draw_taskbar(GntWS *, gboolean reposition); -void gnt_ws_hide(GntWS *, GHashTable *); -void gnt_ws_show(GntWS *, GHashTable *); +void gnt_ws_set_name(GntWS *ws, const gchar *name); +void gnt_ws_add_widget(GntWS *ws, GntWidget *widget); +void gnt_ws_remove_widget(GntWS *ws, GntWidget *widget); +void gnt_ws_widget_hide(GntWidget *widget, GHashTable *nodes); +void gnt_ws_widget_show(GntWidget *widget, GHashTable *nodes); +void gnt_ws_draw_taskbar(GntWS *ws, gboolean reposition); +void gnt_ws_hide(GntWS *ws, GHashTable *table); +void gnt_ws_show(GntWS *ws, GHashTable *table); const char * gnt_ws_get_name(GntWS *ws);