diff options
author | Guy Harris <guy@alum.mit.edu> | 2004-05-04 20:49:33 +0000 |
---|---|---|
committer | Guy Harris <guy@alum.mit.edu> | 2004-05-04 20:49:33 +0000 |
commit | 76574b554b0170477bbe12e5c853e43d5343daa5 (patch) | |
tree | fa69c27342f45073051132d7b4b2b7d7b6a58886 /gtk/main.h | |
parent | 6ae8786e945bf6c2e7888305dce6f377636e597a (diff) | |
download | wireshark-76574b554b0170477bbe12e5c853e43d5343daa5.tar.gz wireshark-76574b554b0170477bbe12e5c853e43d5343daa5.tar.bz2 wireshark-76574b554b0170477bbe12e5c853e43d5343daa5.zip |
If all we're doing is changing the visibility of a pane, we don't have
to re-lay-out the main window, we just need to change the visibility of
the appropriate widgets - that reduces the amount of drawing done,
speeding things up a little and reducing flicker.
svn path=/trunk/; revision=10795
Diffstat (limited to 'gtk/main.h')
-rw-r--r-- | gtk/main.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/gtk/main.h b/gtk/main.h index c125ef13ab..75fc0a60cf 100644 --- a/gtk/main.h +++ b/gtk/main.h @@ -1,7 +1,7 @@ /* main.h * Global defines, etc. * - * $Id: main.h,v 1.45 2004/04/25 16:04:12 ulfl Exp $ + * $Id: main.h,v 1.46 2004/05/04 20:49:33 guy Exp $ * * Ethereal - Network traffic analyzer * By Gerald Combs <gerald@ethereal.com> @@ -112,6 +112,7 @@ extern void dfilter_recent_combo_write_all(FILE *rf); extern gboolean main_do_quit(void); extern void main_widgets_rearrange(void); +extern void main_widgets_show_or_hide(void); extern gboolean main_filter_packets(capture_file *cf, const gchar *dftext, gboolean force); extern void dnd_open_file_cmd(gpointer cf_name); |