turn off help tab, put browser tab first, and fix things for the editor
2002-05-16 jacob berkman <jacob@ximian.com> * gnome-default-applications-properties.glade: turn off help tab, put browser tab first, and fix things for the editor * gnome-default-applications-properties.c: make the editor changes use gnome-vfs, and make the browser use the default key rather than http fixes #78037
This commit is contained in:
parent
58aa365845
commit
5fc0063d42
4 changed files with 1859 additions and 1438 deletions
|
@ -1,17 +1,8 @@
|
|||
|
||||
struct _EditorDescription
|
||||
{
|
||||
gchar *name;
|
||||
gchar *executable_name;
|
||||
gboolean needs_term;
|
||||
gboolean accepts_lineno;
|
||||
gboolean in_path;
|
||||
};
|
||||
|
||||
struct _BrowserDescription
|
||||
{
|
||||
gchar *name;
|
||||
gchar *name;
|
||||
gchar *executable_name;
|
||||
gchar *command;
|
||||
gboolean needs_term;
|
||||
gboolean nremote;
|
||||
gboolean in_path;
|
||||
|
@ -34,34 +25,15 @@ struct _TerminalDesciption
|
|||
gboolean in_path;
|
||||
};
|
||||
|
||||
EditorDescription possible_editors[] =
|
||||
{
|
||||
{ "gedit", "gedit", FALSE, FALSE, FALSE },
|
||||
{ "Emacs", "emacs", FALSE, TRUE, FALSE },
|
||||
{ "Emacs (terminal)", "emacs", TRUE, TRUE, FALSE },
|
||||
{ "XEmacs", "xemacs", FALSE, TRUE, FALSE },
|
||||
{ "vi", "vi", TRUE, TRUE, FALSE },
|
||||
{ "Go", "go", FALSE, FALSE, FALSE },
|
||||
{ "GWP", "gwp", FALSE, FALSE, FALSE },
|
||||
{ "Jed", "jed", TRUE, TRUE, FALSE },
|
||||
{ "Joe", "joe", TRUE, TRUE, FALSE },
|
||||
{ "Pico", "pico", TRUE, TRUE, FALSE },
|
||||
{ "vim", "vim", TRUE, TRUE, FALSE },
|
||||
{ "gvim", "gvim", FALSE, TRUE, FALSE },
|
||||
{ "ed", "ed", TRUE, FALSE, FALSE },
|
||||
{ "GMC/CoolEdit", "gmc -e", FALSE, FALSE, FALSE },
|
||||
{ "Nedit", "nedit", FALSE, FALSE, FALSE }
|
||||
};
|
||||
|
||||
BrowserDescription possible_browsers[] =
|
||||
{
|
||||
{ "Lynx Text Browser", "lynx", TRUE, FALSE, FALSE },
|
||||
{ "Links Text Browser" , "links", TRUE, FALSE, FALSE },
|
||||
{ "Netscape Communicator", "netscape", FALSE, TRUE, FALSE },
|
||||
{ "Mozilla/Netscape 6", "mozilla", FALSE, TRUE, FALSE },
|
||||
{ "Galeon", "galeon", FALSE, FALSE, FALSE },
|
||||
{ "Encompass", "encompass", FALSE, FALSE, FALSE },
|
||||
{ "Konqueror", "konqueror", FALSE, FALSE, FALSE }
|
||||
{ "Lynx Text Browser", "lynx", "lynx %s", TRUE, FALSE, FALSE },
|
||||
{ "Links Text Browser" , "links", "links %s", TRUE, FALSE, FALSE },
|
||||
{ "Netscape Communicator", "netscape", "netscape %s", FALSE, TRUE, FALSE },
|
||||
{ "Mozilla/Netscape 6", "mozilla", "mozilla %s", FALSE, TRUE, FALSE },
|
||||
{ "Galeon", "galeon", "galeon %s", FALSE, FALSE, FALSE },
|
||||
{ "Encompass", "encompass", "encompass %s", FALSE, FALSE, FALSE },
|
||||
{ "Konqueror", "konqueror", "konqueror %s", FALSE, FALSE, FALSE }
|
||||
};
|
||||
|
||||
HelpViewDescription possible_help_viewers[] =
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue