autotools: Properly clean up hacking.html
[geany-mirror.git] / src / project.c
blob67090ce55d9a6374612ff6da9fdfef959ab1e00c
1 /*
2 * project.c - this file is part of Geany, a fast and lightweight IDE
4 * Copyright 2007-2012 Enrico Tröger <enrico(dot)troeger(at)uvena(dot)de>
5 * Copyright 2007-2012 Nick Treleaven <nick(dot)treleaven(at)btinternet(dot)com>
7 * This program is free software; you can redistribute it and/or modify
8 * it under the terms of the GNU General Public License as published by
9 * the Free Software Foundation; either version 2 of the License, or
10 * (at your option) any later version.
12 * This program is distributed in the hope that it will be useful,
13 * but WITHOUT ANY WARRANTY; without even the implied warranty of
14 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15 * GNU General Public License for more details.
17 * You should have received a copy of the GNU General Public License along
18 * with this program; if not, write to the Free Software Foundation, Inc.,
19 * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
22 /** @file project.h
23 * Project Management.
26 #ifdef HAVE_CONFIG_H
27 # include "config.h"
28 #endif
30 #include "project.h"
32 #include "app.h"
33 #include "build.h"
34 #include "dialogs.h"
35 #include "document.h"
36 #include "editor.h"
37 #include "filetypesprivate.h"
38 #include "geanyobject.h"
39 #include "keyfile.h"
40 #include "main.h"
41 #include "projectprivate.h"
42 #include "sidebar.h"
43 #include "stash.h"
44 #include "support.h"
45 #include "ui_utils.h"
46 #include "utils.h"
47 #include "win32.h"
49 #include <string.h>
50 #include <unistd.h>
51 #include <errno.h>
54 ProjectPrefs project_prefs = { NULL, FALSE, FALSE };
57 static GeanyProjectPrivate priv;
58 static GeanyIndentPrefs indentation;
60 static GSList *stash_groups = NULL;
62 static struct
64 gchar *project_file_path; /* in UTF-8 */
65 } local_prefs = { NULL };
67 /* simple struct to keep references to the elements of the properties dialog */
68 typedef struct _PropertyDialogElements
70 GtkWidget *dialog;
71 GtkWidget *notebook;
72 GtkWidget *name;
73 GtkWidget *description;
74 GtkWidget *file_name;
75 GtkWidget *base_path;
76 GtkWidget *patterns;
77 BuildTableData build_properties;
78 gint build_page_num;
79 gboolean entries_modified;
80 } PropertyDialogElements;
83 static gboolean update_config(const PropertyDialogElements *e, gboolean new_project);
84 static void on_file_save_button_clicked(GtkButton *button, PropertyDialogElements *e);
85 static gboolean load_config(const gchar *filename);
86 static gboolean write_config(gboolean emit_signal);
87 static void on_name_entry_changed(GtkEditable *editable, PropertyDialogElements *e);
88 static void on_entries_changed(GtkEditable *editable, PropertyDialogElements *e);
89 static void on_radio_long_line_custom_toggled(GtkToggleButton *radio, GtkWidget *spin_long_line);
90 static void apply_editor_prefs(void);
91 static void init_stash_prefs(void);
92 static void destroy_project(gboolean open_default);
95 #define SHOW_ERR(args) dialogs_show_msgbox(GTK_MESSAGE_ERROR, args)
96 #define SHOW_ERR1(args, more) dialogs_show_msgbox(GTK_MESSAGE_ERROR, args, more)
97 #define MAX_NAME_LEN 50
98 /* "projects" is part of the default project base path so be careful when translating
99 * please avoid special characters and spaces, look at the source for details or ask Frank */
100 #define PROJECT_DIR _("projects")
103 // returns whether we have working documents open
104 static gboolean have_session_docs(void)
106 gint npages = gtk_notebook_get_n_pages(GTK_NOTEBOOK(main_widgets.notebook));
107 GeanyDocument *doc = document_get_current();
109 return npages > 1 || (npages == 1 && (doc->file_name || doc->changed));
113 /* TODO: this should be ported to Glade like the project preferences dialog,
114 * then we can get rid of the PropertyDialogElements struct altogether as
115 * widgets pointers can be accessed through ui_lookup_widget(). */
116 void project_new(void)
118 GtkWidget *vbox;
119 GtkWidget *table;
120 GtkWidget *image;
121 GtkWidget *button;
122 GtkWidget *bbox;
123 GtkWidget *label;
124 gchar *tooltip;
125 PropertyDialogElements e = { NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, FALSE };
127 if (!app->project && project_prefs.project_session)
129 /* save session in case the dialog is cancelled */
130 configuration_save_default_session();
131 /* don't ask if the only doc is an unmodified new doc */
132 if (have_session_docs())
134 if (dialogs_show_question(
135 _("Move the current documents into the new project's session?")))
137 // don't reload session on closing project
138 configuration_clear_default_session();
140 else
142 if (!document_close_all())
143 return;
148 if (! project_ask_close())
149 return;
151 g_return_if_fail(app->project == NULL);
153 e.dialog = gtk_dialog_new_with_buttons(_("New Project"), GTK_WINDOW(main_widgets.window),
154 GTK_DIALOG_DESTROY_WITH_PARENT,
155 GTK_STOCK_CANCEL, GTK_RESPONSE_CANCEL, NULL);
157 gtk_widget_set_name(e.dialog, "GeanyDialogProject");
158 button = ui_button_new_with_image(GTK_STOCK_NEW, _("C_reate"));
159 gtk_widget_set_can_default(button, TRUE);
160 gtk_window_set_default(GTK_WINDOW(e.dialog), button);
161 gtk_dialog_add_action_widget(GTK_DIALOG(e.dialog), button, GTK_RESPONSE_OK);
163 vbox = ui_dialog_vbox_new(GTK_DIALOG(e.dialog));
165 table = gtk_table_new(3, 2, FALSE);
166 gtk_table_set_row_spacings(GTK_TABLE(table), 5);
167 gtk_table_set_col_spacings(GTK_TABLE(table), 10);
169 label = gtk_label_new(_("Name:"));
170 gtk_misc_set_alignment(GTK_MISC(label), 1, 0);
172 e.name = gtk_entry_new();
173 gtk_entry_set_activates_default(GTK_ENTRY(e.name), TRUE);
174 ui_entry_add_clear_icon(GTK_ENTRY(e.name));
175 gtk_entry_set_max_length(GTK_ENTRY(e.name), MAX_NAME_LEN);
176 gtk_widget_set_tooltip_text(e.name, _("Project name"));
178 ui_table_add_row(GTK_TABLE(table), 0, label, e.name, NULL);
180 label = gtk_label_new(_("Filename:"));
181 gtk_misc_set_alignment(GTK_MISC(label), 1, 0);
183 e.file_name = gtk_entry_new();
184 gtk_entry_set_activates_default(GTK_ENTRY(e.file_name), TRUE);
185 ui_entry_add_clear_icon(GTK_ENTRY(e.file_name));
186 gtk_entry_set_width_chars(GTK_ENTRY(e.file_name), 30);
187 tooltip = g_strdup_printf(
188 _("Path of the file representing the project and storing its settings. "
189 "It should normally have the \"%s\" extension."), "."GEANY_PROJECT_EXT);
190 gtk_widget_set_tooltip_text(e.file_name, tooltip);
191 g_free(tooltip);
192 button = gtk_button_new();
193 g_signal_connect(button, "clicked", G_CALLBACK(on_file_save_button_clicked), &e);
194 image = gtk_image_new_from_stock(GTK_STOCK_OPEN, GTK_ICON_SIZE_BUTTON);
195 gtk_container_add(GTK_CONTAINER(button), image);
196 bbox = gtk_hbox_new(FALSE, 6);
197 gtk_box_pack_start(GTK_BOX(bbox), e.file_name, TRUE, TRUE, 0);
198 gtk_box_pack_start(GTK_BOX(bbox), button, FALSE, FALSE, 0);
200 ui_table_add_row(GTK_TABLE(table), 1, label, bbox, NULL);
202 label = gtk_label_new(_("Base path:"));
203 gtk_misc_set_alignment(GTK_MISC(label), 1, 0);
205 e.base_path = gtk_entry_new();
206 gtk_entry_set_activates_default(GTK_ENTRY(e.base_path), TRUE);
207 ui_entry_add_clear_icon(GTK_ENTRY(e.base_path));
208 gtk_widget_set_tooltip_text(e.base_path,
209 _("Base directory of all files that make up the project. "
210 "This can be a new path, or an existing directory tree. "
211 "You can use paths relative to the project filename."));
212 bbox = ui_path_box_new(_("Choose Project Base Path"),
213 GTK_FILE_CHOOSER_ACTION_SELECT_FOLDER, GTK_ENTRY(e.base_path));
215 ui_table_add_row(GTK_TABLE(table), 2, label, bbox, NULL);
217 gtk_box_pack_start(GTK_BOX(vbox), table, TRUE, TRUE, 0);
219 /* signals */
220 g_signal_connect(e.name, "changed", G_CALLBACK(on_name_entry_changed), &e);
221 /* run the callback manually to initialise the base_path and file_name fields */
222 on_name_entry_changed(GTK_EDITABLE(e.name), &e);
224 g_signal_connect(e.file_name, "changed", G_CALLBACK(on_entries_changed), &e);
225 g_signal_connect(e.base_path, "changed", G_CALLBACK(on_entries_changed), &e);
227 gtk_widget_show_all(e.dialog);
229 while (1)
231 if (gtk_dialog_run(GTK_DIALOG(e.dialog)) != GTK_RESPONSE_OK)
233 // any open docs were meant to be moved into the project
234 // rewrite default session because it was cleared
235 if (have_session_docs())
236 configuration_save_default_session();
237 else
239 // reload any documents that were closed
240 configuration_reload_default_session();
241 configuration_open_files();
243 break;
245 // dialog confirmed
246 if (update_config(&e, TRUE))
248 // app->project is now set
249 if (!write_config(TRUE))
251 SHOW_ERR(_("Project file could not be written"));
252 destroy_project(FALSE);
254 else
256 ui_set_statusbar(TRUE, _("Project \"%s\" created."), app->project->name);
257 ui_add_recent_project_file(app->project->file_name);
258 break;
262 gtk_widget_destroy(e.dialog);
263 document_new_file_if_non_open();
264 ui_focus_current_document();
268 gboolean project_load_file_with_session(const gchar *locale_file_name)
270 if (project_load_file(locale_file_name))
272 if (project_prefs.project_session)
274 configuration_open_files();
275 document_new_file_if_non_open();
276 ui_focus_current_document();
278 return TRUE;
280 return FALSE;
284 #ifndef G_OS_WIN32
285 static void run_open_dialog(GtkDialog *dialog)
287 while (gtk_dialog_run(dialog) == GTK_RESPONSE_ACCEPT)
289 gchar *filename = gtk_file_chooser_get_filename(GTK_FILE_CHOOSER(dialog));
291 /* try to load the config */
292 if (! project_load_file_with_session(filename))
294 gchar *utf8_filename = utils_get_utf8_from_locale(filename);
296 SHOW_ERR1(_("Project file \"%s\" could not be loaded."), utf8_filename);
297 gtk_widget_grab_focus(GTK_WIDGET(dialog));
298 g_free(utf8_filename);
299 g_free(filename);
300 continue;
302 g_free(filename);
303 break;
306 #endif
309 void project_open(void)
311 const gchar *dir = local_prefs.project_file_path;
312 #ifdef G_OS_WIN32
313 gchar *file;
314 #else
315 GtkWidget *dialog;
316 GtkFileFilter *filter;
317 gchar *locale_path;
318 #endif
319 if (! project_ask_close()) return;
321 #ifdef G_OS_WIN32
322 file = win32_show_project_open_dialog(main_widgets.window, _("Open Project"), dir, FALSE, TRUE);
323 if (file != NULL)
325 /* try to load the config */
326 if (! project_load_file_with_session(file))
328 SHOW_ERR1(_("Project file \"%s\" could not be loaded."), file);
330 g_free(file);
332 #else
334 dialog = gtk_file_chooser_dialog_new(_("Open Project"), GTK_WINDOW(main_widgets.window),
335 GTK_FILE_CHOOSER_ACTION_OPEN,
336 GTK_STOCK_CANCEL, GTK_RESPONSE_CANCEL,
337 GTK_STOCK_OPEN, GTK_RESPONSE_ACCEPT, NULL);
338 gtk_widget_set_name(dialog, "GeanyDialogProject");
340 /* set default Open, so pressing enter can open multiple files */
341 gtk_dialog_set_default_response(GTK_DIALOG(dialog), GTK_RESPONSE_ACCEPT);
342 gtk_window_set_destroy_with_parent(GTK_WINDOW(dialog), TRUE);
343 gtk_window_set_skip_taskbar_hint(GTK_WINDOW(dialog), TRUE);
344 gtk_window_set_type_hint(GTK_WINDOW(dialog), GDK_WINDOW_TYPE_HINT_DIALOG);
345 gtk_window_set_transient_for(GTK_WINDOW(dialog), GTK_WINDOW(main_widgets.window));
346 gtk_file_chooser_set_select_multiple(GTK_FILE_CHOOSER(dialog), TRUE);
348 /* add FileFilters */
349 filter = gtk_file_filter_new();
350 gtk_file_filter_set_name(filter, _("All files"));
351 gtk_file_filter_add_pattern(filter, "*");
352 gtk_file_chooser_add_filter(GTK_FILE_CHOOSER(dialog), filter);
353 filter = gtk_file_filter_new();
354 gtk_file_filter_set_name(filter, _("Project files"));
355 gtk_file_filter_add_pattern(filter, "*." GEANY_PROJECT_EXT);
356 gtk_file_chooser_add_filter(GTK_FILE_CHOOSER(dialog), filter);
357 gtk_file_chooser_set_filter(GTK_FILE_CHOOSER(dialog), filter);
359 locale_path = utils_get_locale_from_utf8(dir);
360 if (g_file_test(locale_path, G_FILE_TEST_EXISTS) &&
361 g_file_test(locale_path, G_FILE_TEST_IS_DIR))
363 gtk_file_chooser_set_current_folder(GTK_FILE_CHOOSER(dialog), locale_path);
365 g_free(locale_path);
367 gtk_widget_show_all(dialog);
368 run_open_dialog(GTK_DIALOG(dialog));
369 gtk_widget_destroy(GTK_WIDGET(dialog));
370 #endif
374 /* Called when creating, opening, closing and updating projects. */
375 static void update_ui(void)
377 if (main_status.quitting)
378 return;
380 ui_set_window_title(NULL);
381 build_menu_update(NULL);
382 // update project name
383 sidebar_openfiles_update_all();
387 static void remove_foreach_project_filetype(gpointer data, gpointer user_data)
389 GeanyFiletype *ft = data;
390 if (ft != NULL)
392 SETPTR(ft->priv->projfilecmds, NULL);
393 SETPTR(ft->priv->projexeccmds, NULL);
394 SETPTR(ft->priv->projerror_regex_string, NULL);
395 ft->priv->project_list_entry = -1;
400 /* open_default will make function reload default session files on close */
401 gboolean project_close(gboolean open_default)
403 g_return_val_if_fail(app->project != NULL, FALSE);
405 /* save project session files, etc */
406 if (!write_config(FALSE))
407 g_warning("Project file \"%s\" could not be written", app->project->file_name);
409 if (project_prefs.project_session)
411 /* close all existing tabs first */
412 if (!document_close_all())
413 return FALSE;
415 ui_set_statusbar(TRUE, _("Project \"%s\" closed."), app->project->name);
416 destroy_project(open_default);
417 return TRUE;
421 static void destroy_project(gboolean open_default)
423 GSList *node;
425 g_return_if_fail(app->project != NULL);
427 /* remove project filetypes build entries */
428 if (app->project->priv->build_filetypes_list != NULL)
430 g_ptr_array_foreach(app->project->priv->build_filetypes_list, remove_foreach_project_filetype, NULL);
431 g_ptr_array_free(app->project->priv->build_filetypes_list, FALSE);
434 /* remove project non filetype build menu items */
435 build_remove_menu_item(GEANY_BCS_PROJ, GEANY_GBG_NON_FT, -1);
436 build_remove_menu_item(GEANY_BCS_PROJ, GEANY_GBG_EXEC, -1);
438 g_free(app->project->name);
439 g_free(app->project->description);
440 g_free(app->project->file_name);
441 g_free(app->project->base_path);
443 g_free(app->project);
444 app->project = NULL;
446 foreach_slist(node, stash_groups)
447 stash_group_free(node->data);
449 g_slist_free(stash_groups);
450 stash_groups = NULL;
452 apply_editor_prefs(); /* ensure that global settings are restored */
454 if (project_prefs.project_session)
456 /* after closing all tabs let's open the tabs found in the default config */
457 if (open_default && cl_options.load_session)
459 configuration_reload_default_session();
460 configuration_open_files();
461 document_new_file_if_non_open();
462 ui_focus_current_document();
465 g_signal_emit_by_name(geany_object, "project-close");
467 update_ui();
471 /* Shows the file chooser dialog when base path button is clicked
472 * FIXME: this should be connected in Glade but 3.8.1 has a bug
473 * where it won't pass any objects as user data (#588824). */
474 G_MODULE_EXPORT void
475 on_project_properties_base_path_button_clicked(GtkWidget *button,
476 GtkWidget *base_path_entry)
478 GtkWidget *dialog;
480 g_return_if_fail(base_path_entry != NULL);
481 g_return_if_fail(GTK_IS_WIDGET(base_path_entry));
483 dialog = gtk_file_chooser_dialog_new(_("Choose Project Base Path"),
484 NULL, GTK_FILE_CHOOSER_ACTION_SELECT_FOLDER,
485 GTK_STOCK_CANCEL, GTK_RESPONSE_CANCEL,
486 GTK_STOCK_OPEN, GTK_RESPONSE_ACCEPT,
487 NULL);
489 if (gtk_dialog_run(GTK_DIALOG(dialog)) == GTK_RESPONSE_ACCEPT)
491 gtk_entry_set_text(GTK_ENTRY(base_path_entry),
492 gtk_file_chooser_get_filename(GTK_FILE_CHOOSER(dialog)));
495 gtk_widget_destroy(dialog);
499 static void insert_build_page(PropertyDialogElements *e)
501 GtkWidget *build_table, *label;
502 GeanyDocument *doc = document_get_current();
503 GeanyFiletype *ft = NULL;
505 if (doc != NULL)
506 ft = doc->file_type;
508 build_table = build_commands_table(doc, GEANY_BCS_PROJ, &(e->build_properties), ft);
509 gtk_container_set_border_width(GTK_CONTAINER(build_table), 6);
510 label = gtk_label_new(_("Build"));
511 e->build_page_num = gtk_notebook_append_page(GTK_NOTEBOOK(e->notebook),
512 build_table, label);
516 static void create_properties_dialog(PropertyDialogElements *e)
518 GtkWidget *wid;
519 static guint base_path_button_handler_id = 0;
520 static guint radio_long_line_handler_id = 0;
522 e->dialog = create_project_dialog();
523 e->notebook = ui_lookup_widget(e->dialog, "project_notebook");
524 e->file_name = ui_lookup_widget(e->dialog, "label_project_dialog_filename");
525 e->name = ui_lookup_widget(e->dialog, "entry_project_dialog_name");
526 e->description = ui_lookup_widget(e->dialog, "textview_project_dialog_description");
527 e->base_path = ui_lookup_widget(e->dialog, "entry_project_dialog_base_path");
528 e->patterns = ui_lookup_widget(e->dialog, "entry_project_dialog_file_patterns");
530 gtk_entry_set_max_length(GTK_ENTRY(e->name), MAX_NAME_LEN);
532 ui_entry_add_clear_icon(GTK_ENTRY(e->name));
533 ui_entry_add_clear_icon(GTK_ENTRY(e->base_path));
534 ui_entry_add_clear_icon(GTK_ENTRY(e->patterns));
536 /* Workaround for bug in Glade 3.8.1, see comment above signal handler */
537 if (base_path_button_handler_id == 0)
539 wid = ui_lookup_widget(e->dialog, "button_project_dialog_base_path");
540 base_path_button_handler_id =
541 g_signal_connect(wid, "clicked",
542 G_CALLBACK(on_project_properties_base_path_button_clicked),
543 e->base_path);
546 /* Same as above, should be in Glade but can't due to bug in 3.8.1 */
547 if (radio_long_line_handler_id == 0)
549 wid = ui_lookup_widget(e->dialog, "radio_long_line_custom_project");
550 radio_long_line_handler_id =
551 g_signal_connect(wid, "toggled",
552 G_CALLBACK(on_radio_long_line_custom_toggled),
553 ui_lookup_widget(e->dialog, "spin_long_line_project"));
558 static void show_project_properties(gboolean show_build)
560 GeanyProject *p = app->project;
561 GtkWidget *widget = NULL;
562 GtkWidget *radio_long_line_custom;
563 static PropertyDialogElements e;
564 GSList *node;
566 g_return_if_fail(app->project != NULL);
568 if (e.dialog == NULL)
569 create_properties_dialog(&e);
571 insert_build_page(&e);
573 foreach_slist(node, stash_groups)
574 stash_group_display(node->data, e.dialog);
576 /* fill the elements with the appropriate data */
577 gtk_entry_set_text(GTK_ENTRY(e.name), p->name);
578 gtk_label_set_text(GTK_LABEL(e.file_name), p->file_name);
579 gtk_entry_set_text(GTK_ENTRY(e.base_path), p->base_path);
581 radio_long_line_custom = ui_lookup_widget(e.dialog, "radio_long_line_custom_project");
582 switch (p->priv->long_line_behaviour)
584 case 0: widget = ui_lookup_widget(e.dialog, "radio_long_line_disabled_project"); break;
585 case 1: widget = ui_lookup_widget(e.dialog, "radio_long_line_default_project"); break;
586 case 2: widget = radio_long_line_custom; break;
588 gtk_toggle_button_set_active(GTK_TOGGLE_BUTTON(widget), TRUE);
590 widget = ui_lookup_widget(e.dialog, "spin_long_line_project");
591 gtk_spin_button_set_value(GTK_SPIN_BUTTON(widget), (gdouble)p->priv->long_line_column);
592 on_radio_long_line_custom_toggled(GTK_TOGGLE_BUTTON(radio_long_line_custom), widget);
594 if (p->description != NULL)
595 { /* set text */
596 GtkTextBuffer *buffer = gtk_text_view_get_buffer(GTK_TEXT_VIEW(e.description));
597 gtk_text_buffer_set_text(buffer, p->description, -1);
600 if (p->file_patterns != NULL)
601 { /* set the file patterns */
602 gchar *str;
604 str = g_strjoinv(" ", p->file_patterns);
605 gtk_entry_set_text(GTK_ENTRY(e.patterns), str);
606 g_free(str);
609 g_signal_emit_by_name(geany_object, "project-dialog-open", e.notebook);
610 gtk_widget_show_all(e.dialog);
612 /* note: notebook page must be shown before setting current page */
613 if (show_build)
614 gtk_notebook_set_current_page(GTK_NOTEBOOK(e.notebook), e.build_page_num);
615 else
616 gtk_notebook_set_current_page(GTK_NOTEBOOK(e.notebook), 0);
618 while (gtk_dialog_run(GTK_DIALOG(e.dialog)) == GTK_RESPONSE_OK)
620 if (update_config(&e, FALSE))
622 g_signal_emit_by_name(geany_object, "project-dialog-confirmed", e.notebook);
623 if (!write_config(TRUE))
624 SHOW_ERR(_("Project file could not be written"));
625 else
627 ui_set_statusbar(TRUE, _("Project \"%s\" saved."), app->project->name);
628 break;
633 build_free_fields(e.build_properties);
634 g_signal_emit_by_name(geany_object, "project-dialog-close", e.notebook);
635 gtk_notebook_remove_page(GTK_NOTEBOOK(e.notebook), e.build_page_num);
636 gtk_widget_hide(e.dialog);
640 void project_properties(void)
642 show_project_properties(FALSE);
646 void project_build_properties(void)
648 show_project_properties(TRUE);
652 /* checks whether there is an already open project and asks the user if he wants to close it or
653 * abort the current action. Returns FALSE when the current action(the caller) should be cancelled
654 * and TRUE if we can go ahead */
655 gboolean project_ask_close(void)
657 if (app->project != NULL)
659 if (dialogs_show_question_full(NULL, GTK_STOCK_CLOSE, GTK_STOCK_CANCEL,
660 _("Do you want to close it before proceeding?"),
661 _("The '%s' project is open."), app->project->name))
663 return project_close(FALSE);
665 else
666 return FALSE;
668 else
669 return TRUE;
673 static GeanyProject *create_project(void)
675 GeanyProject *project = g_new0(GeanyProject, 1);
677 memset(&priv, 0, sizeof priv);
678 priv.indentation = &indentation;
679 project->priv = &priv;
681 init_stash_prefs();
683 project->file_patterns = NULL;
685 project->priv->long_line_behaviour = 1 /* use global settings */;
686 project->priv->long_line_column = editor_prefs.long_line_column;
688 app->project = project;
689 return project;
693 /* Verifies data for New & Properties dialogs.
694 * Creates app->project if NULL.
695 * Returns: FALSE if the user needs to change any data. */
696 static gboolean update_config(const PropertyDialogElements *e, gboolean new_project)
698 const gchar *name, *file_name, *base_path;
699 gchar *locale_filename;
700 gsize name_len;
701 gint err_code = 0;
702 GeanyProject *p;
704 g_return_val_if_fail(e != NULL, TRUE);
706 name = gtk_entry_get_text(GTK_ENTRY(e->name));
707 name_len = strlen(name);
708 if (name_len == 0)
710 SHOW_ERR(_("The specified project name is too short."));
711 gtk_widget_grab_focus(e->name);
712 return FALSE;
714 else if (name_len > MAX_NAME_LEN)
716 SHOW_ERR1(_("The specified project name is too long (max. %d characters)."), MAX_NAME_LEN);
717 gtk_widget_grab_focus(e->name);
718 return FALSE;
721 if (new_project)
722 file_name = gtk_entry_get_text(GTK_ENTRY(e->file_name));
723 else
724 file_name = gtk_label_get_text(GTK_LABEL(e->file_name));
726 if (G_UNLIKELY(EMPTY(file_name)))
728 SHOW_ERR(_("You have specified an invalid project filename."));
729 gtk_widget_grab_focus(e->file_name);
730 return FALSE;
733 locale_filename = utils_get_locale_from_utf8(file_name);
734 base_path = gtk_entry_get_text(GTK_ENTRY(e->base_path));
735 if (!EMPTY(base_path))
736 { /* check whether the given directory actually exists */
737 gchar *locale_path = utils_get_locale_from_utf8(base_path);
739 if (! g_path_is_absolute(locale_path))
740 { /* relative base path, so add base dir of project file name */
741 gchar *dir = g_path_get_dirname(locale_filename);
742 SETPTR(locale_path, g_build_filename(dir, locale_path, NULL));
743 g_free(dir);
746 if (! g_file_test(locale_path, G_FILE_TEST_IS_DIR))
748 gboolean create_dir;
750 create_dir = dialogs_show_question_full(NULL, GTK_STOCK_OK, GTK_STOCK_CANCEL,
751 _("Create the project's base path directory?"),
752 _("The path \"%s\" does not exist."),
753 base_path);
755 if (create_dir)
756 err_code = utils_mkdir(locale_path, TRUE);
758 if (! create_dir || err_code != 0)
760 if (err_code != 0)
761 SHOW_ERR1(_("Project base directory could not be created (%s)."),
762 g_strerror(err_code));
763 gtk_widget_grab_focus(e->base_path);
764 utils_free_pointers(2, locale_path, locale_filename, NULL);
765 return FALSE;
768 g_free(locale_path);
770 /* finally test whether the given project file can be written */
771 if ((err_code = utils_is_file_writable(locale_filename)) != 0 ||
772 (err_code = g_file_test(locale_filename, G_FILE_TEST_IS_DIR) ? EISDIR : 0) != 0)
774 SHOW_ERR1(_("Project file could not be written (%s)."), g_strerror(err_code));
775 gtk_widget_grab_focus(e->file_name);
776 g_free(locale_filename);
777 return FALSE;
779 else if (new_project && g_file_test(locale_filename, G_FILE_TEST_EXISTS) &&
780 ! dialogs_show_question_full(NULL, _("_Replace"), GTK_STOCK_CANCEL,
781 NULL,
782 _("The file '%s' already exists. Do you want to overwrite it?"),
783 file_name))
785 gtk_widget_grab_focus(e->file_name);
786 g_free(locale_filename);
787 return FALSE;
789 g_free(locale_filename);
791 if (app->project == NULL)
793 create_project();
794 new_project = TRUE;
796 p = app->project;
798 SETPTR(p->name, g_strdup(name));
799 SETPTR(p->file_name, g_strdup(file_name));
800 /* use "." if base_path is empty */
801 SETPTR(p->base_path, g_strdup(!EMPTY(base_path) ? base_path : "./"));
803 if (! new_project) /* save properties specific fields */
805 GtkTextIter start, end;
806 GtkTextBuffer *buffer;
807 GeanyDocument *doc = document_get_current();
808 GeanyBuildCommand *oldvalue;
809 GeanyFiletype *ft = doc ? doc->file_type : NULL;
810 GtkWidget *widget;
811 gchar *tmp;
812 GString *str;
813 GSList *node;
815 /* get and set the project description */
816 buffer = gtk_text_view_get_buffer(GTK_TEXT_VIEW(e->description));
817 gtk_text_buffer_get_start_iter(buffer, &start);
818 gtk_text_buffer_get_end_iter(buffer, &end);
819 SETPTR(p->description, g_strdup(gtk_text_buffer_get_text(buffer, &start, &end, FALSE)));
821 foreach_slist(node, stash_groups)
822 stash_group_update(node->data, e->dialog);
824 /* read the project build menu */
825 oldvalue = ft ? ft->priv->projfilecmds : NULL;
826 build_read_project(ft, e->build_properties);
828 if (ft != NULL && ft->priv->projfilecmds != oldvalue && ft->priv->project_list_entry < 0)
830 if (p->priv->build_filetypes_list == NULL)
831 p->priv->build_filetypes_list = g_ptr_array_new();
832 ft->priv->project_list_entry = p->priv->build_filetypes_list->len;
833 g_ptr_array_add(p->priv->build_filetypes_list, ft);
835 build_menu_update(doc);
837 widget = ui_lookup_widget(e->dialog, "radio_long_line_disabled_project");
838 if (gtk_toggle_button_get_active(GTK_TOGGLE_BUTTON(widget)))
839 p->priv->long_line_behaviour = 0;
840 else
842 widget = ui_lookup_widget(e->dialog, "radio_long_line_default_project");
843 if (gtk_toggle_button_get_active(GTK_TOGGLE_BUTTON(widget)))
844 p->priv->long_line_behaviour = 1;
845 else
846 /* "Custom" radio button must be checked */
847 p->priv->long_line_behaviour = 2;
850 widget = ui_lookup_widget(e->dialog, "spin_long_line_project");
851 p->priv->long_line_column = gtk_spin_button_get_value_as_int(GTK_SPIN_BUTTON(widget));
852 apply_editor_prefs();
854 /* get and set the project file patterns */
855 tmp = g_strdup(gtk_entry_get_text(GTK_ENTRY(e->patterns)));
856 g_strfreev(p->file_patterns);
857 g_strstrip(tmp);
858 str = g_string_new(tmp);
859 do {} while (utils_string_replace_all(str, " ", " "));
860 p->file_patterns = g_strsplit(str->str, " ", -1);
861 g_string_free(str, TRUE);
862 g_free(tmp);
865 update_ui();
867 return TRUE;
871 #ifndef G_OS_WIN32
872 static void run_dialog(GtkWidget *dialog, GtkWidget *entry)
874 /* set filename in the file chooser dialog */
875 const gchar *utf8_filename = gtk_entry_get_text(GTK_ENTRY(entry));
876 gchar *locale_filename = utils_get_locale_from_utf8(utf8_filename);
878 if (g_path_is_absolute(locale_filename))
880 if (g_file_test(locale_filename, G_FILE_TEST_EXISTS))
882 /* if the current filename is a directory, we must use
883 * gtk_file_chooser_set_current_folder(which expects a locale filename) otherwise
884 * we end up in the parent directory */
885 if (g_file_test(locale_filename, G_FILE_TEST_IS_DIR))
886 gtk_file_chooser_set_current_folder(GTK_FILE_CHOOSER(dialog), locale_filename);
887 else
888 gtk_file_chooser_set_filename(GTK_FILE_CHOOSER(dialog), utf8_filename);
890 else /* if the file doesn't yet exist, use at least the current directory */
892 gchar *locale_dir = g_path_get_dirname(locale_filename);
893 gchar *name = g_path_get_basename(utf8_filename);
895 if (g_file_test(locale_dir, G_FILE_TEST_EXISTS))
896 gtk_file_chooser_set_current_folder(GTK_FILE_CHOOSER(dialog), locale_dir);
897 gtk_file_chooser_set_current_name(GTK_FILE_CHOOSER(dialog), name);
899 g_free(name);
900 g_free(locale_dir);
903 else if (gtk_file_chooser_get_action(GTK_FILE_CHOOSER(dialog)) != GTK_FILE_CHOOSER_ACTION_OPEN)
905 gtk_file_chooser_set_current_name(GTK_FILE_CHOOSER(dialog), utf8_filename);
907 g_free(locale_filename);
909 /* run it */
910 if (gtk_dialog_run(GTK_DIALOG(dialog)) == GTK_RESPONSE_ACCEPT)
912 gchar *filename = gtk_file_chooser_get_filename(GTK_FILE_CHOOSER(dialog));
913 gchar *tmp_utf8_filename = utils_get_utf8_from_locale(filename);
915 gtk_entry_set_text(GTK_ENTRY(entry), tmp_utf8_filename);
917 g_free(tmp_utf8_filename);
918 g_free(filename);
920 gtk_widget_destroy(dialog);
922 #endif
925 static void on_file_save_button_clicked(GtkButton *button, PropertyDialogElements *e)
927 #ifdef G_OS_WIN32
928 gchar *path = win32_show_project_open_dialog(e->dialog, _("Choose Project Filename"),
929 gtk_entry_get_text(GTK_ENTRY(e->file_name)), TRUE, TRUE);
930 if (path != NULL)
932 gtk_entry_set_text(GTK_ENTRY(e->file_name), path);
933 g_free(path);
935 #else
936 GtkWidget *dialog;
938 /* initialise the dialog */
939 dialog = gtk_file_chooser_dialog_new(_("Choose Project Filename"), NULL,
940 GTK_FILE_CHOOSER_ACTION_SAVE,
941 GTK_STOCK_CANCEL, GTK_RESPONSE_CANCEL,
942 GTK_STOCK_SAVE, GTK_RESPONSE_ACCEPT, NULL);
943 gtk_widget_set_name(dialog, "GeanyDialogProject");
944 gtk_window_set_destroy_with_parent(GTK_WINDOW(dialog), TRUE);
945 gtk_window_set_skip_taskbar_hint(GTK_WINDOW(dialog), TRUE);
946 gtk_window_set_type_hint(GTK_WINDOW(dialog), GDK_WINDOW_TYPE_HINT_DIALOG);
947 gtk_dialog_set_default_response(GTK_DIALOG(dialog), GTK_RESPONSE_ACCEPT);
949 run_dialog(dialog, e->file_name);
950 #endif
954 /* sets the project base path and the project file name according to the project name */
955 static void on_name_entry_changed(GtkEditable *editable, PropertyDialogElements *e)
957 gchar *base_path;
958 gchar *file_name;
959 gchar *name;
960 const gchar *project_dir = local_prefs.project_file_path;
962 if (e->entries_modified)
963 return;
965 name = gtk_editable_get_chars(editable, 0, -1);
966 if (!EMPTY(name))
968 base_path = g_strconcat(project_dir, G_DIR_SEPARATOR_S,
969 name, G_DIR_SEPARATOR_S, NULL);
970 if (project_prefs.project_file_in_basedir)
971 file_name = g_strconcat(project_dir, G_DIR_SEPARATOR_S, name, G_DIR_SEPARATOR_S,
972 name, "." GEANY_PROJECT_EXT, NULL);
973 else
974 file_name = g_strconcat(project_dir, G_DIR_SEPARATOR_S,
975 name, "." GEANY_PROJECT_EXT, NULL);
977 else
979 base_path = g_strconcat(project_dir, G_DIR_SEPARATOR_S, NULL);
980 file_name = g_strconcat(project_dir, G_DIR_SEPARATOR_S, NULL);
982 g_free(name);
984 gtk_entry_set_text(GTK_ENTRY(e->base_path), base_path);
985 gtk_entry_set_text(GTK_ENTRY(e->file_name), file_name);
987 e->entries_modified = FALSE;
989 g_free(base_path);
990 g_free(file_name);
994 static void on_entries_changed(GtkEditable *editable, PropertyDialogElements *e)
996 e->entries_modified = TRUE;
1000 static void on_radio_long_line_custom_toggled(GtkToggleButton *radio, GtkWidget *spin_long_line)
1002 gtk_widget_set_sensitive(spin_long_line, gtk_toggle_button_get_active(radio));
1006 gboolean project_load_file(const gchar *locale_file_name)
1008 g_return_val_if_fail(locale_file_name != NULL, FALSE);
1010 if (load_config(locale_file_name))
1012 gchar *utf8_filename = utils_get_utf8_from_locale(locale_file_name);
1014 ui_set_statusbar(TRUE, _("Project \"%s\" opened."), app->project->name);
1016 ui_add_recent_project_file(utf8_filename);
1017 g_free(utf8_filename);
1018 return TRUE;
1020 else
1022 gchar *utf8_filename = utils_get_utf8_from_locale(locale_file_name);
1024 ui_set_statusbar(TRUE, _("Project file \"%s\" could not be loaded."), utf8_filename);
1025 g_free(utf8_filename);
1027 return FALSE;
1031 /* Reads the given filename and creates a new project with the data found in the file.
1032 * At this point there should not be an already opened project in Geany otherwise it will just
1033 * return.
1034 * The filename is expected in the locale encoding. */
1035 static gboolean load_config(const gchar *filename)
1037 GKeyFile *config;
1038 GeanyProject *p;
1039 GSList *node;
1041 /* there should not be an open project */
1042 g_return_val_if_fail(app->project == NULL && filename != NULL, FALSE);
1044 config = g_key_file_new();
1045 if (! g_key_file_load_from_file(config, filename, G_KEY_FILE_NONE, NULL))
1047 g_key_file_free(config);
1048 return FALSE;
1051 p = create_project();
1053 foreach_slist(node, stash_groups)
1054 stash_group_load_from_key_file(node->data, config);
1056 p->name = utils_get_setting_string(config, "project", "name", GEANY_STRING_UNTITLED);
1057 p->description = utils_get_setting_string(config, "project", "description", "");
1058 p->file_name = utils_get_utf8_from_locale(filename);
1059 p->base_path = utils_get_setting_string(config, "project", "base_path", "");
1060 p->file_patterns = g_key_file_get_string_list(config, "project", "file_patterns", NULL, NULL);
1062 p->priv->long_line_behaviour = utils_get_setting_integer(config, "long line marker",
1063 "long_line_behaviour", 1 /* follow global */);
1064 p->priv->long_line_column = utils_get_setting_integer(config, "long line marker",
1065 "long_line_column", editor_prefs.long_line_column);
1066 apply_editor_prefs();
1068 build_load_menu(config, GEANY_BCS_PROJ, (gpointer)p);
1069 if (project_prefs.project_session)
1071 /* save current (non-project) session (it could have been changed since program startup) */
1072 configuration_save_default_session();
1073 /* now close all open files */
1074 document_close_all();
1075 /* read session files so they can be opened with configuration_open_files() */
1076 configuration_load_session_files(config, FALSE);
1077 document_new_file_if_non_open();
1078 ui_focus_current_document();
1080 g_signal_emit_by_name(geany_object, "project-open", config);
1081 g_key_file_free(config);
1083 update_ui();
1084 return TRUE;
1088 static void apply_editor_prefs(void)
1090 guint i;
1092 foreach_document(i)
1093 editor_apply_update_prefs(documents[i]->editor);
1097 /* Write the project settings as well as the project session files into its configuration files.
1098 * emit_signal defines whether the project-save signal should be emitted. When write_config()
1099 * is called while closing a project, this is used to skip emitting the signal because
1100 * project-close will be emitted afterwards.
1101 * Returns: TRUE if project file was written successfully. */
1102 static gboolean write_config(gboolean emit_signal)
1104 GeanyProject *p;
1105 GKeyFile *config;
1106 gchar *filename;
1107 gchar *data;
1108 gboolean ret = FALSE;
1109 GSList *node;
1111 g_return_val_if_fail(app->project != NULL, FALSE);
1113 p = app->project;
1115 config = g_key_file_new();
1116 /* try to load an existing config to keep manually added comments */
1117 filename = utils_get_locale_from_utf8(p->file_name);
1118 g_key_file_load_from_file(config, filename, G_KEY_FILE_NONE, NULL);
1120 foreach_slist(node, stash_groups)
1121 stash_group_save_to_key_file(node->data, config);
1123 g_key_file_set_string(config, "project", "name", p->name);
1124 g_key_file_set_string(config, "project", "base_path", p->base_path);
1126 if (p->description)
1127 g_key_file_set_string(config, "project", "description", p->description);
1128 if (p->file_patterns)
1129 g_key_file_set_string_list(config, "project", "file_patterns",
1130 (const gchar**) p->file_patterns, g_strv_length(p->file_patterns));
1132 // editor settings
1133 g_key_file_set_integer(config, "long line marker", "long_line_behaviour", p->priv->long_line_behaviour);
1134 g_key_file_set_integer(config, "long line marker", "long_line_column", p->priv->long_line_column);
1136 /* store the session files into the project too */
1137 if (project_prefs.project_session)
1138 configuration_save_session_files(config);
1139 build_save_menu(config, (gpointer)p, GEANY_BCS_PROJ);
1140 if (emit_signal)
1142 g_signal_emit_by_name(geany_object, "project-save", config);
1144 /* write the file */
1145 data = g_key_file_to_data(config, NULL, NULL);
1146 ret = (utils_write_file(filename, data) == 0);
1148 g_free(data);
1149 g_free(filename);
1150 g_key_file_free(config);
1152 return ret;
1156 /* Constructs the project's base path which is used for "Make all" and "Execute".
1157 * The result is an absolute string in UTF-8 encoding which is either the same as
1158 * base path if it is absolute or it is built out of project file name's dir and base_path.
1159 * If there is no project or project's base_path is invalid, NULL will be returned.
1160 * The returned string should be freed when no longer needed. */
1161 gchar *project_get_base_path(void)
1163 GeanyProject *project = app->project;
1165 if (project && !EMPTY(project->base_path))
1167 if (g_path_is_absolute(project->base_path))
1168 return g_strdup(project->base_path);
1169 else
1170 { /* build base_path out of project file name's dir and base_path */
1171 gchar *path;
1172 gchar *dir = g_path_get_dirname(project->file_name);
1174 if (utils_str_equal(project->base_path, "./"))
1175 return dir;
1177 path = g_build_filename(dir, project->base_path, NULL);
1178 g_free(dir);
1179 return path;
1182 return NULL;
1186 /* This is to save project-related global settings, NOT project file settings. */
1187 void project_save_prefs(GKeyFile *config)
1189 GeanyProject *project = app->project;
1191 if (cl_options.load_session)
1193 const gchar *utf8_filename = (project == NULL) ? "" : project->file_name;
1195 g_key_file_set_string(config, "project", "session_file", utf8_filename);
1197 g_key_file_set_string(config, "project", "project_file_path",
1198 FALLBACK(local_prefs.project_file_path, ""));
1202 void project_load_prefs(GKeyFile *config)
1204 if (cl_options.load_session)
1206 g_return_if_fail(project_prefs.session_file == NULL);
1207 project_prefs.session_file = utils_get_setting_string(config, "project",
1208 "session_file", "");
1210 local_prefs.project_file_path = utils_get_setting_string(config, "project",
1211 "project_file_path", NULL);
1212 if (local_prefs.project_file_path == NULL)
1214 local_prefs.project_file_path = g_build_filename(g_get_home_dir(), PROJECT_DIR, NULL);
1219 /* Initialize project-related preferences in the Preferences dialog. */
1220 void project_setup_prefs(void)
1222 GtkWidget *path_entry = ui_lookup_widget(ui_widgets.prefs_dialog, "project_file_path_entry");
1223 GtkWidget *path_btn = ui_lookup_widget(ui_widgets.prefs_dialog, "project_file_path_button");
1224 static gboolean callback_setup = FALSE;
1226 g_return_if_fail(local_prefs.project_file_path != NULL);
1228 gtk_entry_set_text(GTK_ENTRY(path_entry), local_prefs.project_file_path);
1229 if (! callback_setup)
1230 { /* connect the callback only once */
1231 callback_setup = TRUE;
1232 ui_setup_open_button_callback(path_btn, NULL,
1233 GTK_FILE_CHOOSER_ACTION_SELECT_FOLDER, GTK_ENTRY(path_entry));
1238 /* Update project-related preferences after using the Preferences dialog. */
1239 void project_apply_prefs(void)
1241 GtkWidget *path_entry = ui_lookup_widget(ui_widgets.prefs_dialog, "project_file_path_entry");
1242 const gchar *str;
1244 str = gtk_entry_get_text(GTK_ENTRY(path_entry));
1245 SETPTR(local_prefs.project_file_path, g_strdup(str));
1249 static void add_stash_group(StashGroup *group, gboolean apply_defaults)
1251 GKeyFile *kf;
1253 stash_groups = g_slist_prepend(stash_groups, group);
1254 if (!apply_defaults)
1255 return;
1257 kf = g_key_file_new();
1258 stash_group_load_from_key_file(group, kf);
1259 g_key_file_free(kf);
1263 static void init_stash_prefs(void)
1265 StashGroup *group;
1267 group = stash_group_new("indentation");
1268 /* copy global defaults */
1269 indentation = *editor_get_indent_prefs(NULL);
1270 stash_group_set_use_defaults(group, FALSE);
1271 add_stash_group(group, FALSE);
1273 stash_group_add_spin_button_integer(group, &indentation.width,
1274 "indent_width", 4, "spin_indent_width_project");
1275 stash_group_add_radio_buttons(group, (gint*)(gpointer)&indentation.type,
1276 "indent_type", GEANY_INDENT_TYPE_TABS,
1277 "radio_indent_spaces_project", GEANY_INDENT_TYPE_SPACES,
1278 "radio_indent_tabs_project", GEANY_INDENT_TYPE_TABS,
1279 "radio_indent_both_project", GEANY_INDENT_TYPE_BOTH,
1280 NULL);
1281 /* This is a 'hidden' pref for backwards-compatibility */
1282 stash_group_add_integer(group, &indentation.hard_tab_width,
1283 "indent_hard_tab_width", 8);
1284 stash_group_add_toggle_button(group, &indentation.detect_type,
1285 "detect_indent", FALSE, "check_detect_indent_type_project");
1286 stash_group_add_toggle_button(group, &indentation.detect_width,
1287 "detect_indent_width", FALSE, "check_detect_indent_width_project");
1288 stash_group_add_combo_box(group, (gint*)(gpointer)&indentation.auto_indent_mode,
1289 "indent_mode", GEANY_AUTOINDENT_CURRENTCHARS, "combo_auto_indent_mode_project");
1291 group = stash_group_new("file_prefs");
1292 stash_group_add_toggle_button(group, &priv.final_new_line,
1293 "final_new_line", file_prefs.final_new_line, "check_new_line1");
1294 stash_group_add_toggle_button(group, &priv.ensure_convert_new_lines,
1295 "ensure_convert_new_lines", file_prefs.ensure_convert_new_lines, "check_ensure_convert_new_lines1");
1296 stash_group_add_toggle_button(group, &priv.strip_trailing_spaces,
1297 "strip_trailing_spaces", file_prefs.strip_trailing_spaces, "check_trailing_spaces1");
1298 stash_group_add_toggle_button(group, &priv.replace_tabs,
1299 "replace_tabs", file_prefs.replace_tabs, "check_replace_tabs1");
1300 add_stash_group(group, TRUE);
1302 group = stash_group_new("editor");
1303 stash_group_add_toggle_button(group, &priv.line_wrapping,
1304 "line_wrapping", editor_prefs.line_wrapping, "check_line_wrapping1");
1305 stash_group_add_spin_button_integer(group, &priv.line_break_column,
1306 "line_break_column", editor_prefs.line_break_column, "spin_line_break1");
1307 stash_group_add_toggle_button(group, &priv.auto_continue_multiline,
1308 "auto_continue_multiline", editor_prefs.auto_continue_multiline,
1309 "check_auto_multiline1");
1310 add_stash_group(group, TRUE);
1314 #define COPY_PREF(dest, prefname)\
1315 (dest.prefname = priv.prefname)
1317 const GeanyFilePrefs *project_get_file_prefs(void)
1319 static GeanyFilePrefs fp;
1321 if (!app->project)
1322 return &file_prefs;
1324 fp = file_prefs;
1325 COPY_PREF(fp, final_new_line);
1326 COPY_PREF(fp, ensure_convert_new_lines);
1327 COPY_PREF(fp, strip_trailing_spaces);
1328 COPY_PREF(fp, replace_tabs);
1329 return &fp;
1333 void project_init(void)
1338 void project_finalize(void)