Mercurial > geeqie
annotate src/menu.h @ 27:9c24765c2d3a
Sat Apr 2 17:28:16 2005 John Ellis <johne@verizon.net>
* image.c (image_options_set): Update PixbufRenderer parent window so
that changing 'fit window to image' option works.
* pan-view.c (pan_window_image_zoom_cb): Use same zoom text display as
for main windows.
* pixbuf-renderer.c: Fix (re-implement) check for maximized window
state. Fix pr_source_tile_visible() calculation which was using the x
axis where it should be y. Add redrawn return value to pr_zoom_clamp()
and use that value in pr_zoom_sync() to pass pr_redraw correct args.
##### Note: GQview CVS on sourceforge is not always up to date, please use #####
##### an offical release when making enhancements and translation updates. #####
author | gqview |
---|---|
date | Sat, 02 Apr 2005 22:44:34 +0000 |
parents | d907d608745f |
children | f6e307c7bad6 |
rev | line source |
---|---|
9 | 1 /* |
2 * GQview | |
3 * (C) 2004 John Ellis | |
4 * | |
5 * Author: John Ellis | |
6 * | |
7 * This software is released under the GNU General Public License (GNU GPL). | |
8 * Please read the included file COPYING for more information. | |
9 * This software comes with no warranty of any kind, use at your own risk! | |
10 */ | |
11 | |
12 | |
13 #ifndef MENU_H | |
14 #define MENU_H | |
15 | |
16 | |
17 gpointer submenu_item_get_data(GtkWidget *menu); | |
18 | |
19 GtkWidget *submenu_add_edit(GtkWidget *menu, GtkWidget **menu_item, GtkSignalFunc func, gpointer data); | |
20 | |
21 gchar *sort_type_get_text(SortType method); | |
22 GtkWidget *submenu_add_sort(GtkWidget *menu, GtkSignalFunc func, gpointer data, | |
23 gint include_none, gint include_path, | |
24 gint show_current, SortType type); | |
25 | |
26 gchar *alter_type_get_text(AlterType type); | |
27 GtkWidget *submenu_add_alter(GtkWidget *menu, GtkSignalFunc func, gpointer data); | |
28 | |
29 | |
30 #endif |