summaryrefslogtreecommitdiff
path: root/capplets/default-applications/gnome-default-applications-properties-structs.c
diff options
context:
space:
mode:
Diffstat (limited to 'capplets/default-applications/gnome-default-applications-properties-structs.c')
-rw-r--r--capplets/default-applications/gnome-default-applications-properties-structs.c65
1 files changed, 0 insertions, 65 deletions
diff --git a/capplets/default-applications/gnome-default-applications-properties-structs.c b/capplets/default-applications/gnome-default-applications-properties-structs.c
deleted file mode 100644
index f6998da5f..000000000
--- a/capplets/default-applications/gnome-default-applications-properties-structs.c
+++ /dev/null
@@ -1,65 +0,0 @@
-struct _BrowserDescription {
- gchar const *name;
- gchar const *executable_name;
- gchar const *command;
- gboolean needs_term;
- gboolean in_path;
-};
-BrowserDescription possible_browsers[] = {
- { N_("Debian Sensible Browser"), "sensible-browser", "sensible-browser %s", FALSE, FALSE },
- { N_("Epiphany"), "epiphany", "epiphany %s", FALSE, FALSE },
- { N_("Galeon"), "galeon", "galeon %s", FALSE, FALSE },
- { N_("Encompass"), "encompass", "encompass %s", FALSE, FALSE },
- { N_("Firebird"), "mozilla-firebird", "mozilla-firebird %s", FALSE, FALSE },
- { N_("Firefox"), "firefox", "firefox %s", FALSE, FALSE },
- { N_("Mozilla"), "mozilla-1.6", "mozilla-1.6 %s", FALSE, FALSE },
- { N_("Mozilla"), "mozilla", "mozilla %s", FALSE, FALSE },
- { N_("Netscape Communicator"), "netscape", "netscape %s", FALSE, FALSE },
- { N_("Konqueror"), "konqueror", "konqueror %s", FALSE, FALSE },
- { N_("W3M Text Browser"), "w3m", "w3m %s", TRUE, FALSE },
- { N_("Lynx Text Browser"), "lynx", "lynx %s", TRUE, FALSE },
- { N_("Links Text Browser") , "links", "links %s", TRUE, FALSE }
-};
-
-struct _MailerDescription {
- gchar const *name;
- gchar const *executable_name;
- gchar const *command;
- gboolean needs_term;
- gboolean in_path;
-};
-MailerDescription possible_mailers[] = {
- /* The code in gnome-default-applications-properties.c makes sure
- * there is only one (the first entry in this list) Evolution entry
- * in the list shown to the user
- */
- { N_("Evolution Mail Reader"), "evolution-2.2", "evolution-2.2 %s", FALSE, FALSE, },
- { N_("Evolution Mail Reader"), "evolution-2.0", "evolution-2.0 %s", FALSE, FALSE, },
- { N_("Evolution Mail Reader"), "evolution-1.6", "evolution-1.6 %s", FALSE, FALSE, },
- { N_("Evolution Mail Reader"), "evolution-1.5", "evolution-1.5 %s", FALSE, FALSE, },
- { N_("Evolution Mail Reader"), "evolution-1.4", "evolution-1.4 %s", FALSE, FALSE, },
- { N_("Evolution Mail Reader"), "evolution", "evolution %s", FALSE, FALSE, },
- { N_("Balsa"), "balsa", "balsa -m %s", FALSE, FALSE },
- { N_("KMail"), "kmail", "kmail %s", FALSE, FALSE },
- { N_("Thunderbird"), "thunderbird", "thunderbird -mail %s", FALSE, FALSE},
- { N_("Thunderbird"), "mozilla-thunderbird", "mozilla-thunderbird -mail %s", FALSE, FALSE},
- { N_("Mozilla Mail"), "mozilla", "mozilla -mail %s", FALSE, FALSE},
- { N_("Mutt") , "mutt", "mutt %s", TRUE, FALSE },
-
-};
-
-struct _TerminalDesciption {
- gchar const *name;
- gchar const *exec;
- gchar const *exec_arg;
- gboolean in_path;
-};
-TerminalDescription possible_terminals[] = {
- { N_("Debian Terminal Emulator"), "x-terminal-emulator", "-e", FALSE },
- { N_("GNOME Terminal"), "gnome-terminal", "-x", FALSE },
- { N_("Standard XTerminal"), "xterm", "-e", FALSE },
- { N_("NXterm"), "nxterm", "-e", FALSE },
- { N_("RXVT"), "rxvt", "-e", FALSE },
- { N_("aterm"), "aterm", "-e", FALSE },
- { N_("ETerm"), "Eterm", "-e", FALSE }
-};