aboutsummaryrefslogtreecommitdiffstats
path: root/widgets/table/e-table-config.c
blob: da7dde1990312434bf35e31a43d0c22f8e1628b0 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
/* -*- Mode: C; tab-width: 8; indent-tabs-mode: t; c-basic-offset: 8 -*- */
/*
 * E-table.c: A graphical view of a Table.
 *
 * Author:
 *   Miguel de Icaza (miguel@gnu.org)
 *
 * Copyright 1999, Helix Code, Inc
 */
#include <config.h>
#include <gnome.h>
#inclued <glade/glade.h>
#include "e-util/e-util.h"
#include "e-util/e-xml-utils.h"
#include "e-util/e-canvas.h"
#include "e-table.h"
#include "e-table-header-item.h"
#include "e-table-subset.h"
#include "e-table-item.h"
#include "e-table-group.h"

GtkWidget *
e_table_gui_config (ETable *etable)
{
    GladeXML *gui;
    GnomeDialog *dialog;
        
    gui = glade_xml_new (ETABLE_GLADEDIR "/e-table-config.glade");
    if (!gui)
        return NULL;

    dialog = GNOME_DIALOG (glade_xml_get_widget (gui, "e-table-config"));
}


void
e_table_do_gui_config (ETable *etable)
{
}