From 767ca99d338cddf3dff25d31e54739dbff400ad8 Mon Sep 17 00:00:00 2001 From: Tom Willemsen Date: Sun, 17 Oct 2010 13:48:02 +0200 Subject: Initial commit --- src/c-new-item-dialog.c | 49 +++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 49 insertions(+) create mode 100644 src/c-new-item-dialog.c (limited to 'src/c-new-item-dialog.c') diff --git a/src/c-new-item-dialog.c b/src/c-new-item-dialog.c new file mode 100644 index 0000000..75142e9 --- /dev/null +++ b/src/c-new-item-dialog.c @@ -0,0 +1,49 @@ +#include "c-new-item-dialog.h" +#include +#include +#include + +G_DEFINE_TYPE(CNewItemDialog, c_new_item_dialog, GTK_TYPE_DIALOG) + +GtkWidget *c_new_item_dialog_new(void) +{ + return g_object_new(C_TYPE_NEW_ITEM_DIALOG, NULL); +} + +const gchar *c_new_item_dialog_get_name(CNewItemDialog *dialog) +{ + return hildon_entry_get_text(HILDON_ENTRY(dialog->name_entry)); +} + +gint c_new_item_dialog_get_total_qty(CNewItemDialog *dialog) +{ + return atoi(hildon_entry_get_text(HILDON_ENTRY(dialog->qty_entry))); +} + +static void c_new_item_dialog_class_init(CNewItemDialogClass *class) +{} + +static void c_new_item_dialog_init(CNewItemDialog *dialog) +{ + GtkWidget *content_area; + GtkWidget *hbox; + + content_area = gtk_dialog_get_content_area(GTK_DIALOG(dialog)); + + hbox = gtk_vbox_new(FALSE, 0); + gtk_container_add(GTK_CONTAINER(content_area), hbox); + + dialog->name_entry = hildon_entry_new(HILDON_SIZE_AUTO); + hildon_entry_set_placeholder(HILDON_ENTRY(dialog->name_entry), "Name..."); + gtk_box_pack_start(GTK_BOX(hbox), dialog->name_entry, TRUE, TRUE, 0); + + dialog->qty_entry = hildon_entry_new(HILDON_SIZE_AUTO); + hildon_entry_set_text(HILDON_ENTRY(dialog->qty_entry), "0"); + gtk_box_pack_start(GTK_BOX(hbox), dialog->qty_entry, TRUE, TRUE, 0); + + gtk_window_set_title(GTK_WINDOW(dialog), "New item"); + gtk_dialog_add_buttons(GTK_DIALOG(dialog), + GTK_STOCK_OK, + GTK_RESPONSE_OK, + NULL); +} -- cgit v1.2.3-54-g00ecf