2002-04-11 jacob berkman <jacob@ximian.com> * (various files): fix improper use of guint as GType
69 lines
1.9 KiB
C
69 lines
1.9 KiB
C
/* -*- mode: c; style: linux -*- */
|
|
|
|
/* rollback-widget.h
|
|
* Copyright (C) 2000 Helix Code, Inc.
|
|
*
|
|
* Written by Bradford Hovinen <hovinen@helixcode.com>
|
|
*
|
|
* 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., 59 Temple Place - Suite 330, Boston, MA
|
|
* 02111-1307, USA.
|
|
*/
|
|
|
|
#ifndef __ROLLBACK_WIDGET_H
|
|
#define __ROLLBACK_WIDGET_H
|
|
|
|
#include <gnome.h>
|
|
|
|
|
|
BEGIN_GNOME_DECLS
|
|
|
|
#define ROLLBACK_WIDGET(obj) GTK_CHECK_CAST (obj, rollback_widget_get_type (), RollbackWidget)
|
|
#define ROLLBACK_WIDGET_CLASS(klass) GTK_CHECK_CLASS_CAST (klass, rollback_widget_get_type (), RollbackWidgetClass)
|
|
#define IS_ROLLBACK_WIDGET(obj) GTK_CHECK_TYPE (obj, rollback_widget_get_type ())
|
|
|
|
typedef struct _RollbackWidget RollbackWidget;
|
|
typedef struct _RollbackWidgetClass RollbackWidgetClass;
|
|
typedef struct _RollbackWidgetPrivate RollbackWidgetPrivate;
|
|
|
|
enum {
|
|
BACKGROUND_COLOR,
|
|
MARKER_COLOR,
|
|
ARROW_COLOR,
|
|
LAST_COLOR
|
|
};
|
|
|
|
struct _RollbackWidget
|
|
{
|
|
GnomeCanvas parent;
|
|
|
|
RollbackWidgetPrivate *p;
|
|
|
|
GdkColor control_colors[LAST_COLOR];
|
|
};
|
|
|
|
struct _RollbackWidgetClass
|
|
{
|
|
GnomeCanvasClass gnome_canvas_class;
|
|
};
|
|
|
|
GType rollback_widget_get_type (void);
|
|
|
|
GtkObject *rollback_widget_new (void);
|
|
|
|
GdkGC *rollback_widget_get_gc (RollbackWidget *widget);
|
|
|
|
END_GNOME_DECLS
|
|
|
|
#endif /* __ROLLBACK_WIDGET_H */
|