2004-04-07 Jeffrey Stedfast <fejj@ximian.com> * e-multi-config-dialog.c: Updated for changes to e-config-page.c (init): Removed the OK and Apply buttons. * e-config-page.c (e_config_page_apply): Removed. (e_config_page_is_applied): Removed. (e_config_page_changed): Removed. svn path=/trunk/; revision=25363
60 lines
1.5 KiB
C
60 lines
1.5 KiB
C
/* -*- Mode: C; indent-tabs-mode: t; c-basic-offset: 8; tab-width: 8 -*- */
|
|
/* e-config-page.c
|
|
*
|
|
* Copyright (C) 2002 Ximian, Inc.
|
|
*
|
|
* 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 of the
|
|
* License, 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.
|
|
*
|
|
* Author: Ettore Perazzoli <ettore@ximian.com>
|
|
*/
|
|
|
|
#ifdef HAVE_CONFIG_H
|
|
#include <config.h>
|
|
#endif
|
|
|
|
#include "e-config-page.h"
|
|
|
|
#include <gal/util/e-util.h>
|
|
|
|
#define PARENT_TYPE gtk_event_box_get_type ()
|
|
static GtkEventBoxClass *parent_class = NULL;
|
|
|
|
/* GObject methods. */
|
|
|
|
static void
|
|
class_init (EConfigPageClass *class)
|
|
{
|
|
GObjectClass *object_class;
|
|
|
|
object_class = G_OBJECT_CLASS (class);
|
|
|
|
parent_class = g_type_class_ref(PARENT_TYPE);
|
|
}
|
|
|
|
static void
|
|
init (EConfigPage *page, EConfigPageClass *klass)
|
|
{
|
|
;
|
|
}
|
|
|
|
GtkWidget *
|
|
e_config_page_new (void)
|
|
{
|
|
return gtk_type_new (e_config_page_get_type ());
|
|
}
|
|
|
|
E_MAKE_TYPE (e_config_page, "EConfigPage", EConfigPage, class_init, init, PARENT_TYPE)
|