/* BuGLe: an OpenGL debugging tool * Copyright (C) 2004-2006 Bruce Merry * * 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; version 2. * * 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 */ /* State pane. Note that non-GUI state handling is in gldb-common.c */ #ifndef BUGLE_GLDB_GLDB_GUI_STATE_H #define BUGLE_GLDB_GLDB_GUI_STATE_H #if HAVE_CONFIG_H # include #endif #include #include #include "gldb-gui.h" typedef struct _GldbStatePane GldbStatePane; typedef struct _GldbStatePaneClass GldbStatePaneClass; #define GLDB_STATE_PANE_TYPE (gldb_state_pane_get_type()) #define GLDB_STATE_PANE(obj) (G_TYPE_CHECK_INSTANCE_CAST((obj), GLDB_STATE_PANE_TYPE, GldbStatePane)) #define GLDB_STATE_PANE_CLASS(klass) (G_TYPE_CHECK_CLASS_CAST((klass), GLDB_STATE_PANE_TYPE, GldbStatePaneClass)) #define GLDB_IS_STATE_PANE(obj) (G_TYPE_CHECK_INSTANCE_TYPE((obj), GLDB_STATE_PANE_TYPE)) #define GLDB_IS_STATE_PANE_CLASS(obj) (G_TYPE_CHECK_CLASS_TYPE((obj), GLDB_STATE_PANE_TYPE)) #define GLDB_STATE_PANE_GET_CLASS(obj) (G_TYPE_INSTANCE_GET_CLASS((obj), GLDB_STATE_PANE_TYPE, GldbStatePaneClass)) GType gldb_state_pane_get_type(void); GldbPane *gldb_state_pane_new(void); #endif /* !BUGLE_GLDB_GLDB_GUI_STATE_H */