Mercurial > geeqie.yaz
comparison src/info.h @ 479:5212d4fed37f
Ensure Properties dialog is displayed above fullscreen window.
Add a parameter to info_window_new() to pass parent window and
revert patch 472.
author | zas_ |
---|---|
date | Tue, 22 Apr 2008 08:16:02 +0000 |
parents | 48c8e49b571c |
children | 9f00d0d874fa |
comparison
equal
deleted
inserted
replaced
478:9e54275835fb | 479:5212d4fed37f |
---|---|
17 | 17 |
18 typedef struct _InfoData InfoData; | 18 typedef struct _InfoData InfoData; |
19 struct _InfoData | 19 struct _InfoData |
20 { | 20 { |
21 GtkWidget *window; | 21 GtkWidget *window; |
22 GtkWidget *parent; | |
23 | |
22 ImageWindow *image; | 24 ImageWindow *image; |
23 | 25 |
24 GList *list; | 26 GList *list; |
25 | 27 |
26 FileData *fd; | 28 FileData *fd; |
36 | 38 |
37 gint updated; | 39 gint updated; |
38 }; | 40 }; |
39 | 41 |
40 | 42 |
41 void info_window_new(FileData *fd, GList *list); | 43 void info_window_new(FileData *fd, GList *list, GtkWidget *parent); |
42 | 44 |
43 GtkWidget *table_add_line(GtkWidget *table, gint x, gint y, | 45 GtkWidget *table_add_line(GtkWidget *table, gint x, gint y, |
44 const gchar *description, const gchar *text); | 46 const gchar *description, const gchar *text); |
45 | 47 |
46 | 48 |