mirror of https://github.com/GNOME/gimp.git
43 lines
1.3 KiB
C
43 lines
1.3 KiB
C
/* docindexif.h - Interface file for the docindex for gimp.
|
|
*
|
|
* Copyright (C) 1998 Chris Lahey.
|
|
*
|
|
* 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.
|
|
*/
|
|
|
|
#ifndef __DOCINDEXIF_H__
|
|
#define __DOCINDEXIF_H__
|
|
|
|
#include <stdio.h>
|
|
|
|
void open_or_raise (gchar *file_name);
|
|
void raise_if_match (gpointer data, gpointer user_data);
|
|
gboolean exit_from_go ();
|
|
void open_file_in_position (gchar *filename,
|
|
gint position);
|
|
GtkMenuFactory * create_idea_menu ();
|
|
GtkWidget * create_idea_toolbar ();
|
|
void clear_white (FILE *fp);
|
|
int getinteger (FILE *fp);
|
|
gchar * append2 (gchar *string1,
|
|
gboolean del1,
|
|
gchar *string2,
|
|
gboolean del2);
|
|
gint reset_usize (gpointer data);
|
|
|
|
struct bool_char_pair
|
|
{
|
|
gboolean boole;
|
|
gchar *string;
|
|
};
|
|
|
|
#endif /* __DOCINDEXIF_H__ */
|