/* $Id$ This program 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, 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., Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. xfwm4 - (c) 2002-2008 Olivier Fourdan */ #ifndef INC_TABWIN_H #define INC_TABWIN_H #ifdef HAVE_CONFIG_H #include "config.h" #endif #include #include #include typedef struct _Tabwin Tabwin; struct _Tabwin { /* The below must be freed when destroying */ GtkWidget *window; GList *head; /* these don't have to be */ GtkWidget *class; GtkWidget *label; GtkWidget *container; GList *current; gulong selected_callback; gboolean display_workspace; int grid_cols; int grid_rows; }; Tabwin *tabwinCreate (GdkScreen *, Client *, Client *, unsigned int, gboolean); Client *tabwinGetSelected (Tabwin *); Client *tabwinSelectNext (Tabwin *); Client *tabwinSelectPrev (Tabwin *); Client *tabwinGetHead (Tabwin *); Client *tabwinRemoveClient (Tabwin *, Client *); void tabwinDestroy (Tabwin *); #endif /* INC_TABWIN_H */