Add 'Refresh' popup menu item (part of geany-plugins #2999858).
[geany-mirror.git] / src / project.c
blobadbb9cb7b85d542b8813f01e30eb07c490e534ab
1 /*
2 * project.c - this file is part of Geany, a fast and lightweight IDE
4 * Copyright 2007-2010 Enrico Tröger <enrico(dot)troeger(at)uvena(dot)de>
5 * Copyright 2007-2010 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
18 * along with this program; if not, write to the Free Software
19 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
21 * $Id$
24 /** @file project.h
25 * Project Management.
28 #include "geany.h"
30 #include <string.h>
31 #include <unistd.h>
33 #include "project.h"
34 #include "projectprivate.h"
36 #include "dialogs.h"
37 #include "support.h"
38 #include "utils.h"
39 #include "ui_utils.h"
40 #include "document.h"
41 #include "msgwindow.h"
42 #include "main.h"
43 #include "keyfile.h"
44 #ifdef G_OS_WIN32
45 # include "win32.h"
46 #endif
47 #include "build.h"
48 #include "interface.h"
49 #include "editor.h"
50 #include "stash.h"
51 #include "sidebar.h"
52 #include "filetypes.h"
55 ProjectPrefs project_prefs = { NULL, FALSE, FALSE };
58 static GeanyProjectPrivate priv;
59 static GeanyIndentPrefs indentation;
61 static StashGroup *indent_group = NULL;
63 static struct
65 gchar *project_file_path; /* in UTF-8 */
66 } local_prefs = { NULL };
69 static gboolean entries_modified;
71 /* simple struct to keep references to the elements of the properties dialog */
72 typedef struct _PropertyDialogElements
74 GtkWidget *dialog;
75 GtkWidget *name;
76 GtkWidget *description;
77 GtkWidget *file_name;
78 GtkWidget *base_path;
79 GtkWidget *patterns;
80 TableData build_properties;
81 } PropertyDialogElements;
85 static gboolean update_config(const PropertyDialogElements *e);
86 static void on_file_save_button_clicked(GtkButton *button, PropertyDialogElements *e);
87 static gboolean load_config(const gchar *filename);
88 static gboolean write_config(gboolean emit_signal);
89 static void on_name_entry_changed(GtkEditable *editable, PropertyDialogElements *e);
90 static void on_entries_changed(GtkEditable *editable, PropertyDialogElements *e);
91 static void on_radio_long_line_custom_toggled(GtkToggleButton *radio, GtkWidget *spin_long_line);
92 static void apply_editor_prefs(void);
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 void project_new(void)
105 GtkWidget *vbox;
106 GtkWidget *table;
107 GtkWidget *image;
108 GtkWidget *button;
109 GtkWidget *bbox;
110 GtkWidget *label;
111 PropertyDialogElements *e;
113 if (! project_ask_close())
114 return;
116 g_return_if_fail(app->project == NULL);
118 e = g_new0(PropertyDialogElements, 1);
119 e->dialog = gtk_dialog_new_with_buttons(_("New Project"), GTK_WINDOW(main_widgets.window),
120 GTK_DIALOG_DESTROY_WITH_PARENT,
121 GTK_STOCK_CANCEL, GTK_RESPONSE_CANCEL, NULL);
123 gtk_widget_set_name(e->dialog, "GeanyDialogProject");
124 bbox = gtk_hbox_new(FALSE, 0);
125 button = gtk_button_new();
126 image = gtk_image_new_from_stock("gtk-new", GTK_ICON_SIZE_BUTTON);
127 label = gtk_label_new_with_mnemonic(_("C_reate"));
128 gtk_box_pack_start(GTK_BOX(bbox), image, FALSE, FALSE, 3);
129 gtk_box_pack_start(GTK_BOX(bbox), label, FALSE, FALSE, 3);
130 gtk_container_add(GTK_CONTAINER(button), bbox);
131 gtk_dialog_add_action_widget(GTK_DIALOG(e->dialog), button, GTK_RESPONSE_OK);
133 vbox = ui_dialog_vbox_new(GTK_DIALOG(e->dialog));
135 entries_modified = FALSE;
137 table = gtk_table_new(3, 2, FALSE);
138 gtk_table_set_row_spacings(GTK_TABLE(table), 5);
139 gtk_table_set_col_spacings(GTK_TABLE(table), 10);
141 label = gtk_label_new(_("Name:"));
142 gtk_misc_set_alignment(GTK_MISC(label), 1, 0);
144 e->name = gtk_entry_new();
145 ui_entry_add_clear_icon(GTK_ENTRY(e->name));
146 gtk_entry_set_max_length(GTK_ENTRY(e->name), MAX_NAME_LEN);
148 ui_table_add_row(GTK_TABLE(table), 0, label, e->name, NULL);
150 label = gtk_label_new(_("Filename:"));
151 gtk_misc_set_alignment(GTK_MISC(label), 1, 0);
153 e->file_name = gtk_entry_new();
154 ui_entry_add_clear_icon(GTK_ENTRY(e->file_name));
155 gtk_entry_set_width_chars(GTK_ENTRY(e->file_name), 30);
156 button = gtk_button_new();
157 g_signal_connect(button, "clicked", G_CALLBACK(on_file_save_button_clicked), e);
158 image = gtk_image_new_from_stock("gtk-open", GTK_ICON_SIZE_BUTTON);
159 gtk_container_add(GTK_CONTAINER(button), image);
160 bbox = gtk_hbox_new(FALSE, 6);
161 gtk_box_pack_start_defaults(GTK_BOX(bbox), e->file_name);
162 gtk_box_pack_start(GTK_BOX(bbox), button, FALSE, FALSE, 0);
164 ui_table_add_row(GTK_TABLE(table), 1, label, bbox, NULL);
166 label = gtk_label_new(_("Base path:"));
167 gtk_misc_set_alignment(GTK_MISC(label), 1, 0);
169 e->base_path = gtk_entry_new();
170 ui_entry_add_clear_icon(GTK_ENTRY(e->base_path));
171 ui_widget_set_tooltip_text(e->base_path,
172 _("Base directory of all files that make up the project. "
173 "This can be a new path, or an existing directory tree. "
174 "You can use paths relative to the project filename."));
175 bbox = ui_path_box_new(_("Choose Project Base Path"),
176 GTK_FILE_CHOOSER_ACTION_SELECT_FOLDER, GTK_ENTRY(e->base_path));
178 ui_table_add_row(GTK_TABLE(table), 2, label, bbox, NULL);
180 gtk_container_add(GTK_CONTAINER(vbox), table);
182 /* signals */
183 g_signal_connect(e->name, "changed", G_CALLBACK(on_name_entry_changed), e);
184 /* run the callback manually to initialise the base_path and file_name fields */
185 on_name_entry_changed(GTK_EDITABLE(e->name), e);
187 g_signal_connect(e->file_name, "changed", G_CALLBACK(on_entries_changed), e);
188 g_signal_connect(e->base_path, "changed", G_CALLBACK(on_entries_changed), e);
190 gtk_widget_show_all(e->dialog);
192 while (gtk_dialog_run(GTK_DIALOG(e->dialog)) == GTK_RESPONSE_OK)
194 if (update_config(e))
196 ui_add_recent_project_file(app->project->file_name);
197 break;
200 gtk_widget_destroy(e->dialog);
201 g_free(e);
205 gboolean project_load_file_with_session(const gchar *locale_file_name)
207 if (project_load_file(locale_file_name))
209 if (project_prefs.project_session)
211 configuration_open_files();
212 /* open a new file if no other file was opened */
213 document_new_file_if_non_open();
215 return TRUE;
217 return FALSE;
221 #ifndef G_OS_WIN32
222 static void run_open_dialog(GtkDialog *dialog)
224 while (gtk_dialog_run(dialog) == GTK_RESPONSE_ACCEPT)
226 gchar *filename = gtk_file_chooser_get_filename(GTK_FILE_CHOOSER(dialog));
228 /* try to load the config */
229 if (! project_load_file_with_session(filename))
231 gchar *utf8_filename = utils_get_utf8_from_locale(filename);
233 SHOW_ERR1(_("Project file \"%s\" could not be loaded."), utf8_filename);
234 gtk_widget_grab_focus(GTK_WIDGET(dialog));
235 g_free(utf8_filename);
236 g_free(filename);
237 continue;
239 g_free(filename);
240 break;
243 #endif
246 void project_open(void)
248 const gchar *dir = local_prefs.project_file_path;
249 #ifdef G_OS_WIN32
250 gchar *file;
251 #else
252 GtkWidget *dialog;
253 GtkFileFilter *filter;
254 gchar *locale_path;
255 #endif
256 if (! project_ask_close()) return;
258 #ifdef G_OS_WIN32
259 file = win32_show_project_open_dialog(main_widgets.window, _("Open Project"), dir, FALSE, TRUE);
260 if (file != NULL)
262 /* try to load the config */
263 if (! project_load_file_with_session(file))
265 SHOW_ERR1(_("Project file \"%s\" could not be loaded."), file);
267 g_free(file);
269 #else
271 dialog = gtk_file_chooser_dialog_new(_("Open Project"), GTK_WINDOW(main_widgets.window),
272 GTK_FILE_CHOOSER_ACTION_OPEN,
273 GTK_STOCK_CANCEL, GTK_RESPONSE_CANCEL,
274 GTK_STOCK_OPEN, GTK_RESPONSE_ACCEPT, NULL);
275 gtk_widget_set_name(dialog, "GeanyDialogProject");
277 /* set default Open, so pressing enter can open multiple files */
278 gtk_dialog_set_default_response(GTK_DIALOG(dialog), GTK_RESPONSE_ACCEPT);
279 gtk_window_set_destroy_with_parent(GTK_WINDOW(dialog), TRUE);
280 gtk_window_set_skip_taskbar_hint(GTK_WINDOW(dialog), TRUE);
281 gtk_window_set_type_hint(GTK_WINDOW(dialog), GDK_WINDOW_TYPE_HINT_DIALOG);
282 gtk_window_set_transient_for(GTK_WINDOW(dialog), GTK_WINDOW(main_widgets.window));
283 gtk_file_chooser_set_select_multiple(GTK_FILE_CHOOSER(dialog), TRUE);
285 /* add FileFilters */
286 filter = gtk_file_filter_new();
287 gtk_file_filter_set_name(filter, _("All files"));
288 gtk_file_filter_add_pattern(filter, "*");
289 gtk_file_chooser_add_filter(GTK_FILE_CHOOSER(dialog), filter);
290 filter = gtk_file_filter_new();
291 gtk_file_filter_set_name(filter, _("Project files"));
292 gtk_file_filter_add_pattern(filter, "*." GEANY_PROJECT_EXT);
293 gtk_file_chooser_add_filter(GTK_FILE_CHOOSER(dialog), filter);
294 gtk_file_chooser_set_filter(GTK_FILE_CHOOSER(dialog), filter);
296 locale_path = utils_get_locale_from_utf8(dir);
297 if (g_file_test(locale_path, G_FILE_TEST_EXISTS) &&
298 g_file_test(locale_path, G_FILE_TEST_IS_DIR))
300 gtk_file_chooser_set_current_folder(GTK_FILE_CHOOSER(dialog), locale_path);
302 g_free(locale_path);
304 gtk_widget_show_all(dialog);
305 run_open_dialog(GTK_DIALOG(dialog));
306 gtk_widget_destroy(GTK_WIDGET(dialog));
307 #endif
311 /* Called when creating, opening, closing and updating projects. */
312 static void update_ui(void)
314 ui_set_window_title(NULL);
315 build_menu_update(NULL);
316 sidebar_openfiles_update_all();
320 static void remove_foreach_project_filetype(gpointer data, gpointer user_data)
322 GeanyFiletype *ft = (GeanyFiletype*)data;
323 if (ft != NULL)
325 setptr(ft->projfilecmds, NULL);
326 setptr(ft->projexeccmds, NULL);
327 setptr(ft->projerror_regex_string, NULL);
328 ft->project_list_entry = -1;
333 /* open_default will make function reload default session files on close */
334 void project_close(gboolean open_default)
336 g_return_if_fail(app->project != NULL);
338 ui_set_statusbar(TRUE, _("Project \"%s\" closed."), app->project->name);
340 /* use write_config() to save project session files */
341 write_config(FALSE);
343 /* remove project filetypes build entries */
344 if (app->project->build_filetypes_list != NULL)
346 g_ptr_array_foreach(app->project->build_filetypes_list, remove_foreach_project_filetype, NULL);
347 g_ptr_array_free(app->project->build_filetypes_list, FALSE);
350 /* remove project non filetype build menu items */
351 build_remove_menu_item(GEANY_BCS_PROJ, GEANY_GBG_NON_FT, -1);
352 build_remove_menu_item(GEANY_BCS_PROJ, GEANY_GBG_EXEC, -1);
354 /* remove project regexen */
355 setptr(regex_proj, NULL);
357 g_free(app->project->name);
358 g_free(app->project->description);
359 g_free(app->project->file_name);
360 g_free(app->project->base_path);
362 g_free(app->project);
363 app->project = NULL;
365 apply_editor_prefs(); /* ensure that global settings are restored */
367 if (project_prefs.project_session)
369 /* close all existing tabs first */
370 document_close_all();
372 /* after closing all tabs let's open the tabs found in the default config */
373 if (open_default && cl_options.load_session)
375 configuration_reload_default_session();
376 configuration_open_files();
377 /* open a new file if no other file was opened */
378 document_new_file_if_non_open();
381 g_signal_emit_by_name(geany_object, "project-close");
383 update_ui();
387 static void on_set_use_base_path_clicked(GtkWidget *unused1, gpointer user_data)
389 build_set_non_ft_wd_to_proj((TableData)user_data);
393 static void create_properties_dialog(PropertyDialogElements *e)
395 GtkWidget *table, *notebook, *build_table;
396 GtkWidget *button;
397 GtkWidget *bbox;
398 GtkWidget *label;
399 GtkWidget *swin;
400 GeanyDocument *doc = document_get_current();
401 GeanyFiletype *ft = NULL;
403 e->dialog = create_project_dialog();
404 gtk_window_set_transient_for(GTK_WINDOW(e->dialog), GTK_WINDOW(main_widgets.window));
405 gtk_window_set_destroy_with_parent(GTK_WINDOW(e->dialog), TRUE);
406 gtk_widget_set_name(e->dialog, "GeanyDialogProject");
408 ui_entry_add_clear_icon(GTK_ENTRY(ui_lookup_widget(e->dialog, "spin_indent_width")));
410 table = gtk_table_new(6, 2, FALSE);
411 gtk_container_set_border_width(GTK_CONTAINER(table), 6);
412 gtk_table_set_row_spacings(GTK_TABLE(table), 5);
413 gtk_table_set_col_spacings(GTK_TABLE(table), 10);
415 label = gtk_label_new(_("Name:"));
416 gtk_table_attach(GTK_TABLE(table), label, 0, 1, 0, 1,
417 (GtkAttachOptions) (GTK_FILL),
418 (GtkAttachOptions) (0), 0, 0);
419 gtk_misc_set_alignment(GTK_MISC(label), 0, 0);
421 e->name = gtk_entry_new();
422 ui_entry_add_clear_icon(GTK_ENTRY(e->name));
423 gtk_entry_set_max_length(GTK_ENTRY(e->name), MAX_NAME_LEN);
424 gtk_table_attach(GTK_TABLE(table), e->name, 1, 2, 0, 1,
425 (GtkAttachOptions) (GTK_EXPAND | GTK_FILL),
426 (GtkAttachOptions) (0), 0, 0);
428 label = gtk_label_new(_("Filename:"));
429 gtk_table_attach(GTK_TABLE(table), label, 0, 1, 1, 2,
430 (GtkAttachOptions) (GTK_FILL),
431 (GtkAttachOptions) (0), 0, 0);
432 gtk_misc_set_alignment(GTK_MISC(label), 0, 0);
434 e->file_name = gtk_entry_new();
435 ui_entry_add_clear_icon(GTK_ENTRY(e->file_name));
436 gtk_editable_set_editable(GTK_EDITABLE(e->file_name), FALSE); /* read-only */
437 gtk_table_attach(GTK_TABLE(table), e->file_name, 1, 2, 1, 2,
438 (GtkAttachOptions) (GTK_EXPAND | GTK_FILL),
439 (GtkAttachOptions) (0), 0, 0);
441 label = gtk_label_new(_("Description:"));
442 gtk_table_attach(GTK_TABLE(table), label, 0, 1, 2, 3,
443 (GtkAttachOptions) (GTK_FILL),
444 (GtkAttachOptions) (GTK_FILL), 0, 0);
445 gtk_misc_set_alignment(GTK_MISC(label), 0, 0);
447 e->description = gtk_text_view_new();
448 gtk_text_view_set_wrap_mode(GTK_TEXT_VIEW(e->description), GTK_WRAP_WORD);
449 swin = gtk_scrolled_window_new(NULL, NULL);
450 gtk_widget_set_size_request(swin, 250, 80);
451 gtk_scrolled_window_set_policy(GTK_SCROLLED_WINDOW(swin),
452 GTK_POLICY_AUTOMATIC, GTK_POLICY_AUTOMATIC);
453 gtk_scrolled_window_add_with_viewport(GTK_SCROLLED_WINDOW(swin), GTK_WIDGET(e->description));
454 gtk_table_attach(GTK_TABLE(table), swin, 1, 2, 2, 3,
455 (GtkAttachOptions) (GTK_EXPAND | GTK_FILL),
456 (GtkAttachOptions) (0), 0, 0);
458 label = gtk_label_new(_("Base path:"));
459 gtk_table_attach(GTK_TABLE(table), label, 0, 1, 3, 4,
460 (GtkAttachOptions) (GTK_FILL),
461 (GtkAttachOptions) (0), 0, 0);
462 gtk_misc_set_alignment(GTK_MISC(label), 0, 0);
464 e->base_path = gtk_entry_new();
465 ui_entry_add_clear_icon(GTK_ENTRY(e->base_path));
466 ui_widget_set_tooltip_text(e->base_path,
467 _("Base directory of all files that make up the project. "
468 "This can be a new path, or an existing directory tree. "
469 "You can use paths relative to the project filename."));
470 bbox = ui_path_box_new(_("Choose Project Base Path"),
471 GTK_FILE_CHOOSER_ACTION_SELECT_FOLDER, GTK_ENTRY(e->base_path));
472 gtk_table_attach(GTK_TABLE(table), bbox, 1, 2, 3, 4,
473 (GtkAttachOptions) (GTK_EXPAND | GTK_FILL),
474 (GtkAttachOptions) (0), 0, 0);
476 if (doc != NULL) ft = doc->file_type;
477 build_table = build_commands_table(doc, GEANY_BCS_PROJ, &(e->build_properties), ft);
478 gtk_container_set_border_width(GTK_CONTAINER(build_table), 6);
479 label = gtk_label_new(_("Build"));
480 notebook = ui_lookup_widget(e->dialog, "project_notebook");
481 gtk_notebook_insert_page(GTK_NOTEBOOK(notebook), build_table, label, 2);
483 label = gtk_label_new(_("Set the Build non-filetype working directories to use base path:"));
484 gtk_misc_set_alignment(GTK_MISC(label), 0, 0);
486 button = gtk_button_new_with_label(_("Set"));
487 ui_widget_set_tooltip_text(button,
488 _("Set the working directories (on the Build tab) "
489 "for the non-filetype build commands to use the base path"));
490 gtk_misc_set_alignment(GTK_MISC(label), 0, 0);
491 g_signal_connect(button, "clicked", G_CALLBACK(on_set_use_base_path_clicked), e->build_properties);
492 bbox = gtk_hbox_new(FALSE, 6);
493 gtk_box_pack_start(GTK_BOX(bbox), label, TRUE, TRUE, 0);
494 gtk_box_pack_start(GTK_BOX(bbox), button, FALSE, FALSE, 0);
495 gtk_table_attach(GTK_TABLE(table), bbox, 0, 2, 4, 5,
496 (GtkAttachOptions) (GTK_EXPAND | GTK_FILL),
497 (GtkAttachOptions) (GTK_FILL), 0, 0);
499 g_signal_connect(ui_lookup_widget(e->dialog, "radio_long_line_custom"), "toggled",
500 G_CALLBACK(on_radio_long_line_custom_toggled), ui_lookup_widget(e->dialog, "spin_long_line"));
502 #if 0
503 label = gtk_label_new(_("File patterns:"));
504 /* <small>Separate multiple patterns by a new line</small> */
505 gtk_table_attach(GTK_TABLE(table), label, 0, 1, 6, 7,
506 (GtkAttachOptions) (GTK_FILL),
507 (GtkAttachOptions) (GTK_FILL), 0, 0);
508 gtk_misc_set_alignment(GTK_MISC(label), 0, 0);
510 e->patterns = gtk_text_view_new();
511 swin = gtk_scrolled_window_new(NULL, NULL);
512 gtk_widget_set_size_request(swin, -1, 80);
513 gtk_scrolled_window_set_policy(GTK_SCROLLED_WINDOW(swin),
514 GTK_POLICY_AUTOMATIC, GTK_POLICY_AUTOMATIC);
515 gtk_scrolled_window_add_with_viewport(GTK_SCROLLED_WINDOW(swin), GTK_WIDGET(e->patterns));
516 gtk_table_attach(GTK_TABLE(table), swin, 1, 2, 6, 7,
517 (GtkAttachOptions) (GTK_EXPAND | GTK_FILL),
518 (GtkAttachOptions) (0), 0, 0);
519 #endif
521 label = gtk_label_new(_("Project"));
522 gtk_widget_show(table); /* needed to switch current page */
523 gtk_notebook_insert_page(GTK_NOTEBOOK(notebook), table, label, 0);
524 gtk_notebook_set_current_page(GTK_NOTEBOOK(notebook), 0);
528 void project_properties(void)
530 PropertyDialogElements *e = g_new(PropertyDialogElements, 1);
531 GeanyProject *p = app->project;
532 GtkWidget *widget = NULL;
533 GtkWidget *radio_long_line_custom;
535 g_return_if_fail(app->project != NULL);
537 entries_modified = FALSE;
539 create_properties_dialog(e);
541 stash_group_display(indent_group, e->dialog);
543 /* fill the elements with the appropriate data */
544 gtk_entry_set_text(GTK_ENTRY(e->name), p->name);
545 gtk_entry_set_text(GTK_ENTRY(e->file_name), p->file_name);
546 gtk_entry_set_text(GTK_ENTRY(e->base_path), p->base_path);
548 radio_long_line_custom = ui_lookup_widget(e->dialog, "radio_long_line_custom");
549 switch (p->long_line_behaviour)
551 case 0: widget = ui_lookup_widget(e->dialog, "radio_long_line_disabled"); break;
552 case 1: widget = ui_lookup_widget(e->dialog, "radio_long_line_default"); break;
553 case 2: widget = radio_long_line_custom; break;
555 gtk_toggle_button_set_active(GTK_TOGGLE_BUTTON(widget), TRUE);
557 widget = ui_lookup_widget(e->dialog, "spin_long_line");
558 gtk_spin_button_set_value(GTK_SPIN_BUTTON(widget), (gdouble)p->long_line_column);
559 on_radio_long_line_custom_toggled(GTK_TOGGLE_BUTTON(radio_long_line_custom), widget);
561 if (p->description != NULL)
562 { /* set text */
563 GtkTextBuffer *buffer = gtk_text_view_get_buffer(GTK_TEXT_VIEW(e->description));
564 gtk_text_buffer_set_text(buffer, p->description, -1);
567 #if 0
568 if (p->file_patterns != NULL)
569 { /* set the file patterns */
570 gint i;
571 gint len = g_strv_length(p->file_patterns);
572 GtkTextBuffer *buffer = gtk_text_view_get_buffer(GTK_TEXT_VIEW(e->patterns));
573 GString *str = g_string_sized_new(len * 4);
575 for (i = 0; i < len; i++)
577 if (p->file_patterns[i] != NULL)
579 g_string_append(str, p->file_patterns[i]);
580 g_string_append_c(str, '\n');
583 gtk_text_buffer_set_text(buffer, str->str, -1);
584 g_string_free(str, TRUE);
586 #endif
588 gtk_widget_show_all(e->dialog);
590 while (gtk_dialog_run(GTK_DIALOG(e->dialog)) == GTK_RESPONSE_OK)
592 if (update_config(e))
594 stash_group_update(indent_group, e->dialog);
595 break;
598 build_free_fields(e->build_properties);
599 gtk_widget_destroy(e->dialog);
600 g_free(e);
604 /* checks whether there is an already open project and asks the user if he wants to close it or
605 * abort the current action. Returns FALSE when the current action(the caller) should be cancelled
606 * and TRUE if we can go ahead */
607 gboolean project_ask_close(void)
609 if (app->project != NULL)
611 if (dialogs_show_question_full(NULL, GTK_STOCK_CLOSE, GTK_STOCK_CANCEL,
612 _("Do you want to close it before proceeding?"),
613 _("The '%s' project is already open."), app->project->name))
615 project_close(FALSE);
616 return TRUE;
618 else
619 return FALSE;
621 else
622 return TRUE;
626 static GeanyProject *create_project(void)
628 GeanyProject *project = g_new0(GeanyProject, 1);
630 memset(&priv, 0, sizeof priv);
631 indentation = *editor_get_indent_prefs(NULL);
632 priv.indentation = &indentation;
633 project->priv = &priv;
635 project->long_line_behaviour = 1 /* use global settings */;
636 project->long_line_column = editor_prefs.long_line_global_column;
638 app->project = project;
639 return project;
643 /* Verifies data for New & Properties dialogs.
644 * Returns: FALSE if the user needs to change any data. */
645 static gboolean update_config(const PropertyDialogElements *e)
647 const gchar *name, *file_name, *base_path;
648 gchar *locale_filename;
649 gint name_len;
650 gint err_code = 0;
651 gboolean new_project = FALSE;
652 GeanyProject *p;
654 g_return_val_if_fail(e != NULL, TRUE);
656 name = gtk_entry_get_text(GTK_ENTRY(e->name));
657 name_len = strlen(name);
658 if (name_len == 0)
660 SHOW_ERR(_("The specified project name is too short."));
661 gtk_widget_grab_focus(e->name);
662 return FALSE;
664 else if (name_len > MAX_NAME_LEN)
666 SHOW_ERR1(_("The specified project name is too long (max. %d characters)."), MAX_NAME_LEN);
667 gtk_widget_grab_focus(e->name);
668 return FALSE;
671 file_name = gtk_entry_get_text(GTK_ENTRY(e->file_name));
672 if (! NZV(file_name))
674 SHOW_ERR(_("You have specified an invalid project filename."));
675 gtk_widget_grab_focus(e->file_name);
676 return FALSE;
679 locale_filename = utils_get_locale_from_utf8(file_name);
680 base_path = gtk_entry_get_text(GTK_ENTRY(e->base_path));
681 if (NZV(base_path))
682 { /* check whether the given directory actually exists */
683 gchar *locale_path = utils_get_locale_from_utf8(base_path);
685 if (! g_path_is_absolute(locale_path))
686 { /* relative base path, so add base dir of project file name */
687 gchar *dir = g_path_get_dirname(locale_filename);
688 setptr(locale_path, g_strconcat(dir, G_DIR_SEPARATOR_S, locale_path, NULL));
689 g_free(dir);
692 if (! g_file_test(locale_path, G_FILE_TEST_IS_DIR))
694 gboolean create_dir;
696 create_dir = dialogs_show_question_full(NULL, GTK_STOCK_OK, GTK_STOCK_CANCEL,
697 _("Create the project's base path directory?"),
698 _("The path \"%s\" does not exist."),
699 base_path);
701 if (create_dir)
702 err_code = utils_mkdir(locale_path, TRUE);
704 if (! create_dir || err_code != 0)
706 if (err_code != 0)
707 SHOW_ERR1(_("Project base directory could not be created (%s)."),
708 g_strerror(err_code));
709 gtk_widget_grab_focus(e->base_path);
710 utils_free_pointers(2, locale_path, locale_filename, NULL);
711 return FALSE;
714 g_free(locale_path);
716 /* finally test whether the given project file can be written */
717 if ((err_code = utils_is_file_writeable(locale_filename)) != 0)
719 SHOW_ERR1(_("Project file could not be written (%s)."), g_strerror(err_code));
720 gtk_widget_grab_focus(e->file_name);
721 g_free(locale_filename);
722 return FALSE;
724 g_free(locale_filename);
726 if (app->project == NULL)
728 create_project();
729 new_project = TRUE;
731 p = app->project;
733 setptr(p->name, g_strdup(name));
734 setptr(p->file_name, g_strdup(file_name));
735 /* use "." if base_path is empty */
736 setptr(p->base_path, g_strdup(NZV(base_path) ? base_path : "./"));
738 if (! new_project) /* save properties specific fields */
740 GtkTextIter start, end;
741 GtkTextBuffer *buffer;
742 GeanyDocument *doc = document_get_current();
743 BuildDestination menu_dst;
744 GeanyBuildCommand *oldvalue;
745 GeanyFiletype *ft = NULL;
746 GtkWidget *widget;
748 /* get and set the project description */
749 buffer = gtk_text_view_get_buffer(GTK_TEXT_VIEW(e->description));
750 gtk_text_buffer_get_start_iter(buffer, &start);
751 gtk_text_buffer_get_end_iter(buffer, &end);
752 setptr(p->description, g_strdup(gtk_text_buffer_get_text(buffer, &start, &end, FALSE)));
754 /* read the project build menu */
755 if (doc != NULL)
756 ft = doc->file_type;
757 if (ft != NULL)
759 menu_dst.dst[GEANY_GBG_FT] = &(ft->projfilecmds);
760 oldvalue = ft->projfilecmds;
761 menu_dst.fileregexstr = &(ft->projerror_regex_string);
763 else
765 menu_dst.dst[GEANY_GBG_FT] = NULL;
766 oldvalue = NULL;
767 menu_dst.fileregexstr = NULL;
769 menu_dst.dst[GEANY_GBG_NON_FT] = &non_ft_proj;
770 menu_dst.dst[GEANY_GBG_EXEC] = &exec_proj;
771 menu_dst.nonfileregexstr = &regex_proj;
772 build_read_commands(&menu_dst, e->build_properties, GTK_RESPONSE_ACCEPT);
773 if (ft != NULL && ft->projfilecmds != oldvalue && ft->project_list_entry < 0)
775 if (p->build_filetypes_list == NULL)
776 p->build_filetypes_list = g_ptr_array_new();
777 ft->project_list_entry = p->build_filetypes_list->len;
778 g_ptr_array_add(p->build_filetypes_list, ft);
780 build_menu_update(doc);
782 widget = ui_lookup_widget(e->dialog, "radio_long_line_disabled");
783 if (gtk_toggle_button_get_active(GTK_TOGGLE_BUTTON(widget)))
784 p->long_line_behaviour = 0;
785 else
787 widget = ui_lookup_widget(e->dialog, "radio_long_line_default");
788 if (gtk_toggle_button_get_active(GTK_TOGGLE_BUTTON(widget)))
789 p->long_line_behaviour = 1;
790 else
791 /* "Custom" radio button must be checked */
792 p->long_line_behaviour = 2;
795 widget = ui_lookup_widget(e->dialog, "spin_long_line");
796 p->long_line_column = gtk_spin_button_get_value_as_int(GTK_SPIN_BUTTON(widget));
797 apply_editor_prefs();
799 #if 0
800 /* get and set the project file patterns */
801 buffer = gtk_text_view_get_buffer(GTK_TEXT_VIEW(e->patterns));
802 gtk_text_buffer_get_start_iter(buffer, &start);
803 gtk_text_buffer_get_end_iter(buffer, &end);
804 tmp = gtk_text_buffer_get_text(buffer, &start, &end, FALSE);
805 g_strfreev(p->file_patterns);
806 p->file_patterns = g_strsplit(tmp, "\n", -1);
807 g_free(tmp);
808 #endif
810 write_config(TRUE);
811 if (new_project)
812 ui_set_statusbar(TRUE, _("Project \"%s\" created."), p->name);
813 else
814 ui_set_statusbar(TRUE, _("Project \"%s\" saved."), p->name);
816 update_ui();
818 return TRUE;
822 #ifndef G_OS_WIN32
823 static void run_dialog(GtkWidget *dialog, GtkWidget *entry)
825 /* set filename in the file chooser dialog */
826 const gchar *utf8_filename = gtk_entry_get_text(GTK_ENTRY(entry));
827 gchar *locale_filename = utils_get_locale_from_utf8(utf8_filename);
829 if (g_path_is_absolute(locale_filename))
831 if (g_file_test(locale_filename, G_FILE_TEST_EXISTS))
833 /* if the current filename is a directory, we must use
834 * gtk_file_chooser_set_current_folder(which expects a locale filename) otherwise
835 * we end up in the parent directory */
836 if (g_file_test(locale_filename, G_FILE_TEST_IS_DIR))
837 gtk_file_chooser_set_current_folder(GTK_FILE_CHOOSER(dialog), locale_filename);
838 else
839 gtk_file_chooser_set_filename(GTK_FILE_CHOOSER(dialog), utf8_filename);
841 else /* if the file doesn't yet exist, use at least the current directory */
843 gchar *locale_dir = g_path_get_dirname(locale_filename);
844 gchar *name = g_path_get_basename(utf8_filename);
846 if (g_file_test(locale_dir, G_FILE_TEST_EXISTS))
847 gtk_file_chooser_set_current_folder(GTK_FILE_CHOOSER(dialog), locale_dir);
848 gtk_file_chooser_set_current_name(GTK_FILE_CHOOSER(dialog), name);
850 g_free(name);
851 g_free(locale_dir);
854 else if (gtk_file_chooser_get_action(GTK_FILE_CHOOSER(dialog)) != GTK_FILE_CHOOSER_ACTION_OPEN)
856 gtk_file_chooser_set_current_name(GTK_FILE_CHOOSER(dialog), utf8_filename);
858 g_free(locale_filename);
860 /* run it */
861 if (gtk_dialog_run(GTK_DIALOG(dialog)) == GTK_RESPONSE_ACCEPT)
863 gchar *filename = gtk_file_chooser_get_filename(GTK_FILE_CHOOSER(dialog));
864 gchar *tmp_utf8_filename = utils_get_utf8_from_locale(filename);
866 gtk_entry_set_text(GTK_ENTRY(entry), tmp_utf8_filename);
868 g_free(tmp_utf8_filename);
869 g_free(filename);
871 gtk_widget_destroy(dialog);
873 #endif
876 static void on_file_save_button_clicked(GtkButton *button, PropertyDialogElements *e)
878 #ifdef G_OS_WIN32
879 gchar *path = win32_show_project_open_dialog(e->dialog, _("Choose Project Filename"),
880 gtk_entry_get_text(GTK_ENTRY(e->file_name)), TRUE, TRUE);
881 if (path != NULL)
883 gtk_entry_set_text(GTK_ENTRY(e->file_name), path);
884 g_free(path);
886 #else
887 GtkWidget *dialog;
889 /* initialise the dialog */
890 dialog = gtk_file_chooser_dialog_new(_("Choose Project Filename"), NULL,
891 GTK_FILE_CHOOSER_ACTION_SAVE,
892 GTK_STOCK_CANCEL, GTK_RESPONSE_CANCEL,
893 GTK_STOCK_SAVE, GTK_RESPONSE_ACCEPT, NULL);
894 gtk_widget_set_name(dialog, "GeanyDialogProject");
895 gtk_window_set_destroy_with_parent(GTK_WINDOW(dialog), TRUE);
896 gtk_window_set_skip_taskbar_hint(GTK_WINDOW(dialog), TRUE);
897 gtk_window_set_type_hint(GTK_WINDOW(dialog), GDK_WINDOW_TYPE_HINT_DIALOG);
898 gtk_dialog_set_default_response(GTK_DIALOG(dialog), GTK_RESPONSE_ACCEPT);
900 run_dialog(dialog, e->file_name);
901 #endif
905 /* sets the project base path and the project file name according to the project name */
906 static void on_name_entry_changed(GtkEditable *editable, PropertyDialogElements *e)
908 gchar *base_path;
909 gchar *file_name;
910 gchar *name;
911 const gchar *project_dir = local_prefs.project_file_path;
913 if (entries_modified)
914 return;
916 name = gtk_editable_get_chars(editable, 0, -1);
917 if (NZV(name))
919 base_path = g_strconcat(project_dir, G_DIR_SEPARATOR_S,
920 name, G_DIR_SEPARATOR_S, NULL);
921 if (project_prefs.project_file_in_basedir)
922 file_name = g_strconcat(project_dir, G_DIR_SEPARATOR_S, name, G_DIR_SEPARATOR_S,
923 name, "." GEANY_PROJECT_EXT, NULL);
924 else
925 file_name = g_strconcat(project_dir, G_DIR_SEPARATOR_S,
926 name, "." GEANY_PROJECT_EXT, NULL);
928 else
930 base_path = g_strconcat(project_dir, G_DIR_SEPARATOR_S, NULL);
931 file_name = g_strconcat(project_dir, G_DIR_SEPARATOR_S, NULL);
933 g_free(name);
935 gtk_entry_set_text(GTK_ENTRY(e->base_path), base_path);
936 gtk_entry_set_text(GTK_ENTRY(e->file_name), file_name);
938 entries_modified = FALSE;
940 g_free(base_path);
941 g_free(file_name);
945 static void on_entries_changed(GtkEditable *editable, PropertyDialogElements *e)
947 entries_modified = TRUE;
951 static void on_radio_long_line_custom_toggled(GtkToggleButton *radio, GtkWidget *spin_long_line)
953 gtk_widget_set_sensitive(spin_long_line, gtk_toggle_button_get_active(radio));
957 gboolean project_load_file(const gchar *locale_file_name)
959 g_return_val_if_fail(locale_file_name != NULL, FALSE);
961 if (load_config(locale_file_name))
963 gchar *utf8_filename = utils_get_utf8_from_locale(locale_file_name);
965 ui_set_statusbar(TRUE, _("Project \"%s\" opened."), app->project->name);
967 ui_add_recent_project_file(utf8_filename);
968 g_free(utf8_filename);
969 return TRUE;
971 else
973 gchar *utf8_filename = utils_get_utf8_from_locale(locale_file_name);
975 ui_set_statusbar(TRUE, _("Project file \"%s\" could not be loaded."), utf8_filename);
976 g_free(utf8_filename);
978 return FALSE;
982 /* Reads the given filename and creates a new project with the data found in the file.
983 * At this point there should not be an already opened project in Geany otherwise it will just
984 * return.
985 * The filename is expected in the locale encoding. */
986 static gboolean load_config(const gchar *filename)
988 GKeyFile *config;
989 GeanyProject *p;
991 /* there should not be an open project */
992 g_return_val_if_fail(app->project == NULL && filename != NULL, FALSE);
994 config = g_key_file_new();
995 if (! g_key_file_load_from_file(config, filename, G_KEY_FILE_NONE, NULL))
997 g_key_file_free(config);
998 return FALSE;
1001 p = create_project();
1003 stash_group_load_from_key_file(indent_group, config);
1005 p->name = utils_get_setting_string(config, "project", "name", GEANY_STRING_UNTITLED);
1006 p->description = utils_get_setting_string(config, "project", "description", "");
1007 p->file_name = utils_get_utf8_from_locale(filename);
1008 p->base_path = utils_get_setting_string(config, "project", "base_path", "");
1009 p->file_patterns = g_key_file_get_string_list(config, "project", "file_patterns", NULL, NULL);
1011 p->long_line_behaviour = utils_get_setting_integer(config, "long line marker",
1012 "long_line_behaviour", 1 /* follow global */);
1013 p->long_line_column = utils_get_setting_integer(config, "long line marker",
1014 "long_line_column", editor_prefs.long_line_global_column);
1015 apply_editor_prefs();
1017 build_load_menu(config, GEANY_BCS_PROJ, (gpointer)p);
1018 if (project_prefs.project_session)
1020 /* save current (non-project) session (it could has been changed since program startup) */
1021 configuration_save_default_session();
1022 /* now close all open files */
1023 document_close_all();
1024 /* read session files so they can be opened with configuration_open_files() */
1025 configuration_load_session_files(config, FALSE);
1027 g_signal_emit_by_name(geany_object, "project-open", config);
1028 g_key_file_free(config);
1030 update_ui();
1031 return TRUE;
1035 static void apply_editor_prefs(void)
1037 guint i;
1039 foreach_document(i)
1040 editor_apply_update_prefs(documents[i]->editor);
1044 /* Write the project settings as well as the project session files into its configuration files.
1045 * emit_signal defines whether the project-save signal should be emitted. When write_config()
1046 * is called while closing a project, this is used to skip emitting the signal because
1047 * project-close will be emitted afterwards.
1048 * Returns: TRUE if project file was written successfully. */
1049 static gboolean write_config(gboolean emit_signal)
1051 GeanyProject *p;
1052 GKeyFile *config;
1053 gchar *filename;
1054 gchar *data;
1055 gboolean ret = FALSE;
1057 g_return_val_if_fail(app->project != NULL, FALSE);
1059 p = app->project;
1061 config = g_key_file_new();
1062 /* try to load an existing config to keep manually added comments */
1063 filename = utils_get_locale_from_utf8(p->file_name);
1064 g_key_file_load_from_file(config, filename, G_KEY_FILE_NONE, NULL);
1066 stash_group_save_to_key_file(indent_group, config);
1068 g_key_file_set_string(config, "project", "name", p->name);
1069 g_key_file_set_string(config, "project", "base_path", p->base_path);
1071 if (p->description)
1072 g_key_file_set_string(config, "project", "description", p->description);
1073 if (p->file_patterns)
1074 g_key_file_set_string_list(config, "project", "file_patterns",
1075 (const gchar**) p->file_patterns, g_strv_length(p->file_patterns));
1077 g_key_file_set_integer(config, "long line marker", "long_line_behaviour", p->long_line_behaviour);
1078 g_key_file_set_integer(config, "long line marker", "long_line_column", p->long_line_column);
1080 /* store the session files into the project too */
1081 if (project_prefs.project_session)
1082 configuration_save_session_files(config);
1083 build_save_menu(config, (gpointer)p, GEANY_BCS_PROJ);
1084 if (emit_signal)
1086 g_signal_emit_by_name(geany_object, "project-save", config);
1088 /* write the file */
1089 data = g_key_file_to_data(config, NULL, NULL);
1090 ret = (utils_write_file(filename, data) == 0);
1092 g_free(data);
1093 g_free(filename);
1094 g_key_file_free(config);
1096 return ret;
1100 /* Constructs the project's base path which is used for "Make all" and "Execute".
1101 * The result is an absolute string in UTF-8 encoding which is either the same as
1102 * base path if it is absolute or it is built out of project file name's dir and base_path.
1103 * If there is no project or project's base_path is invalid, NULL will be returned.
1104 * The returned string should be freed when no longer needed. */
1105 gchar *project_get_base_path(void)
1107 GeanyProject *project = app->project;
1109 if (project && NZV(project->base_path))
1111 if (g_path_is_absolute(project->base_path))
1112 return g_strdup(project->base_path);
1113 else
1114 { /* build base_path out of project file name's dir and base_path */
1115 gchar *path;
1116 gchar *dir = g_path_get_dirname(project->file_name);
1118 if (utils_str_equal(project->base_path, "./"))
1119 return dir;
1120 else
1121 path = g_strconcat(dir, G_DIR_SEPARATOR_S, project->base_path, NULL);
1122 g_free(dir);
1123 return path;
1126 return NULL;
1130 /* This is to save project-related global settings, NOT project file settings. */
1131 void project_save_prefs(GKeyFile *config)
1133 GeanyProject *project = app->project;
1135 if (cl_options.load_session)
1137 const gchar *utf8_filename = (project == NULL) ? "" : project->file_name;
1139 g_key_file_set_string(config, "project", "session_file", utf8_filename);
1141 g_key_file_set_string(config, "project", "project_file_path",
1142 NVL(local_prefs.project_file_path, ""));
1146 void project_load_prefs(GKeyFile *config)
1148 if (cl_options.load_session)
1150 g_return_if_fail(project_prefs.session_file == NULL);
1151 project_prefs.session_file = utils_get_setting_string(config, "project",
1152 "session_file", "");
1154 local_prefs.project_file_path = utils_get_setting_string(config, "project",
1155 "project_file_path", NULL);
1156 if (local_prefs.project_file_path == NULL)
1158 local_prefs.project_file_path = g_strconcat(g_get_home_dir(),
1159 G_DIR_SEPARATOR_S, PROJECT_DIR, NULL);
1164 /* Initialize project-related preferences in the Preferences dialog. */
1165 void project_setup_prefs(void)
1167 GtkWidget *path_entry = ui_lookup_widget(ui_widgets.prefs_dialog, "project_file_path_entry");
1168 GtkWidget *path_btn = ui_lookup_widget(ui_widgets.prefs_dialog, "project_file_path_button");
1169 static gboolean callback_setup = FALSE;
1171 g_return_if_fail(local_prefs.project_file_path != NULL);
1173 gtk_entry_set_text(GTK_ENTRY(path_entry), local_prefs.project_file_path);
1174 if (! callback_setup)
1175 { /* connect the callback only once */
1176 callback_setup = TRUE;
1177 ui_setup_open_button_callback(path_btn, NULL,
1178 GTK_FILE_CHOOSER_ACTION_SELECT_FOLDER, GTK_ENTRY(path_entry));
1183 /* Update project-related preferences after using the Preferences dialog. */
1184 void project_apply_prefs(void)
1186 GtkWidget *path_entry = ui_lookup_widget(ui_widgets.prefs_dialog, "project_file_path_entry");
1187 const gchar *str;
1189 str = gtk_entry_get_text(GTK_ENTRY(path_entry));
1190 setptr(local_prefs.project_file_path, g_strdup(str));
1194 void project_init(void)
1196 StashGroup *group;
1198 group = stash_group_new("indentation");
1199 /* defaults are copied from editor indent prefs */
1200 stash_group_set_use_defaults(group, FALSE);
1201 indent_group = group;
1203 stash_group_add_spin_button_integer(group, &indentation.width,
1204 "indent_width", 4, "spin_indent_width");
1205 stash_group_add_radio_buttons(group, (gint*)(gpointer)&indentation.type,
1206 "indent_type", GEANY_INDENT_TYPE_TABS,
1207 "radio_indent_spaces", GEANY_INDENT_TYPE_SPACES,
1208 "radio_indent_tabs", GEANY_INDENT_TYPE_TABS,
1209 "radio_indent_both", GEANY_INDENT_TYPE_BOTH,
1210 NULL);
1211 /* This is a 'hidden' pref for backwards-compatibility */
1212 stash_group_add_integer(group, &indentation.hard_tab_width,
1213 "indent_hard_tab_width", 8);
1214 stash_group_add_toggle_button(group, &indentation.detect_type,
1215 "detect_indent", FALSE, "check_detect_indent");
1216 stash_group_add_combo_box(group, (gint*)(gpointer)&indentation.auto_indent_mode,
1217 "indent_mode", GEANY_AUTOINDENT_CURRENTCHARS, "combo_auto_indent_mode");
1221 void project_finalize(void)
1223 stash_group_free(indent_group);