Mercurial > geeqie.yaz
annotate src/info.h @ 14:25335c62cd9b
##### Note: GQview CVS on sourceforge is not always up to date, please use #####
##### an offical release when making enhancements and translation updates. #####
Thu Mar 3 01:16:23 2005 John Ellis <johne@verizon.net>
* pan-view.c: Add 'dots' image size option, fix up border size at edge
of grid, and make drag and drop work to/from the window.
Wed Mar 2 23:34:30 2005 John Ellis <johne@verizon.net>
* globals.c, gqview.h, rcfile.c: Add thumbnail_fast option variable.
* image-load.c, typedefs.h: Add shrunk flag to determine if an image
was scaled down using image_loader_set_requested_size.
* image.c: Make panning with mouse scroll more when holding shift key.
* preferences.c: Add option for 'Fast jpeg thumbnailing' and disabled
xvpics option in the gui - now a hidden option.
* thumb.c, thumb_standard.c: Add support for thumbnail_fast option..
author | gqview |
---|---|
date | Thu, 03 Mar 2005 06:32:53 +0000 |
parents | d907d608745f |
children | 71e1ebee420e |
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 INFO_H | |
14 #define INFO_H | |
15 | |
16 | |
17 typedef struct _InfoData InfoData; | |
18 struct _InfoData | |
19 { | |
20 GtkWidget *window; | |
21 ImageWindow *image; | |
22 | |
23 GList *list; | |
24 | |
25 const gchar *path; | |
26 | |
27 GtkWidget *notebook; | |
28 GtkWidget *name_entry; | |
29 | |
30 GtkWidget *button_next; | |
31 GtkWidget *button_back; | |
32 GtkWidget *label_count; | |
33 | |
34 GList *tab_list; | |
35 | |
36 gint updated; | |
37 }; | |
38 | |
39 | |
40 void info_window_new(const gchar *path, GList *list); | |
41 | |
42 GtkWidget *table_add_line(GtkWidget *table, gint x, gint y, | |
43 const gchar *description, const gchar *text); | |
44 | |
45 | |
46 #endif | |
47 | |
48 |