File: gap_vex_dialog.h

package info (click to toggle)
gimp-gap 2.6.0%2Bdfsg-1
  • links: PTS
  • area: main
  • in suites: squeeze
  • size: 19,656 kB
  • ctags: 7,358
  • sloc: ansic: 119,801; sh: 3,890; makefile: 932; lisp: 97; pascal: 55
file content (53 lines) | stat: -rw-r--r-- 1,532 bytes parent folder | download | duplicates (4)
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
42
43
44
45
46
47
48
49
50
51
52
53
/*
 * gap_vex_dialog.h
 * Video Extract GUI procedures
 */

/*
 * Changelog:
 * 2003/02/11 v1.2.1a:  hof  created
 */

/*
 * Copyright
 *
 * 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 GAP_VEX_DIALOG
#define GAP_VEX_DIALOG

#include "config.h"

/* SYTEM (UNIX) includes */ 
#include <stdio.h>
#include <stdlib.h>

/* GIMP includes */
#include "gtk/gtk.h"
#include "libgimp/gimp.h"


#include "gap_vex_main.h"

void       gap_vex_dlg_init_gpp (GapVexMainGlobalParams *gpp);
gint       gap_vex_dlg_overwrite_dialog(GapVexMainGlobalParams *gpp
                                       , gchar *filename
                                       , gint overwrite_mode
                                       );
GtkWidget* gap_vex_dlg_create_mw__main_window (GapVexMainGlobalParams *gpp);
void       gap_vex_dlg_main_dialog (GapVexMainGlobalParams *gpp);

#endif