comparison src/gtkprefs.c @ 11082:e25575a59f01

[gaim-migrate @ 13099] Use libao to play stuff over NAS instead of accessing NAS directly. committer: Tailor Script <tailor@pidgin.im>
author Mark Doliner <mark@kingant.net>
date Sun, 10 Jul 2005 22:12:37 +0000
parents 8a68c933a5dd
children 096020ae09a9
comparison
equal deleted inserted replaced
11081:3fc99df46dae 11082:e25575a59f01
1555 GtkTreeSelection *sel; 1555 GtkTreeSelection *sel;
1556 GtkTreePath *path; 1556 GtkTreePath *path;
1557 GtkWidget *hbox; 1557 GtkWidget *hbox;
1558 int j; 1558 int j;
1559 const char *file; 1559 const char *file;
1560 char *pref; 1560 char *pref;
1561 #ifndef _WIN32 1561 #ifndef _WIN32
1562 GtkWidget *dd; 1562 GtkWidget *dd;
1563 GtkWidget *label; 1563 GtkWidget *label;
1564 GtkWidget *entry; 1564 GtkWidget *entry;
1565 const char *cmd; 1565 const char *cmd;
1575 dd = gaim_gtk_prefs_dropdown(vbox, _("_Method:"), GAIM_PREF_STRING, 1575 dd = gaim_gtk_prefs_dropdown(vbox, _("_Method:"), GAIM_PREF_STRING,
1576 "/gaim/gtk/sound/method", 1576 "/gaim/gtk/sound/method",
1577 _("Console beep"), "beep", 1577 _("Console beep"), "beep",
1578 #ifdef USE_AO 1578 #ifdef USE_AO
1579 _("Automatic"), "automatic", 1579 _("Automatic"), "automatic",
1580 "Arts", "arts",
1580 "ESD", "esd", 1581 "ESD", "esd",
1581 "Arts", "arts",
1582 #endif
1583 #ifdef USE_NAS_AUDIO
1584 "NAS", "nas", 1582 "NAS", "nas",
1585 #endif 1583 #endif
1586 _("Command"), "custom", 1584 _("Command"), "custom",
1587 _("No sounds"), "none", 1585 _("No sounds"), "none",
1588 NULL); 1586 NULL);