00001 /* -*- Mode: C; tab-width: 4; indent-tabs-mode: t; c-basic-offset: 4 -*- */ 00002 /* 00003 list_data_types.h 00004 window allowing the user to manage his data types (add, remove, edit and 00005 eventually save them) 00006 00007 (C) Copyright 2005 - 2007 Olivier Delhomme 00008 e-mail : heraia@delhomme.org 00009 URL : http://heraia.tuxfamily.org 00010 00011 This program is free software; you can redistribute it and/or modify 00012 it under the terms of the GNU General Public License as published by 00013 the Free Software Foundation; either version 2, or (at your option) 00014 any later version. 00015 00016 This program is distributed in the hope that it will be useful, 00017 but WITHOUT ANY WARRANTY; without even the implied warranty of 00018 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 00019 GNU General Public License for more details. 00020 00021 You should have received a copy of the GNU General Public License 00022 along with this program; if not, write to the Free Software 00023 Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. */ 00024 00025 #ifndef _LIST_DATA_TYPES_H_ 00026 #define _LIST_DATA_TYPES_H_ 00027 00028 enum { 00029 LDT_TV_COLUMN_NAME, 00030 LDT_TV_N_COLUMNS 00031 }; 00032 00033 extern void on_ldt_menu_activate(GtkWidget *widget, gpointer data); 00034 extern void list_data_types_init_interface(heraia_window_t *main_window); 00035 extern void add_data_type_name_to_treeview(heraia_window_t *main_window, gchar *name); 00036 00037 #endif /* _LIST_DATA_TYPES_H_ */