File: general.h

package info (click to toggle)
diasce 1.0.5-1.1
  • links: PTS
  • area: main
  • in suites: sarge
  • size: 2,964 kB
  • ctags: 1,732
  • sloc: ansic: 26,805; sh: 2,999; makefile: 399; yacc: 318
file content (116 lines) | stat: -rw-r--r-- 2,792 bytes parent folder | download
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
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
/*
 * DiaSCE is a code editor for C and C++.
 * Copyright (C) 2000  Ander Lozano Prez
 *
 * 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.
 *
 * Ander Lozano Prez
 * c/Juan de Gardeazabal 4, 1 D
 * 48004 Bilbao
 * Vizcaya
 * Spain
 *
 * ander1@wanadoo.es
 */

#include "main.h"

//*******************************************************************
#define PRIMER_PROYECTO_RECIENTE	8
//*******************************************************************

enum e_ayuda {GTK,XML,GLIB,ORBIT,GNOME,GNOMEUI,GNORBA};

struct s_ejecutables {
	gboolean which;
	gboolean gcc;
	gboolean gdb;
	gboolean glade;
	gboolean ddd;
	gboolean memprof;
	gboolean make;
	gboolean aclocal;
	gboolean automake;
	gboolean autoconf;
	gboolean autoheader;
	gboolean ctags;
	gboolean lpr;
	gboolean grep;
	gboolean glib_config;
	gboolean gtk_config;
	gboolean xml_config;
	gboolean gnome_config;
	gboolean audiofile_config;
	gboolean esd_config;
	gboolean imlib_config;
	gboolean gnome_terminal;
} ejecutables;

gboolean separador_recientes;

gchar *prefix_automake;

//*******************************************************************

void gen_salir(void);

void gen_cerrar_ventana(GtkWidget *widget);

void gen_anadir(GtkWidget *widget);

guint gen_comando(gchar *comando,gchar *mensaje);

void gen_nuevo(GtkWidget *widget);

guint gen_tipo_archivo(gchar *nombre);

void gen_ayuda(enum e_ayuda ayuda);

void gen_eliminar(void);

void gen_cargar_proyecto(void);

void gen_recargar(void);

void gen_limpiar(void);

void gen_crear_proyecto(GtkWidget *widget);

void gen_abrir_proyecto(gchar *nombre);

void gen_mensajes_stderr(gchar *mensaje);

void gen_mensajes_stdout(gchar *mensaje);

void gen_limpiar_mensajes(void);

gboolean gen_existe_fichero(gchar *nombre);

void gen_anular_funciones(void);

void gen_ultimos_proyectos (void);

void gen_recent_project_open (GtkMenuItem     *menuitem,
                                        gpointer         user_data);

gboolean gen_es_salida_grep(gchar *salida);

GtkWidget *gen_create_perdidas_ventana (void);

void gen_refrescar(void);

void gen_hijo_muerto(void);

void gen_localizar_automake(void);