Mercurial > geeqie.yaz
annotate src/info.h @ 849:db68d673448f
added possibility to disable grouping of selected files
author | nadvornik |
---|---|
date | Sun, 22 Jun 2008 09:19:42 +0000 |
parents | ae618ebec3e9 |
children | 1646720364cf |
rev | line source |
---|---|
9 | 1 /* |
196 | 2 * Geeqie |
9 | 3 * (C) 2004 John Ellis |
475 | 4 * Copyright (C) 2008 The Geeqie Team |
9 | 5 * |
6 * Author: John Ellis | |
7 * | |
8 * This software is released under the GNU General Public License (GNU GPL). | |
9 * Please read the included file COPYING for more information. | |
10 * This software comes with no warranty of any kind, use at your own risk! | |
11 */ | |
12 | |
13 | |
14 #ifndef INFO_H | |
15 #define INFO_H | |
16 | |
764
ae618ebec3e9
Save properties window width and height to rc file and restore
zas_
parents:
684
diff
changeset
|
17 #define DEF_PROPERTY_WIDTH 600 |
ae618ebec3e9
Save properties window width and height to rc file and restore
zas_
parents:
684
diff
changeset
|
18 #define DEF_PROPERTY_HEIGHT 400 |
ae618ebec3e9
Save properties window width and height to rc file and restore
zas_
parents:
684
diff
changeset
|
19 |
9 | 20 |
21 typedef struct _InfoData InfoData; | |
22 struct _InfoData | |
23 { | |
24 GtkWidget *window; | |
479
5212d4fed37f
Ensure Properties dialog is displayed above fullscreen window.
zas_
parents:
475
diff
changeset
|
25 GtkWidget *parent; |
5212d4fed37f
Ensure Properties dialog is displayed above fullscreen window.
zas_
parents:
475
diff
changeset
|
26 |
9 | 27 ImageWindow *image; |
28 | |
29 GList *list; | |
30 | |
138 | 31 FileData *fd; |
9 | 32 |
33 GtkWidget *notebook; | |
34 GtkWidget *name_entry; | |
35 | |
36 GtkWidget *button_next; | |
37 GtkWidget *button_back; | |
38 GtkWidget *label_count; | |
39 | |
40 GList *tab_list; | |
41 | |
42 gint updated; | |
43 }; | |
44 | |
45 | |
479
5212d4fed37f
Ensure Properties dialog is displayed above fullscreen window.
zas_
parents:
475
diff
changeset
|
46 void info_window_new(FileData *fd, GList *list, GtkWidget *parent); |
9 | 47 |
48 GtkWidget *table_add_line(GtkWidget *table, gint x, gint y, | |
49 const gchar *description, const gchar *text); | |
50 | |
684 | 51 gchar *info_tab_default_order(void); |
9 | 52 |
53 #endif |