diff options
author | Guy Harris <guy@alum.mit.edu> | 2000-08-20 07:53:45 +0000 |
---|---|---|
committer | Guy Harris <guy@alum.mit.edu> | 2000-08-20 07:53:45 +0000 |
commit | e697eb8e9f11a6737a5745c0b1d737ed4adc8fc5 (patch) | |
tree | e380d7fd2bd9171ee53df9b52167e67917969640 /globals.h | |
parent | 2962655ac565291f66d4a5271c72bacf8774d4b6 (diff) | |
download | wireshark-e697eb8e9f11a6737a5745c0b1d737ed4adc8fc5.tar.gz wireshark-e697eb8e9f11a6737a5745c0b1d737ed4adc8fc5.tar.bz2 wireshark-e697eb8e9f11a6737a5745c0b1d737ed4adc8fc5.zip |
Instead of having the normal-weight and bold fonts set separately,
generate the name of the boldface font from the Roman font; if the two
fonts don't have the same widths, the display will look weird when a
field is selected, and it's a bit of a pain for the user to have to
select *two* fonts.
On UNIX/X, default to
"-*-fixed-medium-r-semicondensed-*-*-120-*-*-*-*-*-" rather than to
"-*-lucidatypewriter-medium-r-normal-*-*-120-*-*-*-*-iso8859-1" - some
Linux distributions appear to lack the Lucida typewriter font.
Add a "gui.font_name" preference to the preferences file, specifying the
normal-weight font to use. Have it settable from the "GUI" tab in the
Preferences dialog box - the "Font..." button, when clicked, pops up a
font selection dialog box.
If we either can't open the selected font or the boldfaced version of
the font, default to "6x13" and "6x13bold" as fallbacks - the former
will probably be "fixed", and the latter would be "fixedbold" if X
actually created such an alias, but it doesn't so we use "6x13bold"
instead.
svn path=/trunk/; revision=2304
Diffstat (limited to 'globals.h')
-rw-r--r-- | globals.h | 4 |
1 files changed, 1 insertions, 3 deletions
@@ -1,7 +1,7 @@ /* globals.h * Global defines, etc. * - * $Id: globals.h,v 1.20 2000/08/11 13:34:29 deniel Exp $ + * $Id: globals.h,v 1.21 2000/08/20 07:53:30 guy Exp $ * * Ethereal - Network traffic analyzer * By Gerald Combs <gerald@zing.org> @@ -68,8 +68,6 @@ extern capture_file cfile; extern guint main_ctx, file_ctx; extern gchar comp_info_str[256]; extern gchar *ethereal_path; -extern gchar *medium_font; -extern gchar *bold_font; extern gchar *last_open_dir; extern gboolean auto_scroll_live; extern int g_resolving_actif; |