Added rollback capplet, compile disabled by default
2001-01-24 Bradford Hovinen <hovinen@ximian.com> Added rollback capplet, compile disabled by default
This commit is contained in:
parent
c294afced9
commit
4f9a20c63e
8 changed files with 1632 additions and 0 deletions
61
capplets/rollback/rollback-widget.h
Normal file
61
capplets/rollback/rollback-widget.h
Normal file
|
@ -0,0 +1,61 @@
|
|||
/* -*- mode: c; style: linux -*- */
|
||||
|
||||
/* rollback-widget.h
|
||||
* Copyright (C) 2000-2001 Ximian, Inc.
|
||||
*
|
||||
* Written by Bradford Hovinen <hovinen@ximian.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
|
||||
|
||||
#ifdef HAVE_LIBARCHIVER
|
||||
|
||||
#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;
|
||||
|
||||
struct _RollbackWidget
|
||||
{
|
||||
GtkWidget parent;
|
||||
|
||||
RollbackWidgetPrivate *p;
|
||||
};
|
||||
|
||||
struct _RollbackWidgetClass
|
||||
{
|
||||
GtkWidgetClass gtk_widget_class;
|
||||
};
|
||||
|
||||
guint rollback_widget_get_type (void);
|
||||
|
||||
GtkObject *rollback_widget_new (void);
|
||||
|
||||
END_GNOME_DECLS
|
||||
|
||||
#endif /* HAVE_LIBARCHIVER */
|
||||
|
||||
#endif /* __ROLLBACK_WIDGET_H */
|
Loading…
Add table
Add a link
Reference in a new issue