/* Glimmer - insert.h * * 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. */ #ifndef _INSERT_H_ #define _INSERT_H_ #ifdef __cplusplus extern "C" { #endif #include "declarations.h" #include "widgets/gdsfile.h" #include "widgets/gnome-file-selector.h" #include "widgets/gnomeasciilist.h" #include "widgets/gnomeruncmd.h" void insert_date_time(GtkWidget *widget, gpointer data); void insert_username(GtkWidget *widget, gpointer data); void insert_name(GtkWidget *widget, gpointer data); void insert_email(GtkWidget *widget, gpointer data); void insert_gpl_notice(GtkWidget *widget, gpointer data); void insert_gpl_noticepp(GtkWidget *widget, gpointer data); void insert_gpl_noticepython(GtkWidget *widget, gpointer data); void insert_lgpl_notice(GtkWidget *widget, gpointer data); void insert_lgpl_noticepp(GtkWidget *widget, gpointer data); void insert_lgpl_noticepython(GtkWidget *widget, gpointer data); void insert_changelog_string(GtkWidget *widget, gpointer data); void insert_comment(GtkWidget *widget, gpointer data); void insert_commentpp(GtkWidget *widget, gpointer data); void insert_ascii_char_cb(GtkWidget *widget, gpointer data); void insert_file_cb(GtkWidget *widget, gpointer data); void insert_color_cb(GtkWidget *widget, gpointer data); void runcmd_cb(GtkWidget *widget, gpointer data); void indent_cb(GtkWidget *widget, gpointer data); #ifdef __cplusplus } #endif #endif