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.
37 #include "filetypesprivate.h"
38 #include "geanyobject.h"
41 #include "projectprivate.h"
54 ProjectPrefs project_prefs
= { NULL
, FALSE
, FALSE
};
57 static GeanyProjectPrivate priv
;
58 static GeanyIndentPrefs indentation
;
60 static GSList
*stash_groups
= NULL
;
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
73 GtkWidget
*description
;
77 BuildTableData build_properties
;
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)
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();
142 if (!document_close_all())
148 if (! project_ask_close())
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
);
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);
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
);
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();
239 // reload any documents that were closed
240 configuration_reload_default_session();
241 configuration_open_files();
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
);
256 ui_set_statusbar(TRUE
, _("Project \"%s\" created."), app
->project
->name
);
257 ui_add_recent_project_file(app
->project
->file_name
);
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();
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
);
309 void project_open(void)
311 const gchar
*dir
= local_prefs
.project_file_path
;
316 GtkFileFilter
*filter
;
319 if (! project_ask_close()) return;
322 file
= win32_show_project_open_dialog(main_widgets
.window
, _("Open Project"), dir
, FALSE
, TRUE
);
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
);
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
);
367 gtk_widget_show_all(dialog
);
368 run_open_dialog(GTK_DIALOG(dialog
));
369 gtk_widget_destroy(GTK_WIDGET(dialog
));
374 /* Called when creating, opening, closing and updating projects. */
375 static void update_ui(void)
377 if (main_status
.quitting
)
380 ui_set_window_title(NULL
);
381 build_menu_update(NULL
);
382 // update project name
383 sidebar_openfiles_update_all();
384 ui_update_recent_project_menu();
388 static void remove_foreach_project_filetype(gpointer data
, gpointer user_data
)
390 GeanyFiletype
*ft
= data
;
393 SETPTR(ft
->priv
->projfilecmds
, NULL
);
394 SETPTR(ft
->priv
->projexeccmds
, NULL
);
395 SETPTR(ft
->priv
->projerror_regex_string
, NULL
);
396 ft
->priv
->project_list_entry
= -1;
401 /* open_default will make function reload default session files on close */
402 gboolean
project_close(gboolean open_default
)
404 g_return_val_if_fail(app
->project
!= NULL
, FALSE
);
406 /* save project session files, etc */
407 if (!write_config(FALSE
))
408 g_warning("Project file \"%s\" could not be written", app
->project
->file_name
);
410 if (project_prefs
.project_session
)
412 /* close all existing tabs first */
413 if (!document_close_all())
416 ui_set_statusbar(TRUE
, _("Project \"%s\" closed."), app
->project
->name
);
417 destroy_project(open_default
);
422 static void destroy_project(gboolean open_default
)
426 g_return_if_fail(app
->project
!= NULL
);
428 /* remove project filetypes build entries */
429 if (app
->project
->priv
->build_filetypes_list
!= NULL
)
431 g_ptr_array_foreach(app
->project
->priv
->build_filetypes_list
, remove_foreach_project_filetype
, NULL
);
432 g_ptr_array_free(app
->project
->priv
->build_filetypes_list
, FALSE
);
435 /* remove project non filetype build menu items */
436 build_remove_menu_item(GEANY_BCS_PROJ
, GEANY_GBG_NON_FT
, -1);
437 build_remove_menu_item(GEANY_BCS_PROJ
, GEANY_GBG_EXEC
, -1);
439 g_free(app
->project
->name
);
440 g_free(app
->project
->description
);
441 g_free(app
->project
->file_name
);
442 g_free(app
->project
->base_path
);
443 g_strfreev(app
->project
->file_patterns
);
445 g_free(app
->project
);
448 foreach_slist(node
, stash_groups
)
449 stash_group_free(node
->data
);
451 g_slist_free(stash_groups
);
454 apply_editor_prefs(); /* ensure that global settings are restored */
456 if (project_prefs
.project_session
)
458 /* after closing all tabs let's open the tabs found in the default config */
459 if (open_default
&& cl_options
.load_session
)
461 configuration_reload_default_session();
462 configuration_open_files();
463 document_new_file_if_non_open();
464 ui_focus_current_document();
467 g_signal_emit_by_name(geany_object
, "project-close");
473 /* Shows the file chooser dialog when base path button is clicked
474 * FIXME: this should be connected in Glade but 3.8.1 has a bug
475 * where it won't pass any objects as user data (#588824). */
476 static void on_project_properties_base_path_button_clicked(GtkWidget
*button
,
477 GtkWidget
*base_path_entry
)
481 g_return_if_fail(base_path_entry
!= NULL
);
482 g_return_if_fail(GTK_IS_WIDGET(base_path_entry
));
484 dialog
= gtk_file_chooser_dialog_new(_("Choose Project Base Path"),
485 NULL
, GTK_FILE_CHOOSER_ACTION_SELECT_FOLDER
,
486 GTK_STOCK_CANCEL
, GTK_RESPONSE_CANCEL
,
487 GTK_STOCK_OPEN
, GTK_RESPONSE_ACCEPT
,
490 if (gtk_dialog_run(GTK_DIALOG(dialog
)) == GTK_RESPONSE_ACCEPT
)
492 gtk_entry_set_text(GTK_ENTRY(base_path_entry
),
493 gtk_file_chooser_get_filename(GTK_FILE_CHOOSER(dialog
)));
496 gtk_widget_destroy(dialog
);
500 static void insert_build_page(PropertyDialogElements
*e
)
502 GtkWidget
*build_table
, *label
;
503 GeanyDocument
*doc
= document_get_current();
504 GeanyFiletype
*ft
= NULL
;
509 build_table
= build_commands_table(doc
, GEANY_BCS_PROJ
, &(e
->build_properties
), ft
);
510 gtk_container_set_border_width(GTK_CONTAINER(build_table
), 6);
511 label
= gtk_label_new(_("Build"));
512 e
->build_page_num
= gtk_notebook_append_page(GTK_NOTEBOOK(e
->notebook
),
517 static void create_properties_dialog(PropertyDialogElements
*e
)
520 static guint base_path_button_handler_id
= 0;
521 static guint radio_long_line_handler_id
= 0;
523 e
->dialog
= create_project_dialog();
524 e
->notebook
= ui_lookup_widget(e
->dialog
, "project_notebook");
525 e
->file_name
= ui_lookup_widget(e
->dialog
, "label_project_dialog_filename");
526 e
->name
= ui_lookup_widget(e
->dialog
, "entry_project_dialog_name");
527 e
->description
= ui_lookup_widget(e
->dialog
, "textview_project_dialog_description");
528 e
->base_path
= ui_lookup_widget(e
->dialog
, "entry_project_dialog_base_path");
529 e
->patterns
= ui_lookup_widget(e
->dialog
, "entry_project_dialog_file_patterns");
531 gtk_entry_set_max_length(GTK_ENTRY(e
->name
), MAX_NAME_LEN
);
533 ui_entry_add_clear_icon(GTK_ENTRY(e
->name
));
534 ui_entry_add_clear_icon(GTK_ENTRY(e
->base_path
));
535 ui_entry_add_clear_icon(GTK_ENTRY(e
->patterns
));
537 /* Workaround for bug in Glade 3.8.1, see comment above signal handler */
538 if (base_path_button_handler_id
== 0)
540 wid
= ui_lookup_widget(e
->dialog
, "button_project_dialog_base_path");
541 base_path_button_handler_id
=
542 g_signal_connect(wid
, "clicked",
543 G_CALLBACK(on_project_properties_base_path_button_clicked
),
547 /* Same as above, should be in Glade but can't due to bug in 3.8.1 */
548 if (radio_long_line_handler_id
== 0)
550 wid
= ui_lookup_widget(e
->dialog
, "radio_long_line_custom_project");
551 radio_long_line_handler_id
=
552 g_signal_connect(wid
, "toggled",
553 G_CALLBACK(on_radio_long_line_custom_toggled
),
554 ui_lookup_widget(e
->dialog
, "spin_long_line_project"));
559 static void show_project_properties(gboolean show_build
)
561 GeanyProject
*p
= app
->project
;
562 GtkWidget
*widget
= NULL
;
563 GtkWidget
*radio_long_line_custom
;
564 static PropertyDialogElements e
;
567 GtkTextBuffer
*buffer
;
569 g_return_if_fail(app
->project
!= NULL
);
571 if (e
.dialog
== NULL
)
572 create_properties_dialog(&e
);
574 insert_build_page(&e
);
576 foreach_slist(node
, stash_groups
)
577 stash_group_display(node
->data
, e
.dialog
);
579 /* fill the elements with the appropriate data */
580 gtk_entry_set_text(GTK_ENTRY(e
.name
), p
->name
);
581 gtk_label_set_text(GTK_LABEL(e
.file_name
), p
->file_name
);
582 gtk_entry_set_text(GTK_ENTRY(e
.base_path
), p
->base_path
);
584 radio_long_line_custom
= ui_lookup_widget(e
.dialog
, "radio_long_line_custom_project");
585 switch (p
->priv
->long_line_behaviour
)
587 case 0: widget
= ui_lookup_widget(e
.dialog
, "radio_long_line_disabled_project"); break;
588 case 1: widget
= ui_lookup_widget(e
.dialog
, "radio_long_line_default_project"); break;
589 case 2: widget
= radio_long_line_custom
; break;
591 gtk_toggle_button_set_active(GTK_TOGGLE_BUTTON(widget
), TRUE
);
593 widget
= ui_lookup_widget(e
.dialog
, "spin_long_line_project");
594 gtk_spin_button_set_value(GTK_SPIN_BUTTON(widget
), (gdouble
)p
->priv
->long_line_column
);
595 on_radio_long_line_custom_toggled(GTK_TOGGLE_BUTTON(radio_long_line_custom
), widget
);
598 buffer
= gtk_text_view_get_buffer(GTK_TEXT_VIEW(e
.description
));
599 gtk_text_buffer_set_text(buffer
, p
->description
? p
->description
: "", -1);
601 /* set the file patterns */
602 entry_text
= p
->file_patterns
? g_strjoinv(" ", p
->file_patterns
) : g_strdup("");
603 gtk_entry_set_text(GTK_ENTRY(e
.patterns
), entry_text
);
606 g_signal_emit_by_name(geany_object
, "project-dialog-open", e
.notebook
);
607 gtk_widget_show_all(e
.dialog
);
609 /* note: notebook page must be shown before setting current page */
611 gtk_notebook_set_current_page(GTK_NOTEBOOK(e
.notebook
), e
.build_page_num
);
613 gtk_notebook_set_current_page(GTK_NOTEBOOK(e
.notebook
), 0);
615 while (gtk_dialog_run(GTK_DIALOG(e
.dialog
)) == GTK_RESPONSE_OK
)
617 if (update_config(&e
, FALSE
))
619 g_signal_emit_by_name(geany_object
, "project-dialog-confirmed", e
.notebook
);
620 if (!write_config(TRUE
))
621 SHOW_ERR(_("Project file could not be written"));
624 ui_set_statusbar(TRUE
, _("Project \"%s\" saved."), app
->project
->name
);
630 build_free_fields(e
.build_properties
);
631 g_signal_emit_by_name(geany_object
, "project-dialog-close", e
.notebook
);
632 gtk_notebook_remove_page(GTK_NOTEBOOK(e
.notebook
), e
.build_page_num
);
633 gtk_widget_hide(e
.dialog
);
637 void project_properties(void)
639 show_project_properties(FALSE
);
643 void project_build_properties(void)
645 show_project_properties(TRUE
);
649 /* checks whether there is an already open project and asks the user if he wants to close it or
650 * abort the current action. Returns FALSE when the current action(the caller) should be cancelled
651 * and TRUE if we can go ahead */
652 gboolean
project_ask_close(void)
654 if (app
->project
!= NULL
)
656 if (dialogs_show_question_full(NULL
, GTK_STOCK_CLOSE
, GTK_STOCK_CANCEL
,
657 _("Do you want to close it before proceeding?"),
658 _("The '%s' project is open."), app
->project
->name
))
660 return project_close(FALSE
);
670 static GeanyProject
*create_project(void)
672 GeanyProject
*project
= g_new0(GeanyProject
, 1);
674 memset(&priv
, 0, sizeof priv
);
675 priv
.indentation
= &indentation
;
676 project
->priv
= &priv
;
680 project
->file_patterns
= NULL
;
682 project
->priv
->long_line_behaviour
= 1 /* use global settings */;
683 project
->priv
->long_line_column
= editor_prefs
.long_line_column
;
685 app
->project
= project
;
690 /* Verifies data for New & Properties dialogs.
691 * Creates app->project if NULL.
692 * Returns: FALSE if the user needs to change any data. */
693 static gboolean
update_config(const PropertyDialogElements
*e
, gboolean new_project
)
695 const gchar
*name
, *file_name
, *base_path
;
696 gchar
*locale_filename
;
701 g_return_val_if_fail(e
!= NULL
, TRUE
);
703 name
= gtk_entry_get_text(GTK_ENTRY(e
->name
));
704 name_len
= strlen(name
);
707 SHOW_ERR(_("The specified project name is too short."));
708 gtk_widget_grab_focus(e
->name
);
711 else if (name_len
> MAX_NAME_LEN
)
713 SHOW_ERR1(_("The specified project name is too long (max. %d characters)."), MAX_NAME_LEN
);
714 gtk_widget_grab_focus(e
->name
);
719 file_name
= gtk_entry_get_text(GTK_ENTRY(e
->file_name
));
721 file_name
= gtk_label_get_text(GTK_LABEL(e
->file_name
));
723 if (G_UNLIKELY(EMPTY(file_name
)))
725 SHOW_ERR(_("You have specified an invalid project filename."));
726 gtk_widget_grab_focus(e
->file_name
);
730 locale_filename
= utils_get_locale_from_utf8(file_name
);
731 base_path
= gtk_entry_get_text(GTK_ENTRY(e
->base_path
));
732 if (!EMPTY(base_path
))
733 { /* check whether the given directory actually exists */
734 gchar
*locale_path
= utils_get_locale_from_utf8(base_path
);
736 if (! g_path_is_absolute(locale_path
))
737 { /* relative base path, so add base dir of project file name */
738 gchar
*dir
= g_path_get_dirname(locale_filename
);
739 SETPTR(locale_path
, g_build_filename(dir
, locale_path
, NULL
));
743 if (! g_file_test(locale_path
, G_FILE_TEST_IS_DIR
))
747 create_dir
= dialogs_show_question_full(NULL
, GTK_STOCK_OK
, GTK_STOCK_CANCEL
,
748 _("Create the project's base path directory?"),
749 _("The path \"%s\" does not exist."),
753 err_code
= utils_mkdir(locale_path
, TRUE
);
755 if (! create_dir
|| err_code
!= 0)
758 SHOW_ERR1(_("Project base directory could not be created (%s)."),
759 g_strerror(err_code
));
760 gtk_widget_grab_focus(e
->base_path
);
761 utils_free_pointers(2, locale_path
, locale_filename
, NULL
);
767 /* finally test whether the given project file can be written */
768 if ((err_code
= utils_is_file_writable(locale_filename
)) != 0 ||
769 (err_code
= g_file_test(locale_filename
, G_FILE_TEST_IS_DIR
) ? EISDIR
: 0) != 0)
771 SHOW_ERR1(_("Project file could not be written (%s)."), g_strerror(err_code
));
772 gtk_widget_grab_focus(e
->file_name
);
773 g_free(locale_filename
);
776 else if (new_project
&& g_file_test(locale_filename
, G_FILE_TEST_EXISTS
) &&
777 ! dialogs_show_question_full(NULL
, _("_Replace"), GTK_STOCK_CANCEL
,
779 _("The file '%s' already exists. Do you want to overwrite it?"),
782 gtk_widget_grab_focus(e
->file_name
);
783 g_free(locale_filename
);
786 g_free(locale_filename
);
788 if (app
->project
== NULL
)
795 SETPTR(p
->name
, g_strdup(name
));
796 SETPTR(p
->file_name
, g_strdup(file_name
));
797 /* use "." if base_path is empty */
798 SETPTR(p
->base_path
, g_strdup(!EMPTY(base_path
) ? base_path
: "./"));
800 if (! new_project
) /* save properties specific fields */
802 GtkTextIter start
, end
;
803 GtkTextBuffer
*buffer
;
804 GeanyDocument
*doc
= document_get_current();
805 GeanyBuildCommand
*oldvalue
;
806 GeanyFiletype
*ft
= doc
? doc
->file_type
: NULL
;
812 /* get and set the project description */
813 buffer
= gtk_text_view_get_buffer(GTK_TEXT_VIEW(e
->description
));
814 gtk_text_buffer_get_start_iter(buffer
, &start
);
815 gtk_text_buffer_get_end_iter(buffer
, &end
);
816 SETPTR(p
->description
, gtk_text_buffer_get_text(buffer
, &start
, &end
, FALSE
));
818 foreach_slist(node
, stash_groups
)
819 stash_group_update(node
->data
, e
->dialog
);
821 /* read the project build menu */
822 oldvalue
= ft
? ft
->priv
->projfilecmds
: NULL
;
823 build_read_project(ft
, e
->build_properties
);
825 if (ft
!= NULL
&& ft
->priv
->projfilecmds
!= oldvalue
&& ft
->priv
->project_list_entry
< 0)
827 if (p
->priv
->build_filetypes_list
== NULL
)
828 p
->priv
->build_filetypes_list
= g_ptr_array_new();
829 ft
->priv
->project_list_entry
= p
->priv
->build_filetypes_list
->len
;
830 g_ptr_array_add(p
->priv
->build_filetypes_list
, ft
);
832 build_menu_update(doc
);
834 widget
= ui_lookup_widget(e
->dialog
, "radio_long_line_disabled_project");
835 if (gtk_toggle_button_get_active(GTK_TOGGLE_BUTTON(widget
)))
836 p
->priv
->long_line_behaviour
= 0;
839 widget
= ui_lookup_widget(e
->dialog
, "radio_long_line_default_project");
840 if (gtk_toggle_button_get_active(GTK_TOGGLE_BUTTON(widget
)))
841 p
->priv
->long_line_behaviour
= 1;
843 /* "Custom" radio button must be checked */
844 p
->priv
->long_line_behaviour
= 2;
847 widget
= ui_lookup_widget(e
->dialog
, "spin_long_line_project");
848 p
->priv
->long_line_column
= gtk_spin_button_get_value_as_int(GTK_SPIN_BUTTON(widget
));
849 apply_editor_prefs();
851 /* get and set the project file patterns */
852 tmp
= g_strdup(gtk_entry_get_text(GTK_ENTRY(e
->patterns
)));
853 g_strfreev(p
->file_patterns
);
855 str
= g_string_new(tmp
);
856 do {} while (utils_string_replace_all(str
, " ", " "));
857 p
->file_patterns
= g_strsplit(str
->str
, " ", -1);
858 g_string_free(str
, TRUE
);
869 static void run_dialog(GtkWidget
*dialog
, GtkWidget
*entry
)
871 /* set filename in the file chooser dialog */
872 const gchar
*utf8_filename
= gtk_entry_get_text(GTK_ENTRY(entry
));
873 gchar
*locale_filename
= utils_get_locale_from_utf8(utf8_filename
);
875 if (g_path_is_absolute(locale_filename
))
877 if (g_file_test(locale_filename
, G_FILE_TEST_EXISTS
))
879 /* if the current filename is a directory, we must use
880 * gtk_file_chooser_set_current_folder(which expects a locale filename) otherwise
881 * we end up in the parent directory */
882 if (g_file_test(locale_filename
, G_FILE_TEST_IS_DIR
))
883 gtk_file_chooser_set_current_folder(GTK_FILE_CHOOSER(dialog
), locale_filename
);
885 gtk_file_chooser_set_filename(GTK_FILE_CHOOSER(dialog
), utf8_filename
);
887 else /* if the file doesn't yet exist, use at least the current directory */
889 gchar
*locale_dir
= g_path_get_dirname(locale_filename
);
890 gchar
*name
= g_path_get_basename(utf8_filename
);
892 if (g_file_test(locale_dir
, G_FILE_TEST_EXISTS
))
893 gtk_file_chooser_set_current_folder(GTK_FILE_CHOOSER(dialog
), locale_dir
);
894 gtk_file_chooser_set_current_name(GTK_FILE_CHOOSER(dialog
), name
);
900 else if (gtk_file_chooser_get_action(GTK_FILE_CHOOSER(dialog
)) != GTK_FILE_CHOOSER_ACTION_OPEN
)
902 gtk_file_chooser_set_current_name(GTK_FILE_CHOOSER(dialog
), utf8_filename
);
904 g_free(locale_filename
);
907 if (gtk_dialog_run(GTK_DIALOG(dialog
)) == GTK_RESPONSE_ACCEPT
)
909 gchar
*filename
= gtk_file_chooser_get_filename(GTK_FILE_CHOOSER(dialog
));
910 gchar
*tmp_utf8_filename
= utils_get_utf8_from_locale(filename
);
912 gtk_entry_set_text(GTK_ENTRY(entry
), tmp_utf8_filename
);
914 g_free(tmp_utf8_filename
);
917 gtk_widget_destroy(dialog
);
922 static void on_file_save_button_clicked(GtkButton
*button
, PropertyDialogElements
*e
)
925 gchar
*path
= win32_show_project_open_dialog(e
->dialog
, _("Choose Project Filename"),
926 gtk_entry_get_text(GTK_ENTRY(e
->file_name
)), TRUE
, TRUE
);
929 gtk_entry_set_text(GTK_ENTRY(e
->file_name
), path
);
935 /* initialise the dialog */
936 dialog
= gtk_file_chooser_dialog_new(_("Choose Project Filename"), NULL
,
937 GTK_FILE_CHOOSER_ACTION_SAVE
,
938 GTK_STOCK_CANCEL
, GTK_RESPONSE_CANCEL
,
939 GTK_STOCK_SAVE
, GTK_RESPONSE_ACCEPT
, NULL
);
940 gtk_widget_set_name(dialog
, "GeanyDialogProject");
941 gtk_window_set_destroy_with_parent(GTK_WINDOW(dialog
), TRUE
);
942 gtk_window_set_skip_taskbar_hint(GTK_WINDOW(dialog
), TRUE
);
943 gtk_window_set_type_hint(GTK_WINDOW(dialog
), GDK_WINDOW_TYPE_HINT_DIALOG
);
944 gtk_dialog_set_default_response(GTK_DIALOG(dialog
), GTK_RESPONSE_ACCEPT
);
946 run_dialog(dialog
, e
->file_name
);
951 /* sets the project base path and the project file name according to the project name */
952 static void on_name_entry_changed(GtkEditable
*editable
, PropertyDialogElements
*e
)
957 const gchar
*project_dir
= local_prefs
.project_file_path
;
959 if (e
->entries_modified
)
962 name
= gtk_editable_get_chars(editable
, 0, -1);
965 base_path
= g_strconcat(project_dir
, G_DIR_SEPARATOR_S
,
966 name
, G_DIR_SEPARATOR_S
, NULL
);
967 if (project_prefs
.project_file_in_basedir
)
968 file_name
= g_strconcat(project_dir
, G_DIR_SEPARATOR_S
, name
, G_DIR_SEPARATOR_S
,
969 name
, "." GEANY_PROJECT_EXT
, NULL
);
971 file_name
= g_strconcat(project_dir
, G_DIR_SEPARATOR_S
,
972 name
, "." GEANY_PROJECT_EXT
, NULL
);
976 base_path
= g_strconcat(project_dir
, G_DIR_SEPARATOR_S
, NULL
);
977 file_name
= g_strconcat(project_dir
, G_DIR_SEPARATOR_S
, NULL
);
981 gtk_entry_set_text(GTK_ENTRY(e
->base_path
), base_path
);
982 gtk_entry_set_text(GTK_ENTRY(e
->file_name
), file_name
);
984 e
->entries_modified
= FALSE
;
991 static void on_entries_changed(GtkEditable
*editable
, PropertyDialogElements
*e
)
993 e
->entries_modified
= TRUE
;
997 static void on_radio_long_line_custom_toggled(GtkToggleButton
*radio
, GtkWidget
*spin_long_line
)
999 gtk_widget_set_sensitive(spin_long_line
, gtk_toggle_button_get_active(radio
));
1003 gboolean
project_load_file(const gchar
*locale_file_name
)
1005 g_return_val_if_fail(locale_file_name
!= NULL
, FALSE
);
1007 if (load_config(locale_file_name
))
1009 gchar
*utf8_filename
= utils_get_utf8_from_locale(locale_file_name
);
1011 ui_set_statusbar(TRUE
, _("Project \"%s\" opened."), app
->project
->name
);
1013 ui_add_recent_project_file(utf8_filename
);
1014 g_free(utf8_filename
);
1019 gchar
*utf8_filename
= utils_get_utf8_from_locale(locale_file_name
);
1021 ui_set_statusbar(TRUE
, _("Project file \"%s\" could not be loaded."), utf8_filename
);
1022 g_free(utf8_filename
);
1028 /* Reads the given filename and creates a new project with the data found in the file.
1029 * At this point there should not be an already opened project in Geany otherwise it will just
1031 * The filename is expected in the locale encoding. */
1032 static gboolean
load_config(const gchar
*filename
)
1038 /* there should not be an open project */
1039 g_return_val_if_fail(app
->project
== NULL
&& filename
!= NULL
, FALSE
);
1041 config
= g_key_file_new();
1042 if (! g_key_file_load_from_file(config
, filename
, G_KEY_FILE_NONE
, NULL
))
1044 g_key_file_free(config
);
1048 p
= create_project();
1050 foreach_slist(node
, stash_groups
)
1051 stash_group_load_from_key_file(node
->data
, config
);
1053 p
->name
= utils_get_setting_string(config
, "project", "name", GEANY_STRING_UNTITLED
);
1054 p
->description
= utils_get_setting_string(config
, "project", "description", "");
1055 p
->file_name
= utils_get_utf8_from_locale(filename
);
1056 p
->base_path
= utils_get_setting_string(config
, "project", "base_path", "");
1057 p
->file_patterns
= g_key_file_get_string_list(config
, "project", "file_patterns", NULL
, NULL
);
1059 p
->priv
->long_line_behaviour
= utils_get_setting_integer(config
, "long line marker",
1060 "long_line_behaviour", 1 /* follow global */);
1061 p
->priv
->long_line_column
= utils_get_setting_integer(config
, "long line marker",
1062 "long_line_column", editor_prefs
.long_line_column
);
1063 apply_editor_prefs();
1065 build_load_menu(config
, GEANY_BCS_PROJ
, (gpointer
)p
);
1066 if (project_prefs
.project_session
)
1068 /* save current (non-project) session (it could have been changed since program startup) */
1069 configuration_save_default_session();
1070 /* now close all open files */
1071 document_close_all();
1072 /* read session files so they can be opened with configuration_open_files() */
1073 configuration_load_session_files(config
, FALSE
);
1075 g_signal_emit_by_name(geany_object
, "project-open", config
);
1076 g_key_file_free(config
);
1083 static void apply_editor_prefs(void)
1088 editor_apply_update_prefs(documents
[i
]->editor
);
1092 /* Write the project settings as well as the project session files into its configuration files.
1093 * emit_signal defines whether the project-save signal should be emitted. When write_config()
1094 * is called while closing a project, this is used to skip emitting the signal because
1095 * project-close will be emitted afterwards.
1096 * Returns: TRUE if project file was written successfully. */
1097 static gboolean
write_config(gboolean emit_signal
)
1103 gboolean ret
= FALSE
;
1106 g_return_val_if_fail(app
->project
!= NULL
, FALSE
);
1110 config
= g_key_file_new();
1111 /* try to load an existing config to keep manually added comments */
1112 filename
= utils_get_locale_from_utf8(p
->file_name
);
1113 g_key_file_load_from_file(config
, filename
, G_KEY_FILE_NONE
, NULL
);
1115 foreach_slist(node
, stash_groups
)
1116 stash_group_save_to_key_file(node
->data
, config
);
1118 g_key_file_set_string(config
, "project", "name", p
->name
);
1119 g_key_file_set_string(config
, "project", "base_path", p
->base_path
);
1122 g_key_file_set_string(config
, "project", "description", p
->description
);
1123 if (p
->file_patterns
)
1124 g_key_file_set_string_list(config
, "project", "file_patterns",
1125 (const gchar
**) p
->file_patterns
, g_strv_length(p
->file_patterns
));
1128 g_key_file_set_integer(config
, "long line marker", "long_line_behaviour", p
->priv
->long_line_behaviour
);
1129 g_key_file_set_integer(config
, "long line marker", "long_line_column", p
->priv
->long_line_column
);
1131 /* store the session files into the project too */
1132 if (project_prefs
.project_session
)
1133 configuration_save_session_files(config
);
1134 build_save_menu(config
, (gpointer
)p
, GEANY_BCS_PROJ
);
1137 g_signal_emit_by_name(geany_object
, "project-save", config
);
1139 /* write the file */
1140 data
= g_key_file_to_data(config
, NULL
, NULL
);
1141 ret
= (utils_write_file(filename
, data
) == 0);
1145 g_key_file_free(config
);
1151 /** Forces the project file rewrite and emission of the project-save signal. Plugins
1152 * can use this function to save additional project data outside the project dialog.
1157 void project_write_config(void)
1159 if (!write_config(TRUE
))
1160 SHOW_ERR(_("Project file could not be written"));
1164 /* Constructs the project's base path which is used for "Make all" and "Execute".
1165 * The result is an absolute string in UTF-8 encoding which is either the same as
1166 * base path if it is absolute or it is built out of project file name's dir and base_path.
1167 * If there is no project or project's base_path is invalid, NULL will be returned.
1168 * The returned string should be freed when no longer needed. */
1169 gchar
*project_get_base_path(void)
1171 GeanyProject
*project
= app
->project
;
1173 if (project
&& !EMPTY(project
->base_path
))
1175 if (g_path_is_absolute(project
->base_path
))
1176 return g_strdup(project
->base_path
);
1178 { /* build base_path out of project file name's dir and base_path */
1180 gchar
*dir
= g_path_get_dirname(project
->file_name
);
1182 if (utils_str_equal(project
->base_path
, "./"))
1185 path
= g_build_filename(dir
, project
->base_path
, NULL
);
1194 /* This is to save project-related global settings, NOT project file settings. */
1195 void project_save_prefs(GKeyFile
*config
)
1197 GeanyProject
*project
= app
->project
;
1199 if (cl_options
.load_session
)
1201 const gchar
*utf8_filename
= (project
== NULL
) ? "" : project
->file_name
;
1203 g_key_file_set_string(config
, "project", "session_file", utf8_filename
);
1205 g_key_file_set_string(config
, "project", "project_file_path",
1206 FALLBACK(local_prefs
.project_file_path
, ""));
1210 void project_load_prefs(GKeyFile
*config
)
1212 if (cl_options
.load_session
)
1214 g_return_if_fail(project_prefs
.session_file
== NULL
);
1215 project_prefs
.session_file
= utils_get_setting_string(config
, "project",
1216 "session_file", "");
1218 local_prefs
.project_file_path
= utils_get_setting_string(config
, "project",
1219 "project_file_path", NULL
);
1220 if (local_prefs
.project_file_path
== NULL
)
1222 local_prefs
.project_file_path
= g_build_filename(g_get_home_dir(), PROJECT_DIR
, NULL
);
1227 /* Initialize project-related preferences in the Preferences dialog. */
1228 void project_setup_prefs(void)
1230 GtkWidget
*path_entry
= ui_lookup_widget(ui_widgets
.prefs_dialog
, "project_file_path_entry");
1231 GtkWidget
*path_btn
= ui_lookup_widget(ui_widgets
.prefs_dialog
, "project_file_path_button");
1232 static gboolean callback_setup
= FALSE
;
1234 g_return_if_fail(local_prefs
.project_file_path
!= NULL
);
1236 gtk_entry_set_text(GTK_ENTRY(path_entry
), local_prefs
.project_file_path
);
1237 if (! callback_setup
)
1238 { /* connect the callback only once */
1239 callback_setup
= TRUE
;
1240 ui_setup_open_button_callback(path_btn
, NULL
,
1241 GTK_FILE_CHOOSER_ACTION_SELECT_FOLDER
, GTK_ENTRY(path_entry
));
1246 /* Update project-related preferences after using the Preferences dialog. */
1247 void project_apply_prefs(void)
1249 GtkWidget
*path_entry
= ui_lookup_widget(ui_widgets
.prefs_dialog
, "project_file_path_entry");
1252 str
= gtk_entry_get_text(GTK_ENTRY(path_entry
));
1253 SETPTR(local_prefs
.project_file_path
, g_strdup(str
));
1257 static void add_stash_group(StashGroup
*group
, gboolean apply_defaults
)
1261 stash_groups
= g_slist_prepend(stash_groups
, group
);
1262 if (!apply_defaults
)
1265 kf
= g_key_file_new();
1266 stash_group_load_from_key_file(group
, kf
);
1267 g_key_file_free(kf
);
1271 static void init_stash_prefs(void)
1275 group
= stash_group_new("indentation");
1276 /* copy global defaults */
1277 indentation
= *editor_get_indent_prefs(NULL
);
1278 stash_group_set_use_defaults(group
, FALSE
);
1279 add_stash_group(group
, FALSE
);
1281 stash_group_add_spin_button_integer(group
, &indentation
.width
,
1282 "indent_width", 4, "spin_indent_width_project");
1283 stash_group_add_radio_buttons(group
, (gint
*)(gpointer
)&indentation
.type
,
1284 "indent_type", GEANY_INDENT_TYPE_TABS
,
1285 "radio_indent_spaces_project", GEANY_INDENT_TYPE_SPACES
,
1286 "radio_indent_tabs_project", GEANY_INDENT_TYPE_TABS
,
1287 "radio_indent_both_project", GEANY_INDENT_TYPE_BOTH
,
1289 /* This is a 'hidden' pref for backwards-compatibility */
1290 stash_group_add_integer(group
, &indentation
.hard_tab_width
,
1291 "indent_hard_tab_width", 8);
1292 stash_group_add_toggle_button(group
, &indentation
.detect_type
,
1293 "detect_indent", FALSE
, "check_detect_indent_type_project");
1294 stash_group_add_toggle_button(group
, &indentation
.detect_width
,
1295 "detect_indent_width", FALSE
, "check_detect_indent_width_project");
1296 stash_group_add_combo_box(group
, (gint
*)(gpointer
)&indentation
.auto_indent_mode
,
1297 "indent_mode", GEANY_AUTOINDENT_CURRENTCHARS
, "combo_auto_indent_mode_project");
1299 group
= stash_group_new("file_prefs");
1300 stash_group_add_toggle_button(group
, &priv
.final_new_line
,
1301 "final_new_line", file_prefs
.final_new_line
, "check_new_line1");
1302 stash_group_add_toggle_button(group
, &priv
.ensure_convert_new_lines
,
1303 "ensure_convert_new_lines", file_prefs
.ensure_convert_new_lines
, "check_ensure_convert_new_lines1");
1304 stash_group_add_toggle_button(group
, &priv
.strip_trailing_spaces
,
1305 "strip_trailing_spaces", file_prefs
.strip_trailing_spaces
, "check_trailing_spaces1");
1306 stash_group_add_toggle_button(group
, &priv
.replace_tabs
,
1307 "replace_tabs", file_prefs
.replace_tabs
, "check_replace_tabs1");
1308 add_stash_group(group
, TRUE
);
1310 group
= stash_group_new("editor");
1311 stash_group_add_toggle_button(group
, &priv
.line_wrapping
,
1312 "line_wrapping", editor_prefs
.line_wrapping
, "check_line_wrapping1");
1313 stash_group_add_spin_button_integer(group
, &priv
.line_break_column
,
1314 "line_break_column", editor_prefs
.line_break_column
, "spin_line_break1");
1315 stash_group_add_toggle_button(group
, &priv
.auto_continue_multiline
,
1316 "auto_continue_multiline", editor_prefs
.auto_continue_multiline
,
1317 "check_auto_multiline1");
1318 add_stash_group(group
, TRUE
);
1322 #define COPY_PREF(dest, prefname)\
1323 (dest.prefname = priv.prefname)
1325 const GeanyFilePrefs
*project_get_file_prefs(void)
1327 static GeanyFilePrefs fp
;
1333 COPY_PREF(fp
, final_new_line
);
1334 COPY_PREF(fp
, ensure_convert_new_lines
);
1335 COPY_PREF(fp
, strip_trailing_spaces
);
1336 COPY_PREF(fp
, replace_tabs
);
1341 void project_init(void)
1346 void project_finalize(void)