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.
34 #include "projectprivate.h"
41 #include "msgwindow.h"
46 #include "interface.h"
50 #include "filetypes.h"
53 ProjectPrefs project_prefs
= { NULL
, FALSE
, FALSE
};
56 static GeanyProjectPrivate priv
;
57 static GeanyIndentPrefs indentation
;
59 static StashGroup
*indent_group
= NULL
;
63 gchar
*project_file_path
; /* in UTF-8 */
64 } local_prefs
= { NULL
};
67 static gboolean entries_modified
;
69 /* simple struct to keep references to the elements of the properties dialog */
70 typedef struct _PropertyDialogElements
75 GtkWidget
*description
;
79 BuildTableData build_properties
;
80 } PropertyDialogElements
;
83 static gboolean
update_config(const PropertyDialogElements
*e
);
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);
93 #define SHOW_ERR(args) dialogs_show_msgbox(GTK_MESSAGE_ERROR, args)
94 #define SHOW_ERR1(args, more) dialogs_show_msgbox(GTK_MESSAGE_ERROR, args, more)
95 #define MAX_NAME_LEN 50
96 /* "projects" is part of the default project base path so be careful when translating
97 * please avoid special characters and spaces, look at the source for details or ask Frank */
98 #define PROJECT_DIR _("projects")
101 void project_new(void)
109 PropertyDialogElements
*e
;
111 if (! project_ask_close())
114 g_return_if_fail(app
->project
== NULL
);
116 e
= g_new0(PropertyDialogElements
, 1);
117 e
->dialog
= gtk_dialog_new_with_buttons(_("New Project"), GTK_WINDOW(main_widgets
.window
),
118 GTK_DIALOG_DESTROY_WITH_PARENT
,
119 GTK_STOCK_CANCEL
, GTK_RESPONSE_CANCEL
, NULL
);
121 gtk_widget_set_name(e
->dialog
, "GeanyDialogProject");
122 bbox
= gtk_hbox_new(FALSE
, 0);
123 button
= gtk_button_new();
124 image
= gtk_image_new_from_stock("gtk-new", GTK_ICON_SIZE_BUTTON
);
125 label
= gtk_label_new_with_mnemonic(_("C_reate"));
126 gtk_box_pack_start(GTK_BOX(bbox
), image
, FALSE
, FALSE
, 3);
127 gtk_box_pack_start(GTK_BOX(bbox
), label
, FALSE
, FALSE
, 3);
128 gtk_container_add(GTK_CONTAINER(button
), bbox
);
129 gtk_dialog_add_action_widget(GTK_DIALOG(e
->dialog
), button
, GTK_RESPONSE_OK
);
131 vbox
= ui_dialog_vbox_new(GTK_DIALOG(e
->dialog
));
133 entries_modified
= FALSE
;
135 table
= gtk_table_new(3, 2, FALSE
);
136 gtk_table_set_row_spacings(GTK_TABLE(table
), 5);
137 gtk_table_set_col_spacings(GTK_TABLE(table
), 10);
139 label
= gtk_label_new(_("Name:"));
140 gtk_misc_set_alignment(GTK_MISC(label
), 1, 0);
142 e
->name
= gtk_entry_new();
143 ui_entry_add_clear_icon(GTK_ENTRY(e
->name
));
144 gtk_entry_set_max_length(GTK_ENTRY(e
->name
), MAX_NAME_LEN
);
146 ui_table_add_row(GTK_TABLE(table
), 0, label
, e
->name
, NULL
);
148 label
= gtk_label_new(_("Filename:"));
149 gtk_misc_set_alignment(GTK_MISC(label
), 1, 0);
151 e
->file_name
= gtk_entry_new();
152 ui_entry_add_clear_icon(GTK_ENTRY(e
->file_name
));
153 gtk_entry_set_width_chars(GTK_ENTRY(e
->file_name
), 30);
154 button
= gtk_button_new();
155 g_signal_connect(button
, "clicked", G_CALLBACK(on_file_save_button_clicked
), e
);
156 image
= gtk_image_new_from_stock("gtk-open", GTK_ICON_SIZE_BUTTON
);
157 gtk_container_add(GTK_CONTAINER(button
), image
);
158 bbox
= gtk_hbox_new(FALSE
, 6);
159 gtk_box_pack_start_defaults(GTK_BOX(bbox
), e
->file_name
);
160 gtk_box_pack_start(GTK_BOX(bbox
), button
, FALSE
, FALSE
, 0);
162 ui_table_add_row(GTK_TABLE(table
), 1, label
, bbox
, NULL
);
164 label
= gtk_label_new(_("Base path:"));
165 gtk_misc_set_alignment(GTK_MISC(label
), 1, 0);
167 e
->base_path
= gtk_entry_new();
168 ui_entry_add_clear_icon(GTK_ENTRY(e
->base_path
));
169 ui_widget_set_tooltip_text(e
->base_path
,
170 _("Base directory of all files that make up the project. "
171 "This can be a new path, or an existing directory tree. "
172 "You can use paths relative to the project filename."));
173 bbox
= ui_path_box_new(_("Choose Project Base Path"),
174 GTK_FILE_CHOOSER_ACTION_SELECT_FOLDER
, GTK_ENTRY(e
->base_path
));
176 ui_table_add_row(GTK_TABLE(table
), 2, label
, bbox
, NULL
);
178 gtk_container_add(GTK_CONTAINER(vbox
), table
);
181 g_signal_connect(e
->name
, "changed", G_CALLBACK(on_name_entry_changed
), e
);
182 /* run the callback manually to initialise the base_path and file_name fields */
183 on_name_entry_changed(GTK_EDITABLE(e
->name
), e
);
185 g_signal_connect(e
->file_name
, "changed", G_CALLBACK(on_entries_changed
), e
);
186 g_signal_connect(e
->base_path
, "changed", G_CALLBACK(on_entries_changed
), e
);
188 gtk_widget_show_all(e
->dialog
);
190 while (gtk_dialog_run(GTK_DIALOG(e
->dialog
)) == GTK_RESPONSE_OK
)
192 if (update_config(e
))
194 ui_add_recent_project_file(app
->project
->file_name
);
198 gtk_widget_destroy(e
->dialog
);
203 gboolean
project_load_file_with_session(const gchar
*locale_file_name
)
205 if (project_load_file(locale_file_name
))
207 if (project_prefs
.project_session
)
209 configuration_open_files();
210 /* open a new file if no other file was opened */
211 document_new_file_if_non_open();
220 static void run_open_dialog(GtkDialog
*dialog
)
222 while (gtk_dialog_run(dialog
) == GTK_RESPONSE_ACCEPT
)
224 gchar
*filename
= gtk_file_chooser_get_filename(GTK_FILE_CHOOSER(dialog
));
226 /* try to load the config */
227 if (! project_load_file_with_session(filename
))
229 gchar
*utf8_filename
= utils_get_utf8_from_locale(filename
);
231 SHOW_ERR1(_("Project file \"%s\" could not be loaded."), utf8_filename
);
232 gtk_widget_grab_focus(GTK_WIDGET(dialog
));
233 g_free(utf8_filename
);
244 void project_open(void)
246 const gchar
*dir
= local_prefs
.project_file_path
;
251 GtkFileFilter
*filter
;
254 if (! project_ask_close()) return;
257 file
= win32_show_project_open_dialog(main_widgets
.window
, _("Open Project"), dir
, FALSE
, TRUE
);
260 /* try to load the config */
261 if (! project_load_file_with_session(file
))
263 SHOW_ERR1(_("Project file \"%s\" could not be loaded."), file
);
269 dialog
= gtk_file_chooser_dialog_new(_("Open Project"), GTK_WINDOW(main_widgets
.window
),
270 GTK_FILE_CHOOSER_ACTION_OPEN
,
271 GTK_STOCK_CANCEL
, GTK_RESPONSE_CANCEL
,
272 GTK_STOCK_OPEN
, GTK_RESPONSE_ACCEPT
, NULL
);
273 gtk_widget_set_name(dialog
, "GeanyDialogProject");
275 /* set default Open, so pressing enter can open multiple files */
276 gtk_dialog_set_default_response(GTK_DIALOG(dialog
), GTK_RESPONSE_ACCEPT
);
277 gtk_window_set_destroy_with_parent(GTK_WINDOW(dialog
), TRUE
);
278 gtk_window_set_skip_taskbar_hint(GTK_WINDOW(dialog
), TRUE
);
279 gtk_window_set_type_hint(GTK_WINDOW(dialog
), GDK_WINDOW_TYPE_HINT_DIALOG
);
280 gtk_window_set_transient_for(GTK_WINDOW(dialog
), GTK_WINDOW(main_widgets
.window
));
281 gtk_file_chooser_set_select_multiple(GTK_FILE_CHOOSER(dialog
), TRUE
);
283 /* add FileFilters */
284 filter
= gtk_file_filter_new();
285 gtk_file_filter_set_name(filter
, _("All files"));
286 gtk_file_filter_add_pattern(filter
, "*");
287 gtk_file_chooser_add_filter(GTK_FILE_CHOOSER(dialog
), filter
);
288 filter
= gtk_file_filter_new();
289 gtk_file_filter_set_name(filter
, _("Project files"));
290 gtk_file_filter_add_pattern(filter
, "*." GEANY_PROJECT_EXT
);
291 gtk_file_chooser_add_filter(GTK_FILE_CHOOSER(dialog
), filter
);
292 gtk_file_chooser_set_filter(GTK_FILE_CHOOSER(dialog
), filter
);
294 locale_path
= utils_get_locale_from_utf8(dir
);
295 if (g_file_test(locale_path
, G_FILE_TEST_EXISTS
) &&
296 g_file_test(locale_path
, G_FILE_TEST_IS_DIR
))
298 gtk_file_chooser_set_current_folder(GTK_FILE_CHOOSER(dialog
), locale_path
);
302 gtk_widget_show_all(dialog
);
303 run_open_dialog(GTK_DIALOG(dialog
));
304 gtk_widget_destroy(GTK_WIDGET(dialog
));
309 /* Called when creating, opening, closing and updating projects. */
310 static void update_ui(void)
312 if (main_status
.quitting
)
315 ui_set_window_title(NULL
);
316 build_menu_update(NULL
);
317 sidebar_openfiles_update_all();
321 static void remove_foreach_project_filetype(gpointer data
, gpointer user_data
)
323 GeanyFiletype
*ft
= (GeanyFiletype
*)data
;
326 setptr(ft
->projfilecmds
, NULL
);
327 setptr(ft
->projexeccmds
, NULL
);
328 setptr(ft
->projerror_regex_string
, NULL
);
329 ft
->project_list_entry
= -1;
334 /* open_default will make function reload default session files on close */
335 void project_close(gboolean open_default
)
337 g_return_if_fail(app
->project
!= NULL
);
339 ui_set_statusbar(TRUE
, _("Project \"%s\" closed."), app
->project
->name
);
341 /* use write_config() to save project session files */
344 /* remove project filetypes build entries */
345 if (app
->project
->build_filetypes_list
!= NULL
)
347 g_ptr_array_foreach(app
->project
->build_filetypes_list
, remove_foreach_project_filetype
, NULL
);
348 g_ptr_array_free(app
->project
->build_filetypes_list
, FALSE
);
351 /* remove project non filetype build menu items */
352 build_remove_menu_item(GEANY_BCS_PROJ
, GEANY_GBG_NON_FT
, -1);
353 build_remove_menu_item(GEANY_BCS_PROJ
, GEANY_GBG_EXEC
, -1);
355 g_free(app
->project
->name
);
356 g_free(app
->project
->description
);
357 g_free(app
->project
->file_name
);
358 g_free(app
->project
->base_path
);
360 g_free(app
->project
);
363 apply_editor_prefs(); /* ensure that global settings are restored */
365 if (project_prefs
.project_session
)
367 /* close all existing tabs first */
368 document_close_all();
370 /* after closing all tabs let's open the tabs found in the default config */
371 if (open_default
&& cl_options
.load_session
)
373 configuration_reload_default_session();
374 configuration_open_files();
375 /* open a new file if no other file was opened */
376 document_new_file_if_non_open();
379 g_signal_emit_by_name(geany_object
, "project-close");
385 static void on_set_use_base_path_clicked(GtkWidget
*unused1
, gpointer user_data
)
387 build_set_non_ft_wd_to_proj((BuildTableData
)user_data
);
391 static gint build_page_num
= 0;
393 static void create_properties_dialog(PropertyDialogElements
*e
)
395 GtkWidget
*table
, *notebook
, *build_table
;
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 build_page_num
= gtk_notebook_insert_page(GTK_NOTEBOOK(notebook
), build_table
, label
, 2);
482 e
->notebook
= notebook
;
484 label
= gtk_label_new(_("Set the Build non-filetype working directories to use base path:"));
485 gtk_misc_set_alignment(GTK_MISC(label
), 0, 0);
487 button
= gtk_button_new_with_label(_("Set"));
488 ui_widget_set_tooltip_text(button
,
489 _("Set the working directories (on the Build tab) "
490 "for the non-filetype build commands to use the base path"));
491 gtk_misc_set_alignment(GTK_MISC(label
), 0, 0);
492 g_signal_connect(button
, "clicked", G_CALLBACK(on_set_use_base_path_clicked
), e
->build_properties
);
493 bbox
= gtk_hbox_new(FALSE
, 6);
494 gtk_box_pack_start(GTK_BOX(bbox
), label
, TRUE
, TRUE
, 0);
495 gtk_box_pack_start(GTK_BOX(bbox
), button
, FALSE
, FALSE
, 0);
496 gtk_table_attach(GTK_TABLE(table
), bbox
, 0, 2, 4, 5,
497 (GtkAttachOptions
) (GTK_EXPAND
| GTK_FILL
),
498 (GtkAttachOptions
) (GTK_FILL
), 0, 0);
500 g_signal_connect(ui_lookup_widget(e
->dialog
, "radio_long_line_custom"), "toggled",
501 G_CALLBACK(on_radio_long_line_custom_toggled
), ui_lookup_widget(e
->dialog
, "spin_long_line"));
504 label
= gtk_label_new(_("File patterns:"));
505 /* <small>Separate multiple patterns by a new line</small> */
506 gtk_table_attach(GTK_TABLE(table
), label
, 0, 1, 6, 7,
507 (GtkAttachOptions
) (GTK_FILL
),
508 (GtkAttachOptions
) (GTK_FILL
), 0, 0);
509 gtk_misc_set_alignment(GTK_MISC(label
), 0, 0);
511 e
->patterns
= gtk_text_view_new();
512 swin
= gtk_scrolled_window_new(NULL
, NULL
);
513 gtk_widget_set_size_request(swin
, -1, 80);
514 gtk_scrolled_window_set_policy(GTK_SCROLLED_WINDOW(swin
),
515 GTK_POLICY_AUTOMATIC
, GTK_POLICY_AUTOMATIC
);
516 gtk_scrolled_window_add_with_viewport(GTK_SCROLLED_WINDOW(swin
), GTK_WIDGET(e
->patterns
));
517 gtk_table_attach(GTK_TABLE(table
), swin
, 1, 2, 6, 7,
518 (GtkAttachOptions
) (GTK_EXPAND
| GTK_FILL
),
519 (GtkAttachOptions
) (0), 0, 0);
522 label
= gtk_label_new(_("Project"));
523 gtk_notebook_insert_page(GTK_NOTEBOOK(notebook
), table
, label
, 0);
528 static void show_project_properties(gboolean show_build
)
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
)
563 GtkTextBuffer
*buffer
= gtk_text_view_get_buffer(GTK_TEXT_VIEW(e
->description
));
564 gtk_text_buffer_set_text(buffer
, p
->description
, -1);
568 if (p
->file_patterns
!= NULL
)
569 { /* set the file patterns */
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
);
588 gtk_widget_show_all(e
->dialog
);
590 /* note: notebook page must be shown before setting current page */
592 gtk_notebook_set_current_page(GTK_NOTEBOOK(e
->notebook
), build_page_num
);
594 gtk_notebook_set_current_page(GTK_NOTEBOOK(e
->notebook
), 0);
596 while (gtk_dialog_run(GTK_DIALOG(e
->dialog
)) == GTK_RESPONSE_OK
)
598 if (update_config(e
))
600 stash_group_update(indent_group
, e
->dialog
);
604 build_free_fields(e
->build_properties
);
605 gtk_widget_destroy(e
->dialog
);
610 void project_properties(void)
612 show_project_properties(FALSE
);
616 void project_build_properties(void)
618 show_project_properties(TRUE
);
622 /* checks whether there is an already open project and asks the user if he wants to close it or
623 * abort the current action. Returns FALSE when the current action(the caller) should be cancelled
624 * and TRUE if we can go ahead */
625 gboolean
project_ask_close(void)
627 if (app
->project
!= NULL
)
629 if (dialogs_show_question_full(NULL
, GTK_STOCK_CLOSE
, GTK_STOCK_CANCEL
,
630 _("Do you want to close it before proceeding?"),
631 _("The '%s' project is already open."), app
->project
->name
))
633 project_close(FALSE
);
644 static GeanyProject
*create_project(void)
646 GeanyProject
*project
= g_new0(GeanyProject
, 1);
648 memset(&priv
, 0, sizeof priv
);
649 indentation
= *editor_get_indent_prefs(NULL
);
650 priv
.indentation
= &indentation
;
651 project
->priv
= &priv
;
653 project
->long_line_behaviour
= 1 /* use global settings */;
654 project
->long_line_column
= editor_prefs
.long_line_global_column
;
656 app
->project
= project
;
661 /* Verifies data for New & Properties dialogs.
662 * Returns: FALSE if the user needs to change any data. */
663 static gboolean
update_config(const PropertyDialogElements
*e
)
665 const gchar
*name
, *file_name
, *base_path
;
666 gchar
*locale_filename
;
669 gboolean new_project
= FALSE
;
672 g_return_val_if_fail(e
!= NULL
, TRUE
);
674 name
= gtk_entry_get_text(GTK_ENTRY(e
->name
));
675 name_len
= strlen(name
);
678 SHOW_ERR(_("The specified project name is too short."));
679 gtk_widget_grab_focus(e
->name
);
682 else if (name_len
> MAX_NAME_LEN
)
684 SHOW_ERR1(_("The specified project name is too long (max. %d characters)."), MAX_NAME_LEN
);
685 gtk_widget_grab_focus(e
->name
);
689 file_name
= gtk_entry_get_text(GTK_ENTRY(e
->file_name
));
690 if (! NZV(file_name
))
692 SHOW_ERR(_("You have specified an invalid project filename."));
693 gtk_widget_grab_focus(e
->file_name
);
697 locale_filename
= utils_get_locale_from_utf8(file_name
);
698 base_path
= gtk_entry_get_text(GTK_ENTRY(e
->base_path
));
700 { /* check whether the given directory actually exists */
701 gchar
*locale_path
= utils_get_locale_from_utf8(base_path
);
703 if (! g_path_is_absolute(locale_path
))
704 { /* relative base path, so add base dir of project file name */
705 gchar
*dir
= g_path_get_dirname(locale_filename
);
706 setptr(locale_path
, g_strconcat(dir
, G_DIR_SEPARATOR_S
, locale_path
, NULL
));
710 if (! g_file_test(locale_path
, G_FILE_TEST_IS_DIR
))
714 create_dir
= dialogs_show_question_full(NULL
, GTK_STOCK_OK
, GTK_STOCK_CANCEL
,
715 _("Create the project's base path directory?"),
716 _("The path \"%s\" does not exist."),
720 err_code
= utils_mkdir(locale_path
, TRUE
);
722 if (! create_dir
|| err_code
!= 0)
725 SHOW_ERR1(_("Project base directory could not be created (%s)."),
726 g_strerror(err_code
));
727 gtk_widget_grab_focus(e
->base_path
);
728 utils_free_pointers(2, locale_path
, locale_filename
, NULL
);
734 /* finally test whether the given project file can be written */
735 if ((err_code
= utils_is_file_writeable(locale_filename
)) != 0)
737 SHOW_ERR1(_("Project file could not be written (%s)."), g_strerror(err_code
));
738 gtk_widget_grab_focus(e
->file_name
);
739 g_free(locale_filename
);
742 g_free(locale_filename
);
744 if (app
->project
== NULL
)
751 setptr(p
->name
, g_strdup(name
));
752 setptr(p
->file_name
, g_strdup(file_name
));
753 /* use "." if base_path is empty */
754 setptr(p
->base_path
, g_strdup(NZV(base_path
) ? base_path
: "./"));
756 if (! new_project
) /* save properties specific fields */
758 GtkTextIter start
, end
;
759 GtkTextBuffer
*buffer
;
760 GeanyDocument
*doc
= document_get_current();
761 GeanyBuildCommand
*oldvalue
;
762 GeanyFiletype
*ft
= doc
? doc
->file_type
: NULL
;
765 /* get and set the project description */
766 buffer
= gtk_text_view_get_buffer(GTK_TEXT_VIEW(e
->description
));
767 gtk_text_buffer_get_start_iter(buffer
, &start
);
768 gtk_text_buffer_get_end_iter(buffer
, &end
);
769 setptr(p
->description
, g_strdup(gtk_text_buffer_get_text(buffer
, &start
, &end
, FALSE
)));
771 /* read the project build menu */
772 oldvalue
= ft
? ft
->projfilecmds
: NULL
;
773 build_read_project(ft
, e
->build_properties
);
775 if (ft
!= NULL
&& ft
->projfilecmds
!= oldvalue
&& ft
->project_list_entry
< 0)
777 if (p
->build_filetypes_list
== NULL
)
778 p
->build_filetypes_list
= g_ptr_array_new();
779 ft
->project_list_entry
= p
->build_filetypes_list
->len
;
780 g_ptr_array_add(p
->build_filetypes_list
, ft
);
782 build_menu_update(doc
);
784 widget
= ui_lookup_widget(e
->dialog
, "radio_long_line_disabled");
785 if (gtk_toggle_button_get_active(GTK_TOGGLE_BUTTON(widget
)))
786 p
->long_line_behaviour
= 0;
789 widget
= ui_lookup_widget(e
->dialog
, "radio_long_line_default");
790 if (gtk_toggle_button_get_active(GTK_TOGGLE_BUTTON(widget
)))
791 p
->long_line_behaviour
= 1;
793 /* "Custom" radio button must be checked */
794 p
->long_line_behaviour
= 2;
797 widget
= ui_lookup_widget(e
->dialog
, "spin_long_line");
798 p
->long_line_column
= gtk_spin_button_get_value_as_int(GTK_SPIN_BUTTON(widget
));
799 apply_editor_prefs();
802 /* get and set the project file patterns */
803 buffer
= gtk_text_view_get_buffer(GTK_TEXT_VIEW(e
->patterns
));
804 gtk_text_buffer_get_start_iter(buffer
, &start
);
805 gtk_text_buffer_get_end_iter(buffer
, &end
);
806 tmp
= gtk_text_buffer_get_text(buffer
, &start
, &end
, FALSE
);
807 g_strfreev(p
->file_patterns
);
808 p
->file_patterns
= g_strsplit(tmp
, "\n", -1);
814 ui_set_statusbar(TRUE
, _("Project \"%s\" created."), p
->name
);
816 ui_set_statusbar(TRUE
, _("Project \"%s\" saved."), p
->name
);
825 static void run_dialog(GtkWidget
*dialog
, GtkWidget
*entry
)
827 /* set filename in the file chooser dialog */
828 const gchar
*utf8_filename
= gtk_entry_get_text(GTK_ENTRY(entry
));
829 gchar
*locale_filename
= utils_get_locale_from_utf8(utf8_filename
);
831 if (g_path_is_absolute(locale_filename
))
833 if (g_file_test(locale_filename
, G_FILE_TEST_EXISTS
))
835 /* if the current filename is a directory, we must use
836 * gtk_file_chooser_set_current_folder(which expects a locale filename) otherwise
837 * we end up in the parent directory */
838 if (g_file_test(locale_filename
, G_FILE_TEST_IS_DIR
))
839 gtk_file_chooser_set_current_folder(GTK_FILE_CHOOSER(dialog
), locale_filename
);
841 gtk_file_chooser_set_filename(GTK_FILE_CHOOSER(dialog
), utf8_filename
);
843 else /* if the file doesn't yet exist, use at least the current directory */
845 gchar
*locale_dir
= g_path_get_dirname(locale_filename
);
846 gchar
*name
= g_path_get_basename(utf8_filename
);
848 if (g_file_test(locale_dir
, G_FILE_TEST_EXISTS
))
849 gtk_file_chooser_set_current_folder(GTK_FILE_CHOOSER(dialog
), locale_dir
);
850 gtk_file_chooser_set_current_name(GTK_FILE_CHOOSER(dialog
), name
);
856 else if (gtk_file_chooser_get_action(GTK_FILE_CHOOSER(dialog
)) != GTK_FILE_CHOOSER_ACTION_OPEN
)
858 gtk_file_chooser_set_current_name(GTK_FILE_CHOOSER(dialog
), utf8_filename
);
860 g_free(locale_filename
);
863 if (gtk_dialog_run(GTK_DIALOG(dialog
)) == GTK_RESPONSE_ACCEPT
)
865 gchar
*filename
= gtk_file_chooser_get_filename(GTK_FILE_CHOOSER(dialog
));
866 gchar
*tmp_utf8_filename
= utils_get_utf8_from_locale(filename
);
868 gtk_entry_set_text(GTK_ENTRY(entry
), tmp_utf8_filename
);
870 g_free(tmp_utf8_filename
);
873 gtk_widget_destroy(dialog
);
878 static void on_file_save_button_clicked(GtkButton
*button
, PropertyDialogElements
*e
)
881 gchar
*path
= win32_show_project_open_dialog(e
->dialog
, _("Choose Project Filename"),
882 gtk_entry_get_text(GTK_ENTRY(e
->file_name
)), TRUE
, TRUE
);
885 gtk_entry_set_text(GTK_ENTRY(e
->file_name
), path
);
891 /* initialise the dialog */
892 dialog
= gtk_file_chooser_dialog_new(_("Choose Project Filename"), NULL
,
893 GTK_FILE_CHOOSER_ACTION_SAVE
,
894 GTK_STOCK_CANCEL
, GTK_RESPONSE_CANCEL
,
895 GTK_STOCK_SAVE
, GTK_RESPONSE_ACCEPT
, NULL
);
896 gtk_widget_set_name(dialog
, "GeanyDialogProject");
897 gtk_window_set_destroy_with_parent(GTK_WINDOW(dialog
), TRUE
);
898 gtk_window_set_skip_taskbar_hint(GTK_WINDOW(dialog
), TRUE
);
899 gtk_window_set_type_hint(GTK_WINDOW(dialog
), GDK_WINDOW_TYPE_HINT_DIALOG
);
900 gtk_dialog_set_default_response(GTK_DIALOG(dialog
), GTK_RESPONSE_ACCEPT
);
902 run_dialog(dialog
, e
->file_name
);
907 /* sets the project base path and the project file name according to the project name */
908 static void on_name_entry_changed(GtkEditable
*editable
, PropertyDialogElements
*e
)
913 const gchar
*project_dir
= local_prefs
.project_file_path
;
915 if (entries_modified
)
918 name
= gtk_editable_get_chars(editable
, 0, -1);
921 base_path
= g_strconcat(project_dir
, G_DIR_SEPARATOR_S
,
922 name
, G_DIR_SEPARATOR_S
, NULL
);
923 if (project_prefs
.project_file_in_basedir
)
924 file_name
= g_strconcat(project_dir
, G_DIR_SEPARATOR_S
, name
, G_DIR_SEPARATOR_S
,
925 name
, "." GEANY_PROJECT_EXT
, NULL
);
927 file_name
= g_strconcat(project_dir
, G_DIR_SEPARATOR_S
,
928 name
, "." GEANY_PROJECT_EXT
, NULL
);
932 base_path
= g_strconcat(project_dir
, G_DIR_SEPARATOR_S
, NULL
);
933 file_name
= g_strconcat(project_dir
, G_DIR_SEPARATOR_S
, NULL
);
937 gtk_entry_set_text(GTK_ENTRY(e
->base_path
), base_path
);
938 gtk_entry_set_text(GTK_ENTRY(e
->file_name
), file_name
);
940 entries_modified
= FALSE
;
947 static void on_entries_changed(GtkEditable
*editable
, PropertyDialogElements
*e
)
949 entries_modified
= TRUE
;
953 static void on_radio_long_line_custom_toggled(GtkToggleButton
*radio
, GtkWidget
*spin_long_line
)
955 gtk_widget_set_sensitive(spin_long_line
, gtk_toggle_button_get_active(radio
));
959 gboolean
project_load_file(const gchar
*locale_file_name
)
961 g_return_val_if_fail(locale_file_name
!= NULL
, FALSE
);
963 if (load_config(locale_file_name
))
965 gchar
*utf8_filename
= utils_get_utf8_from_locale(locale_file_name
);
967 ui_set_statusbar(TRUE
, _("Project \"%s\" opened."), app
->project
->name
);
969 ui_add_recent_project_file(utf8_filename
);
970 g_free(utf8_filename
);
975 gchar
*utf8_filename
= utils_get_utf8_from_locale(locale_file_name
);
977 ui_set_statusbar(TRUE
, _("Project file \"%s\" could not be loaded."), utf8_filename
);
978 g_free(utf8_filename
);
984 /* Reads the given filename and creates a new project with the data found in the file.
985 * At this point there should not be an already opened project in Geany otherwise it will just
987 * The filename is expected in the locale encoding. */
988 static gboolean
load_config(const gchar
*filename
)
993 /* there should not be an open project */
994 g_return_val_if_fail(app
->project
== NULL
&& filename
!= NULL
, FALSE
);
996 config
= g_key_file_new();
997 if (! g_key_file_load_from_file(config
, filename
, G_KEY_FILE_NONE
, NULL
))
999 g_key_file_free(config
);
1003 p
= create_project();
1005 stash_group_load_from_key_file(indent_group
, config
);
1007 p
->name
= utils_get_setting_string(config
, "project", "name", GEANY_STRING_UNTITLED
);
1008 p
->description
= utils_get_setting_string(config
, "project", "description", "");
1009 p
->file_name
= utils_get_utf8_from_locale(filename
);
1010 p
->base_path
= utils_get_setting_string(config
, "project", "base_path", "");
1011 p
->file_patterns
= g_key_file_get_string_list(config
, "project", "file_patterns", NULL
, NULL
);
1013 p
->long_line_behaviour
= utils_get_setting_integer(config
, "long line marker",
1014 "long_line_behaviour", 1 /* follow global */);
1015 p
->long_line_column
= utils_get_setting_integer(config
, "long line marker",
1016 "long_line_column", editor_prefs
.long_line_global_column
);
1017 apply_editor_prefs();
1019 build_load_menu(config
, GEANY_BCS_PROJ
, (gpointer
)p
);
1020 if (project_prefs
.project_session
)
1022 /* save current (non-project) session (it could has been changed since program startup) */
1023 configuration_save_default_session();
1024 /* now close all open files */
1025 document_close_all();
1026 /* read session files so they can be opened with configuration_open_files() */
1027 configuration_load_session_files(config
, FALSE
);
1029 g_signal_emit_by_name(geany_object
, "project-open", config
);
1030 g_key_file_free(config
);
1037 static void apply_editor_prefs(void)
1042 editor_apply_update_prefs(documents
[i
]->editor
);
1046 /* Write the project settings as well as the project session files into its configuration files.
1047 * emit_signal defines whether the project-save signal should be emitted. When write_config()
1048 * is called while closing a project, this is used to skip emitting the signal because
1049 * project-close will be emitted afterwards.
1050 * Returns: TRUE if project file was written successfully. */
1051 static gboolean
write_config(gboolean emit_signal
)
1057 gboolean ret
= FALSE
;
1059 g_return_val_if_fail(app
->project
!= NULL
, FALSE
);
1063 config
= g_key_file_new();
1064 /* try to load an existing config to keep manually added comments */
1065 filename
= utils_get_locale_from_utf8(p
->file_name
);
1066 g_key_file_load_from_file(config
, filename
, G_KEY_FILE_NONE
, NULL
);
1068 stash_group_save_to_key_file(indent_group
, config
);
1070 g_key_file_set_string(config
, "project", "name", p
->name
);
1071 g_key_file_set_string(config
, "project", "base_path", p
->base_path
);
1074 g_key_file_set_string(config
, "project", "description", p
->description
);
1075 if (p
->file_patterns
)
1076 g_key_file_set_string_list(config
, "project", "file_patterns",
1077 (const gchar
**) p
->file_patterns
, g_strv_length(p
->file_patterns
));
1079 g_key_file_set_integer(config
, "long line marker", "long_line_behaviour", p
->long_line_behaviour
);
1080 g_key_file_set_integer(config
, "long line marker", "long_line_column", p
->long_line_column
);
1082 /* store the session files into the project too */
1083 if (project_prefs
.project_session
)
1084 configuration_save_session_files(config
);
1085 build_save_menu(config
, (gpointer
)p
, GEANY_BCS_PROJ
);
1088 g_signal_emit_by_name(geany_object
, "project-save", config
);
1090 /* write the file */
1091 data
= g_key_file_to_data(config
, NULL
, NULL
);
1092 ret
= (utils_write_file(filename
, data
) == 0);
1096 g_key_file_free(config
);
1102 /* Constructs the project's base path which is used for "Make all" and "Execute".
1103 * The result is an absolute string in UTF-8 encoding which is either the same as
1104 * base path if it is absolute or it is built out of project file name's dir and base_path.
1105 * If there is no project or project's base_path is invalid, NULL will be returned.
1106 * The returned string should be freed when no longer needed. */
1107 gchar
*project_get_base_path(void)
1109 GeanyProject
*project
= app
->project
;
1111 if (project
&& NZV(project
->base_path
))
1113 if (g_path_is_absolute(project
->base_path
))
1114 return g_strdup(project
->base_path
);
1116 { /* build base_path out of project file name's dir and base_path */
1118 gchar
*dir
= g_path_get_dirname(project
->file_name
);
1120 if (utils_str_equal(project
->base_path
, "./"))
1123 path
= g_strconcat(dir
, G_DIR_SEPARATOR_S
, project
->base_path
, NULL
);
1132 /* This is to save project-related global settings, NOT project file settings. */
1133 void project_save_prefs(GKeyFile
*config
)
1135 GeanyProject
*project
= app
->project
;
1137 if (cl_options
.load_session
)
1139 const gchar
*utf8_filename
= (project
== NULL
) ? "" : project
->file_name
;
1141 g_key_file_set_string(config
, "project", "session_file", utf8_filename
);
1143 g_key_file_set_string(config
, "project", "project_file_path",
1144 NVL(local_prefs
.project_file_path
, ""));
1148 void project_load_prefs(GKeyFile
*config
)
1150 if (cl_options
.load_session
)
1152 g_return_if_fail(project_prefs
.session_file
== NULL
);
1153 project_prefs
.session_file
= utils_get_setting_string(config
, "project",
1154 "session_file", "");
1156 local_prefs
.project_file_path
= utils_get_setting_string(config
, "project",
1157 "project_file_path", NULL
);
1158 if (local_prefs
.project_file_path
== NULL
)
1160 local_prefs
.project_file_path
= g_strconcat(g_get_home_dir(),
1161 G_DIR_SEPARATOR_S
, PROJECT_DIR
, NULL
);
1166 /* Initialize project-related preferences in the Preferences dialog. */
1167 void project_setup_prefs(void)
1169 GtkWidget
*path_entry
= ui_lookup_widget(ui_widgets
.prefs_dialog
, "project_file_path_entry");
1170 GtkWidget
*path_btn
= ui_lookup_widget(ui_widgets
.prefs_dialog
, "project_file_path_button");
1171 static gboolean callback_setup
= FALSE
;
1173 g_return_if_fail(local_prefs
.project_file_path
!= NULL
);
1175 gtk_entry_set_text(GTK_ENTRY(path_entry
), local_prefs
.project_file_path
);
1176 if (! callback_setup
)
1177 { /* connect the callback only once */
1178 callback_setup
= TRUE
;
1179 ui_setup_open_button_callback(path_btn
, NULL
,
1180 GTK_FILE_CHOOSER_ACTION_SELECT_FOLDER
, GTK_ENTRY(path_entry
));
1185 /* Update project-related preferences after using the Preferences dialog. */
1186 void project_apply_prefs(void)
1188 GtkWidget
*path_entry
= ui_lookup_widget(ui_widgets
.prefs_dialog
, "project_file_path_entry");
1191 str
= gtk_entry_get_text(GTK_ENTRY(path_entry
));
1192 setptr(local_prefs
.project_file_path
, g_strdup(str
));
1196 void project_init(void)
1200 group
= stash_group_new("indentation");
1201 /* defaults are copied from editor indent prefs */
1202 stash_group_set_use_defaults(group
, FALSE
);
1203 indent_group
= group
;
1205 stash_group_add_spin_button_integer(group
, &indentation
.width
,
1206 "indent_width", 4, "spin_indent_width");
1207 stash_group_add_radio_buttons(group
, (gint
*)(gpointer
)&indentation
.type
,
1208 "indent_type", GEANY_INDENT_TYPE_TABS
,
1209 "radio_indent_spaces", GEANY_INDENT_TYPE_SPACES
,
1210 "radio_indent_tabs", GEANY_INDENT_TYPE_TABS
,
1211 "radio_indent_both", GEANY_INDENT_TYPE_BOTH
,
1213 /* This is a 'hidden' pref for backwards-compatibility */
1214 stash_group_add_integer(group
, &indentation
.hard_tab_width
,
1215 "indent_hard_tab_width", 8);
1216 stash_group_add_toggle_button(group
, &indentation
.detect_type
,
1217 "detect_indent", FALSE
, "check_detect_indent");
1218 stash_group_add_combo_box(group
, (gint
*)(gpointer
)&indentation
.auto_indent_mode
,
1219 "indent_mode", GEANY_AUTOINDENT_CURRENTCHARS
, "combo_auto_indent_mode");
1223 void project_finalize(void)
1225 stash_group_free(indent_group
);