00001 /* 00002 * UPnP Browser for Maemo 00003 * 00004 * preset_dialog.h 00005 * 00006 * Copyright 2005 Nokia Corporation 00007 */ 00008 00009 #ifndef PRESET_DIALOG_H 00010 #define PRESET_DIALOG_H 00011 00012 #include <gtk/gtk.h> 00013 00014 #define _(String) gettext(String) 00015 00016 typedef struct _PresetDialog 00017 { 00018 GtkWidget *preset_dialog; 00019 GtkWidget *dialog_vbox; 00020 GtkWidget *preset_combo; 00021 GtkWidget *dialog_action_area; 00022 GtkWidget *cancel_button; 00023 GtkWidget *ok_button; 00024 00025 } PresetDialog; 00026 00030 PresetDialog* preset_dialog_new(); 00031 00035 void preset_dialog_delete(PresetDialog* dialog); 00036 00043 void preset_dialog_update(PresetDialog* dialog, gchar* udn); 00044 00050 gchar* preset_dialog_get_selection(PresetDialog* dialog); 00051 00057 void preset_dialog_run(); 00058 00059 #endif