Mercurial > geeqie.yaz
annotate src/main.h @ 1369:dc1768a8af01
Align exif labels vertically (visually better since name is now smaller than value).
author | zas_ |
---|---|
date | Sun, 01 Mar 2009 23:38:36 +0000 |
parents | 55ea4962887a |
children | 3c9abbc05792 |
rev | line source |
---|---|
1 | 1 /* |
196 | 2 * Geeqie |
67
f63ecca6c087
Fri Oct 13 05:22:43 2006 John Ellis <johne@verizon.net>
gqview
parents:
14
diff
changeset
|
3 * (C) 2006 John Ellis |
1284 | 4 * Copyright (C) 2008 - 2009 The Geeqie Team |
1 | 5 * |
6 * Author: John Ellis | |
7 * | |
9 | 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! | |
1 | 11 */ |
12 | |
9 | 13 |
282 | 14 #ifndef MAIN_H |
15 #define MAIN_H | |
9 | 16 |
1 | 17 #ifdef HAVE_CONFIG_H |
18 # include "config.h" | |
19 #endif | |
20 | |
9 | 21 #ifdef HAVE_STRVERSCMP |
213 | 22 # ifndef _GNU_SOURCE |
23 # define _GNU_SOURCE | |
24 # endif | |
9 | 25 #endif |
26 | |
1 | 27 #include "intl.h" |
28 | |
671
8268cbe682f1
Include debug.h from main.h since debug macros may be used anywhere in the code.
zas_
parents:
653
diff
changeset
|
29 |
1 | 30 /* |
31 *------------------------------------- | |
32 * Standard library includes | |
33 *------------------------------------- | |
34 */ | |
35 | |
36 #include <pwd.h> | |
37 #include <stdio.h> | |
38 #include <stdlib.h> | |
39 #include <string.h> | |
40 #include <time.h> | |
41 #include <unistd.h> | |
42 #include <sys/stat.h> | |
9 | 43 #include <sys/time.h> |
44 #include <sys/types.h> | |
1 | 45 #include <dirent.h> |
9 | 46 #include <fcntl.h> |
1 | 47 |
48 /* | |
49 *------------------------------------- | |
9 | 50 * includes for glib / gtk / gdk-pixbuf |
1 | 51 *------------------------------------- |
52 */ | |
53 | |
54 #include <gdk/gdk.h> | |
55 #include <gtk/gtk.h> | |
9 | 56 |
57 #include <gdk-pixbuf/gdk-pixbuf.h> | |
58 #include <gdk-pixbuf/gdk-pixbuf-loader.h> | |
59 | |
1 | 60 |
61 /* | |
62 *---------------------------------------------------------------------------- | |
63 * defines | |
64 *---------------------------------------------------------------------------- | |
65 */ | |
66 | |
1149
c4fcf8001574
Implement preliminary support for XDG Base Directory Specification.
zas_
parents:
1145
diff
changeset
|
67 #define USE_XDG 0 |
c4fcf8001574
Implement preliminary support for XDG Base Directory Specification.
zas_
parents:
1145
diff
changeset
|
68 |
288
d1f74154463e
Replace occurences of Geeqie / geeqie by constants defined in main.h.
zas_
parents:
283
diff
changeset
|
69 #define GQ_APPNAME "Geeqie" |
d1f74154463e
Replace occurences of Geeqie / geeqie by constants defined in main.h.
zas_
parents:
283
diff
changeset
|
70 #define GQ_APPNAME_LC "geeqie" |
d1f74154463e
Replace occurences of Geeqie / geeqie by constants defined in main.h.
zas_
parents:
283
diff
changeset
|
71 #define GQ_WEBSITE "geeqie.sourceforge.net" |
d1f74154463e
Replace occurences of Geeqie / geeqie by constants defined in main.h.
zas_
parents:
283
diff
changeset
|
72 #define GQ_EMAIL_ADDRESS "geeqie-devel@lists.sourceforge.net" |
254
9faf34f047b1
Make the wmclass value unique among the code by defining
zas_
parents:
243
diff
changeset
|
73 |
1145
3a7af6a8cd5f
Use functions to return directories instead of constants.
zas_
parents:
1055
diff
changeset
|
74 #define GQ_RC_DIR "." GQ_APPNAME_LC |
3a7af6a8cd5f
Use functions to return directories instead of constants.
zas_
parents:
1055
diff
changeset
|
75 #define GQ_COLLECTIONS_DIR "collections" |
3a7af6a8cd5f
Use functions to return directories instead of constants.
zas_
parents:
1055
diff
changeset
|
76 #define GQ_TRASH_DIR "trash" |
9 | 77 |
743
77ff94c0490a
Try to load a system-wide rc file if any, before per-user rc file.
zas_
parents:
737
diff
changeset
|
78 #define GQ_SYSTEM_WIDE_DIR "/etc/" GQ_APPNAME_LC |
77ff94c0490a
Try to load a system-wide rc file if any, before per-user rc file.
zas_
parents:
737
diff
changeset
|
79 |
1309 | 80 #define RC_FILE_NAME GQ_APPNAME_LC "rc.xml" |
1 | 81 |
781
2d2cca2bceb0
Replace hardcoded collection filename extension by a macro (GQ_COLLECTION_EXT).
zas_
parents:
767
diff
changeset
|
82 #define GQ_COLLECTION_EXT ".gqv" |
2d2cca2bceb0
Replace hardcoded collection filename extension by a macro (GQ_COLLECTION_EXT).
zas_
parents:
767
diff
changeset
|
83 |
9 | 84 #define SCROLL_RESET_TOPLEFT 0 |
85 #define SCROLL_RESET_CENTER 1 | |
86 #define SCROLL_RESET_NOCHANGE 2 | |
87 | |
4 | 88 #define MOUSEWHEEL_SCROLL_SIZE 20 |
89 | |
1 | 90 |
737
8a8873e7a552
Make shell command and its option rc file options instead of hardcoded strings.
zas_
parents:
728
diff
changeset
|
91 #define GQ_DEFAULT_SHELL_PATH "/bin/sh" |
8a8873e7a552
Make shell command and its option rc file options instead of hardcoded strings.
zas_
parents:
728
diff
changeset
|
92 #define GQ_DEFAULT_SHELL_OPTIONS "-c" |
8a8873e7a552
Make shell command and its option rc file options instead of hardcoded strings.
zas_
parents:
728
diff
changeset
|
93 |
113
55166d93498d
Fri Nov 24 21:37:01 2006 John Ellis <johne@verizon.net>
gqview
parents:
91
diff
changeset
|
94 #define COLOR_PROFILE_INPUTS 4 |
55166d93498d
Fri Nov 24 21:37:01 2006 John Ellis <johne@verizon.net>
gqview
parents:
91
diff
changeset
|
95 |
226
3c89da4aef95
Fix and simplify thumbnails size combo box related code.
zas_
parents:
218
diff
changeset
|
96 #define DEFAULT_THUMB_WIDTH 96 |
3c89da4aef95
Fix and simplify thumbnails size combo box related code.
zas_
parents:
218
diff
changeset
|
97 #define DEFAULT_THUMB_HEIGHT 72 |
3c89da4aef95
Fix and simplify thumbnails size combo box related code.
zas_
parents:
218
diff
changeset
|
98 |
1029
1a4b18c58556
Use a constant for minimal window size. Set it to 32 for all dialogs.
zas_
parents:
1028
diff
changeset
|
99 #define DEFAULT_MINIMAL_WINDOW_SIZE 32 |
1a4b18c58556
Use a constant for minimal window size. Set it to 32 for all dialogs.
zas_
parents:
1028
diff
changeset
|
100 |
413
9e521adbf312
Add two new options to control image read buffer at runtime.
zas_
parents:
386
diff
changeset
|
101 #define IMAGE_LOADER_READ_BUFFER_SIZE_DEFAULT 4096 |
9e521adbf312
Add two new options to control image read buffer at runtime.
zas_
parents:
386
diff
changeset
|
102 #define IMAGE_LOADER_READ_BUFFER_SIZE_MIN 512 |
9e521adbf312
Add two new options to control image read buffer at runtime.
zas_
parents:
386
diff
changeset
|
103 #define IMAGE_LOADER_READ_BUFFER_SIZE_MAX 16*1024*1024 |
9e521adbf312
Add two new options to control image read buffer at runtime.
zas_
parents:
386
diff
changeset
|
104 |
9e521adbf312
Add two new options to control image read buffer at runtime.
zas_
parents:
386
diff
changeset
|
105 #define IMAGE_LOADER_IDLE_READ_LOOP_COUNT_DEFAULT 1 |
9e521adbf312
Add two new options to control image read buffer at runtime.
zas_
parents:
386
diff
changeset
|
106 #define IMAGE_LOADER_IDLE_READ_LOOP_COUNT_MIN 1 |
9e521adbf312
Add two new options to control image read buffer at runtime.
zas_
parents:
386
diff
changeset
|
107 #define IMAGE_LOADER_IDLE_READ_LOOP_COUNT_MAX 16 |
9e521adbf312
Add two new options to control image read buffer at runtime.
zas_
parents:
386
diff
changeset
|
108 |
489
3809ffa3567b
Save state and width of exif, info and sort panels to rc file.
zas_
parents:
475
diff
changeset
|
109 #define PANEL_MIN_WIDTH 64 |
3809ffa3567b
Save state and width of exif, info and sort panels to rc file.
zas_
parents:
475
diff
changeset
|
110 #define PANEL_DEFAULT_WIDTH 288 |
3809ffa3567b
Save state and width of exif, info and sort panels to rc file.
zas_
parents:
475
diff
changeset
|
111 #define PANEL_MAX_WIDTH 1200 |
415 | 112 |
622 | 113 #define DEFAULT_OVERLAY_INFO "%collection:<i>*</i>\\n%" \ |
114 "(%number%/%total%) [%zoom%] <b>%name%</b>\n" \ | |
442 | 115 "%res%|%date%|%size%\n" \ |
622 | 116 "%formatted.Aperture%|%formatted.ShutterSpeed%|%formatted.ISOSpeedRating:ISO *%|%formatted.FocalLength%|%formatted.ExposureBias:* Ev%\n" \ |
117 "%formatted.Camera:40%|%formatted.Flash%" | |
495 | 118 |
1242 | 119 #define GQ_LINK_STR "↗" |
134
9009856628f7
started implementation of external commands; external Delete should work
nadvornik
parents:
113
diff
changeset
|
120 #include "typedefs.h" |
671
8268cbe682f1
Include debug.h from main.h since debug macros may be used anywhere in the code.
zas_
parents:
653
diff
changeset
|
121 #include "debug.h" |
508
011a6be611c8
Move options stuff to options.{c,h} and remove globals.c
zas_
parents:
507
diff
changeset
|
122 #include "options.h" |
113
55166d93498d
Fri Nov 24 21:37:01 2006 John Ellis <johne@verizon.net>
gqview
parents:
91
diff
changeset
|
123 |
9 | 124 /* |
125 *---------------------------------------------------------------------------- | |
126 * main.c | |
127 *---------------------------------------------------------------------------- | |
128 */ | |
1 | 129 |
9 | 130 /* |
131 * This also doubles as the main.c header. | |
132 */ | |
1 | 133 |
9 | 134 void keyboard_scroll_calc(gint *x, gint *y, GdkEventKey *event); |
135 gint key_press_cb(GtkWidget *widget, GdkEventKey *event, gpointer data); | |
648
e34c1002e553
Move some functions from main.[ch] to new window.[ch].
zas_
parents:
645
diff
changeset
|
136 |
278 | 137 void exit_program(void); |
1 | 138 |
1309 | 139 void init_after_global_options(void); |
140 | |
329 | 141 #define CASE_SORT(a, b) ( (options->file_sort.case_sensitive) ? strcmp((a), (b)) : strcasecmp((a), (b)) ) |
319 | 142 |
1 | 143 |
9 | 144 #endif |
1055
1646720364cf
Adding a vim modeline to all files - patch by Klaus Ethgen
nadvornik
parents:
1029
diff
changeset
|
145 /* vim: set shiftwidth=8 softtabstop=0 cindent cinoptions={1s: */ |