1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87
|
/* -*- Mode: C ; c-basic-offset: 2 -*- */
/*
* LADI Session Handler (ladish)
*
* Copyright (C) 2010, 2011 Nedko Arnaudov <nedko@arnaudov.name>
*
**************************************************************************
* This file contains implementation of the save project dialog
**************************************************************************
*
* LADI Session Handler is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation; either version 2 of the License, or
* (at your option) any later version.
*
* LADI Session Handler is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with LADI Session Handler. If not, see <http://www.gnu.org/licenses/>
* or write to the Free Software Foundation, Inc.,
* 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
*/
#include "save_project_dialog.h"
#include "gtk_builder.h"
static GtkEntry * path = NULL;
static void on_path_button_clicked(void)
{
GtkWidget * dialog;
GtkResponseType response;
dialog = get_gtk_builder_widget("project_save_as_dir_sel_dialog");
gtk_widget_show(dialog);
response = gtk_dialog_run(GTK_DIALOG(dialog));
gtk_widget_hide(dialog);
if (response == GTK_RESPONSE_OK)
{
gtk_entry_set_text(
path,
gtk_file_chooser_get_filename(GTK_FILE_CHOOSER(dialog)));
}
}
void ladish_init_save_project_dialog(void)
{
GtkWidget * path_button = NULL;
path_button = get_gtk_builder_widget("project_save_as_path_button");
g_signal_connect( G_OBJECT(path_button), "clicked", G_CALLBACK(on_path_button_clicked), NULL);
}
void ladish_run_save_project_dialog(ladish_room_proxy_handle room)
{
GtkWidget * dialog = NULL;
GtkEntry * name = NULL;
GtkResponseType response;
const char * project_dir;
const char * project_name;
dialog = get_gtk_builder_widget("project_save_as_dialog");
path = GTK_ENTRY(get_gtk_builder_widget("project_save_as_path_entry"));
name = GTK_ENTRY(get_gtk_builder_widget("project_save_as_name_entry"));
ladish_room_proxy_get_project_properties(room, &project_dir, &project_name, NULL, NULL);
gtk_entry_set_text(path, project_dir);
gtk_entry_set_text(name, project_name);
gtk_widget_show(dialog);
response = gtk_dialog_run(GTK_DIALOG(dialog));
gtk_widget_hide(dialog);
if (response == GTK_RESPONSE_OK)
{
log_info("Saving project to '%s' (%s)", gtk_entry_get_text(path), gtk_entry_get_text(name));
if (!ladish_room_proxy_save_project(room, gtk_entry_get_text(path), gtk_entry_get_text(name)))
{
log_error("ladish_room_proxy_save_project() failed.");
}
}
}
|