maemo-ui/src/mmyth_uisettings.c
author renatofilho
Thu Sep 28 16:11:10 2006 +0100 (2006-09-28)
branchtrunk
changeset 23 915ef81992c0
child 208 c3c073032757
permissions -rw-r--r--
[svn r24] - added automake macros;
renatofilho@20
     1
#include<gtk/gtk.h>
renatofilho@20
     2
#include<glib.h>
renatofilho@20
     3
#include <sys/types.h>
renatofilho@20
     4
#include <sys/stat.h>
renatofilho@20
     5
#include <unistd.h>
renatofilho@20
     6
#include <string.h>
renatofilho@20
     7
#include <stdio.h>
renatofilho@20
     8
#include <stdlib.h>
renatofilho@20
     9
renatofilho@20
    10
#include "mmyth_uisettings.h"
renatofilho@20
    11
renatofilho@20
    12
#include "gmyth_context.h"
renatofilho@20
    13
renatofilho@20
    14
static GtkWidget *settings_dialog;
renatofilho@20
    15
static GtkWidget *entry_hostname;
renatofilho@20
    16
static GtkWidget *entry_dbname;
renatofilho@20
    17
static GtkWidget *entry_username;
renatofilho@20
    18
static GtkWidget *entry_passwd;
renatofilho@20
    19
static GtkWidget *entry_port;
renatofilho@20
    20
renatofilho@20
    21
static void settings_dialog_update_data (void);
renatofilho@20
    22
static GtkWidget* add_entry_to_table (GtkWidget *table, GString *init_str,
renatofilho@20
    23
	guint pos_left, guint pos_right, guint pos_top, guint pos_bottom);
renatofilho@20
    24
static GtkWidget* add_label_to_table (GtkWidget *table, const gchar *str, 
renatofilho@20
    25
	guint pos_left, guint pos_right,  guint pos_top, guint pos_bottom);
renatofilho@20
    26
	
renatofilho@20
    27
	
renatofilho@20
    28
gboolean
renatofilho@20
    29
mmyth_uisettings_run (GtkWindow *main_window)
renatofilho@20
    30
{
renatofilho@20
    31
renatofilho@20
    32
	GtkWidget *settings_table;
renatofilho@20
    33
	GtkWidget *label_hostname, *label_dbname;
renatofilho@20
    34
	GtkWidget *label_username, *label_passwd, *label_port;
renatofilho@20
    35
renatofilho@20
    36
	GMythSettings *msettings = gmyth_context_get_settings();
renatofilho@20
    37
	
renatofilho@20
    38
	settings_dialog = gtk_dialog_new_with_buttons ("Settings",
renatofilho@20
    39
                                         main_window,
renatofilho@20
    40
                                         GTK_DIALOG_DESTROY_WITH_PARENT,
renatofilho@20
    41
                                         GTK_STOCK_OK,
renatofilho@20
    42
                                         GTK_RESPONSE_ACCEPT,
renatofilho@20
    43
                                         GTK_STOCK_CANCEL,
renatofilho@20
    44
                                         GTK_RESPONSE_REJECT,
renatofilho@20
    45
                                         NULL);
renatofilho@20
    46
                                         
renatofilho@20
    47
  gtk_widget_set_size_request (settings_dialog, 400, 244);
renatofilho@20
    48
renatofilho@20
    49
/*  scrolledwindow1 = gtk_scrolled_window_new (NULL, NULL);
renatofilho@20
    50
  gtk_widget_show (scrolledwindow1);
renatofilho@20
    51
  gtk_container_add (GTK_CONTAINER (window1), scrolledwindow1);
renatofilho@20
    52
  gtk_scrolled_window_set_policy (GTK_SCROLLED_WINDOW (scrolledwindow1), GTK_POLICY_AUTOMATIC, GTK_POLICY_NEVER);
renatofilho@20
    53
renatofilho@20
    54
  viewport1 = gtk_viewport_new (NULL, NULL);
renatofilho@20
    55
  gtk_widget_show (viewport1);
renatofilho@20
    56
  gtk_container_add (GTK_CONTAINER (scrolledwindow1), viewport1);
renatofilho@20
    57
  gtk_viewport_set_shadow_type (GTK_VIEWPORT (viewport1), GTK_SHADOW_NONE);
renatofilho@20
    58
*/
renatofilho@20
    59
renatofilho@20
    60
	// Creates the table and attach it to the settings dialog
renatofilho@20
    61
	settings_table = gtk_table_new (5, 2, FALSE);
renatofilho@20
    62
	gtk_widget_show (settings_table);
renatofilho@20
    63
	gtk_box_pack_start (GTK_BOX (GTK_DIALOG(settings_dialog)->vbox), settings_table, FALSE, TRUE, 0);
renatofilho@20
    64
	gtk_container_set_border_width (GTK_CONTAINER (settings_table), 3);
renatofilho@20
    65
	gtk_table_set_row_spacings (GTK_TABLE (settings_table), 5);
renatofilho@20
    66
	gtk_table_set_col_spacings (GTK_TABLE (settings_table), 10);
renatofilho@20
    67
renatofilho@20
    68
	label_hostname = add_label_to_table (settings_table, "Host Name:", 0, 1, 0, 1);
renatofilho@20
    69
	label_dbname   = add_label_to_table (settings_table, "Database Name:", 0, 1, 1, 2);
renatofilho@20
    70
	label_username = add_label_to_table (settings_table, "Username:", 0, 1, 2, 3);
renatofilho@20
    71
	label_passwd = add_label_to_table (settings_table, "Password:", 0, 1, 3, 4);
renatofilho@20
    72
	label_port = add_label_to_table (settings_table, "Server port:", 0, 1, 4, 5);
renatofilho@20
    73
	
renatofilho@20
    74
	entry_hostname = add_entry_to_table (settings_table,
renatofilho@20
    75
		gmyth_settings_get_backend_hostname (msettings),
renatofilho@20
    76
		1, 2, 0, 1);
renatofilho@20
    77
	entry_dbname = add_entry_to_table (settings_table,
renatofilho@20
    78
		gmyth_settings_get_dbname (msettings),
renatofilho@20
    79
		1, 2, 1, 2 );
renatofilho@20
    80
	entry_username = add_entry_to_table (settings_table,
renatofilho@20
    81
		gmyth_settings_get_username (msettings),
renatofilho@20
    82
		1, 2, 2, 3 );
renatofilho@20
    83
	entry_passwd = add_entry_to_table (settings_table,
renatofilho@20
    84
		gmyth_settings_get_password (msettings),
renatofilho@20
    85
		1, 2, 3, 4 );
renatofilho@20
    86
		
renatofilho@20
    87
	GString *str_port = g_string_new ("");
renatofilho@20
    88
	g_string_printf (str_port, "%d", 
renatofilho@20
    89
		gmyth_settings_get_backend_port (msettings));
renatofilho@20
    90
	entry_port = add_entry_to_table (settings_table, str_port,
renatofilho@20
    91
		1, 2, 4, 5 );
renatofilho@20
    92
	g_string_free (str_port, TRUE);
renatofilho@20
    93
		
renatofilho@20
    94
	if (gtk_dialog_run (GTK_DIALOG (settings_dialog)) == GTK_RESPONSE_ACCEPT) {
renatofilho@20
    95
		settings_dialog_update_data ();
renatofilho@20
    96
		gtk_widget_destroy (settings_dialog);
renatofilho@20
    97
		return TRUE;
renatofilho@20
    98
	}
renatofilho@20
    99
	
renatofilho@20
   100
	gtk_widget_destroy (settings_dialog);
renatofilho@20
   101
	
renatofilho@20
   102
	return FALSE;
renatofilho@20
   103
	
renatofilho@20
   104
}
renatofilho@20
   105
renatofilho@20
   106
static GtkWidget*
renatofilho@20
   107
add_label_to_table (GtkWidget *table, const gchar *str, guint pos_left, guint pos_right, 
renatofilho@20
   108
		guint pos_top, guint pos_bottom )
renatofilho@20
   109
{
renatofilho@20
   110
	GtkWidget *tmp_label = gtk_label_new (str);
renatofilho@20
   111
	
renatofilho@20
   112
	gtk_widget_show (tmp_label);
renatofilho@20
   113
	gtk_table_attach (GTK_TABLE (table), tmp_label, 
renatofilho@20
   114
					pos_left, pos_right, pos_top, pos_bottom,
renatofilho@20
   115
                    (GtkAttachOptions) (GTK_FILL),
renatofilho@20
   116
                    (GtkAttachOptions) (0), 0, 0);
renatofilho@20
   117
	gtk_misc_set_alignment (GTK_MISC (tmp_label), 0, 0.5);
renatofilho@20
   118
	
renatofilho@20
   119
	return tmp_label;
renatofilho@20
   120
}
renatofilho@20
   121
renatofilho@20
   122
static GtkWidget*
renatofilho@20
   123
add_entry_to_table (GtkWidget *table, GString *init_str, guint pos_left, guint pos_right,
renatofilho@20
   124
		guint pos_top, guint pos_bottom)
renatofilho@20
   125
{
renatofilho@20
   126
	GtkWidget *tmp_entry = gtk_entry_new ();
renatofilho@20
   127
	gtk_widget_show (tmp_entry);
renatofilho@20
   128
	gtk_table_attach (GTK_TABLE (table), tmp_entry, 
renatofilho@20
   129
					pos_left, pos_right, pos_top, pos_bottom,
renatofilho@20
   130
                    (GtkAttachOptions) (GTK_EXPAND | GTK_FILL),
renatofilho@20
   131
                    (GtkAttachOptions) (0), 0, 0);
renatofilho@20
   132
    if (init_str)
renatofilho@20
   133
		gtk_entry_set_text (GTK_ENTRY (tmp_entry), (init_str->str));
renatofilho@20
   134
		
renatofilho@20
   135
	//gtk_entry_set_invisible_char (GTK_ENTRY (entry_port), 9679);
renatofilho@20
   136
	
renatofilho@20
   137
	return tmp_entry;
renatofilho@20
   138
}
renatofilho@20
   139
renatofilho@20
   140
static void
renatofilho@20
   141
settings_dialog_update_data (void) 
renatofilho@20
   142
{
renatofilho@20
   143
	GString *tmp_entry_text;
renatofilho@20
   144
	GMythSettings *msettings = gmyth_context_get_settings();
renatofilho@20
   145
	
renatofilho@20
   146
	if (!msettings) {
renatofilho@20
   147
		g_warning ("[%s] Could not get GMythSettings instance from context\n", __FUNCTION__);
renatofilho@20
   148
		return;
renatofilho@20
   149
	}
renatofilho@20
   150
		
renatofilho@20
   151
	tmp_entry_text = g_string_new("");
renatofilho@20
   152
	g_string_printf(tmp_entry_text, "%s", gtk_entry_get_text( GTK_ENTRY(entry_hostname)));
renatofilho@20
   153
	gmyth_settings_set_backend_hostname(msettings, tmp_entry_text);
renatofilho@20
   154
	
renatofilho@20
   155
	g_string_printf(tmp_entry_text, "%s", gtk_entry_get_text( GTK_ENTRY(entry_dbname)));
renatofilho@20
   156
	gmyth_settings_set_dbname(msettings, tmp_entry_text);
renatofilho@20
   157
	
renatofilho@20
   158
	g_string_printf(tmp_entry_text, "%s", gtk_entry_get_text( GTK_ENTRY(entry_username)));
renatofilho@20
   159
	gmyth_settings_set_username(msettings, tmp_entry_text);
renatofilho@20
   160
	
renatofilho@20
   161
	g_string_printf(tmp_entry_text, "%s", gtk_entry_get_text( GTK_ENTRY(entry_passwd)));
renatofilho@20
   162
	gmyth_settings_set_password(msettings, tmp_entry_text);	
renatofilho@20
   163
	
renatofilho@20
   164
	g_string_printf(tmp_entry_text, "%s", gtk_entry_get_text( GTK_ENTRY(entry_port)));
renatofilho@20
   165
	gmyth_settings_set_backend_port(msettings, atoi(tmp_entry_text->str));
renatofilho@20
   166
	
renatofilho@20
   167
	gmyth_settings_save (msettings);
renatofilho@20
   168
	
renatofilho@20
   169
}