Mercurial > pidgin
view finch/libgnt/gnt-skel.h @ 17989:1bccb9641ef3
Add a new WM, irssi. Put the wm's in $(libdir)/gnt instead of in /finch.
The features of the irssi WM include:
1. Buddylist and conversation windows are borderless and full height of the screen.
2. Conversation windows will have (full-screen-width - buddylist-width) width
- It's possible to auto-resize the conversation windows when the buddylist
is closed/opened/resized to keep this always true. But resizing the textview
in conversation window is rather costly, especially when there's a lot of text
in the scrollback. So it's not done yet.
3. All the other windows are always centered.
author | Sadrul Habib Chowdhury <imadil@gmail.com> |
---|---|
date | Sat, 02 Jun 2007 03:49:53 +0000 |
parents | f00f2e283ffb |
children | 8410511f4dbb |
line wrap: on
line source
#ifndef GNT_SKEL_H #define GNT_SKEL_H #include "gntwidget.h" #include "gnt.h" #include "gntcolors.h" #include "gntkeys.h" #define GNT_TYPE_SKEL (gnt_skel_get_gtype()) #define GNT_SKEL(obj) (G_TYPE_CHECK_INSTANCE_CAST((obj), GNT_TYPE_SKEL, GntSkel)) #define GNT_SKEL_CLASS(klass) (G_TYPE_CHECK_CLASS_CAST((klass), GNT_TYPE_SKEL, GntSkelClass)) #define GNT_IS_SKEL(obj) (G_TYPE_CHECK_INSTANCE_TYPE((obj), GNT_TYPE_SKEL)) #define GNT_IS_SKEL_CLASS(klass) (G_TYPE_CHECK_CLASS_TYPE((klass), GNT_TYPE_SKEL)) #define GNT_SKEL_GET_CLASS(obj) (G_TYPE_INSTANCE_GET_CLASS((obj), GNT_TYPE_SKEL, GntSkelClass)) #define GNT_SKEL_FLAGS(obj) (GNT_SKEL(obj)->priv.flags) #define GNT_SKEL_SET_FLAGS(obj, flags) (GNT_SKEL_FLAGS(obj) |= flags) #define GNT_SKEL_UNSET_FLAGS(obj, flags) (GNT_SKEL_FLAGS(obj) &= ~(flags)) typedef struct _GntSkel GntSkel; typedef struct _GntSkelPriv GntSkelPriv; typedef struct _GntSkelClass GntSkelClass; struct _GntSkel { GntWidget parent; }; struct _GntSkelClass { GntWidgetClass parent; void (*gnt_reserved1)(void); void (*gnt_reserved2)(void); void (*gnt_reserved3)(void); void (*gnt_reserved4)(void); }; G_BEGIN_DECLS GType gnt_skel_get_gtype(void); GntWidget *gnt_skel_new(); G_END_DECLS #endif /* GNT_SKEL_H */