Mercurial > geeqie.yaz
annotate src/icons/Makefile.am @ 1743:d8e9d0cc640e
Allow to switch to fullscreen mode using LIRC.
Imagine the following situation (which happened to me several times) :
you want to see photos from your bed or your sofa so you launch geeqie
and go to the right directory, then you take your remote control and sit
comfortably far from your keyboard and mouse. And when you want to begin
to watch photos, you realize you forgot to enable full screen! You have
to stand up and to go until your computer and come back, whereas you
could have done it with your remote control.
Patch by Bernard Massot.
author | zas_ |
---|---|
date | Tue, 05 Jan 2010 17:49:50 +0000 |
parents | 6cb3c072be3f |
children |
rev | line source |
---|---|
91
d063f97503b7
Wed Nov 1 11:39:48 2006 John Ellis <johne@verizon.net>
gqview
parents:
41
diff
changeset
|
1 SUBDIRS = svg |
d063f97503b7
Wed Nov 1 11:39:48 2006 John Ellis <johne@verizon.net>
gqview
parents:
41
diff
changeset
|
2 DIST_SUBDIRS = svg |
d063f97503b7
Wed Nov 1 11:39:48 2006 John Ellis <johne@verizon.net>
gqview
parents:
41
diff
changeset
|
3 |
9 | 4 ## GQview inline icons |
5 | |
6 ICONS_INLINE = \ | |
7 folder_closed.png \ | |
8 folder_locked.png \ | |
9 folder_open.png \ | |
10 folder_up.png \ | |
91
d063f97503b7
Wed Nov 1 11:39:48 2006 John Ellis <johne@verizon.net>
gqview
parents:
41
diff
changeset
|
11 gqview_icon.png \ |
198 | 12 geeqie_logo.png \ |
9 | 13 scroller.png \ |
14 sheet_broken.png \ | |
41
6281cc38e5ca
Wed Apr 27 15:17:57 2005 John Ellis <johne@verizon.net>
gqview
parents:
9
diff
changeset
|
15 icon_float.png \ |
91
d063f97503b7
Wed Nov 1 11:39:48 2006 John Ellis <johne@verizon.net>
gqview
parents:
41
diff
changeset
|
16 icon_thumb.png \ |
d063f97503b7
Wed Nov 1 11:39:48 2006 John Ellis <johne@verizon.net>
gqview
parents:
41
diff
changeset
|
17 icon_book.png \ |
d063f97503b7
Wed Nov 1 11:39:48 2006 John Ellis <johne@verizon.net>
gqview
parents:
41
diff
changeset
|
18 icon_config.png \ |
d063f97503b7
Wed Nov 1 11:39:48 2006 John Ellis <johne@verizon.net>
gqview
parents:
41
diff
changeset
|
19 icon_tools.png \ |
d063f97503b7
Wed Nov 1 11:39:48 2006 John Ellis <johne@verizon.net>
gqview
parents:
41
diff
changeset
|
20 icon_view.png |
9 | 21 |
22 ICONS_INLINE_PAIRS = \ | |
23 folder_closed $(srcdir)/folder_closed.png \ | |
24 folder_locked $(srcdir)/folder_locked.png \ | |
25 folder_open $(srcdir)/folder_open.png \ | |
26 folder_up $(srcdir)/folder_up.png \ | |
91
d063f97503b7
Wed Nov 1 11:39:48 2006 John Ellis <johne@verizon.net>
gqview
parents:
41
diff
changeset
|
27 gqview_icon $(srcdir)/gqview_icon.png \ |
198 | 28 geeqie_logo $(srcdir)/geeqie_logo.png \ |
91
d063f97503b7
Wed Nov 1 11:39:48 2006 John Ellis <johne@verizon.net>
gqview
parents:
41
diff
changeset
|
29 icon_float $(srcdir)/icon_float.png \ |
d063f97503b7
Wed Nov 1 11:39:48 2006 John Ellis <johne@verizon.net>
gqview
parents:
41
diff
changeset
|
30 icon_thumb $(srcdir)/icon_thumb.png \ |
9 | 31 icon_scroller $(srcdir)/scroller.png \ |
32 icon_broken $(srcdir)/sheet_broken.png \ | |
91
d063f97503b7
Wed Nov 1 11:39:48 2006 John Ellis <johne@verizon.net>
gqview
parents:
41
diff
changeset
|
33 icon_book $(srcdir)/icon_book.png \ |
d063f97503b7
Wed Nov 1 11:39:48 2006 John Ellis <johne@verizon.net>
gqview
parents:
41
diff
changeset
|
34 icon_config $(srcdir)/icon_config.png \ |
d063f97503b7
Wed Nov 1 11:39:48 2006 John Ellis <johne@verizon.net>
gqview
parents:
41
diff
changeset
|
35 icon_tools $(srcdir)/icon_tools.png \ |
d063f97503b7
Wed Nov 1 11:39:48 2006 John Ellis <johne@verizon.net>
gqview
parents:
41
diff
changeset
|
36 icon_view $(srcdir)/icon_view.png |
9 | 37 |
308
6cb3c072be3f
ui_icons.h and icons_inline.h depend on gdk-pixbuf-csource,
zas_
parents:
198
diff
changeset
|
38 icons_inline.h: $(ICONS_INLINE) Makefile.in |
6cb3c072be3f
ui_icons.h and icons_inline.h depend on gdk-pixbuf-csource,
zas_
parents:
198
diff
changeset
|
39 @(echo '/* Auto generated file, do not edit */'; echo; \ |
6cb3c072be3f
ui_icons.h and icons_inline.h depend on gdk-pixbuf-csource,
zas_
parents:
198
diff
changeset
|
40 echo '#ifndef ICONS_INLINE_H'; \ |
6cb3c072be3f
ui_icons.h and icons_inline.h depend on gdk-pixbuf-csource,
zas_
parents:
198
diff
changeset
|
41 echo '#define ICONS_INLINE_H'; echo; \ |
6cb3c072be3f
ui_icons.h and icons_inline.h depend on gdk-pixbuf-csource,
zas_
parents:
198
diff
changeset
|
42 $(GDK_PIXBUF_CSOURCE) --raw --extern --build-list $(ICONS_INLINE_PAIRS); \ |
6cb3c072be3f
ui_icons.h and icons_inline.h depend on gdk-pixbuf-csource,
zas_
parents:
198
diff
changeset
|
43 echo '#endif /* ICONS_INLINE_H */') > $@ || echo "!!! Failed to generate $@ !!!" |
9 | 44 |
45 noinst_DATA = icons_inline.h | |
46 CLEANFILES = $(noinst_DATA) | |
47 | |
48 ## end GQview specific icons | |
49 | |
50 | |
1 | 51 EXTRA_DIST = \ |
9 | 52 $(ICONS_INLINE) \ |
98
e639afdc1c60
Sat Nov 4 10:31:51 2006 John Ellis <johne@verizon.net>
gqview
parents:
91
diff
changeset
|
53 marker.xpm |
1 | 54 |