Simplify vflist_get_formatted()
[geeqie.git] / src / main.h
1 /*
2  * Copyright (C) 2006 John Ellis
3  * Copyright (C) 2008 - 2016 The Geeqie Team
4  *
5  * Author: John Ellis
6  *
7  * This program is free software; you can redistribute it and/or modify
8  * it under the terms of the GNU General Public License as published by
9  * the Free Software Foundation; either version 2 of the License, or
10  * (at your option) any later version.
11  *
12  * This program is distributed in the hope that it will be useful,
13  * but WITHOUT ANY WARRANTY; without even the implied warranty of
14  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
15  * GNU General Public License for more details.
16  *
17  * You should have received a copy of the GNU General Public License along
18  * with this program; if not, write to the Free Software Foundation, Inc.,
19  * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
20  */
21
22 #ifndef MAIN_H
23 #define MAIN_H
24
25 #ifdef HAVE_CONFIG_H
26 #  include "config.h"
27 #endif
28
29 #ifdef HAVE_STRVERSCMP
30 #  ifndef _GNU_SOURCE
31 #    define _GNU_SOURCE
32 #  endif
33 #endif
34
35 #include "intl.h"
36
37
38 /*
39  *-------------------------------------
40  * Standard library includes
41  *-------------------------------------
42  */
43
44 #include <pwd.h>
45 #include <stdio.h>
46 #include <stdlib.h>
47 #include <string.h>
48 #include <time.h>
49 #include <unistd.h>
50 #include <sys/stat.h>
51 #include <sys/time.h>
52 #include <sys/types.h>
53 #include <dirent.h>
54 #include <fcntl.h>
55
56 /*
57  *-------------------------------------
58  * includes for glib / gtk / gdk-pixbuf
59  *-------------------------------------
60  */
61
62 #include <gdk/gdk.h>
63 #include <gtk/gtk.h>
64
65 #include <gdk-pixbuf/gdk-pixbuf.h>
66 #include <gdk-pixbuf/gdk-pixbuf-loader.h>
67
68 #include "compat.h"
69
70 /*
71  *----------------------------------------------------------------------------
72  * defines
73  *----------------------------------------------------------------------------
74  */
75
76 #define USE_XDG 1
77
78 #define GQ_APPNAME "Geeqie"
79 #define GQ_APPNAME_LC "geeqie"
80 #define GQ_WEBSITE "http://www.geeqie.org/"
81 #define GQ_EMAIL_ADDRESS "geeqie@freelists.org"
82
83 #define GQ_RC_DIR               "." GQ_APPNAME_LC
84 #define GQ_COLLECTIONS_DIR      "collections"
85 #define GQ_TRASH_DIR            "trash"
86 #define GQ_WINDOW_LAYOUTS_DIR   "layouts"
87 #define GQ_ARCHIVE_DIR  "geeqie-archive"
88
89 #define GQ_SYSTEM_WIDE_DIR    "/etc/" GQ_APPNAME_LC
90
91 #define RC_FILE_NAME GQ_APPNAME_LC "rc.xml"
92 #define DEFAULT_WINDOW_LAYOUT "default_window_layout.xml"
93
94 #define GQ_COLLECTION_EXT ".gqv"
95
96 #define SCROLL_RESET_TOPLEFT 0
97 #define SCROLL_RESET_CENTER 1
98 #define SCROLL_RESET_NOCHANGE 2
99
100 #define MOUSEWHEEL_SCROLL_SIZE 20
101
102
103 #define GQ_DEFAULT_SHELL_PATH "/bin/sh"
104 #define GQ_DEFAULT_SHELL_OPTIONS "-c"
105
106 #define COLOR_PROFILE_INPUTS 4
107
108 #define DEFAULT_THUMB_WIDTH     96
109 #define DEFAULT_THUMB_HEIGHT    72
110
111 #define DEFAULT_MINIMAL_WINDOW_SIZE 100
112
113 #define IMAGE_MIN_WIDTH 100
114 #define SIDEBAR_DEFAULT_WIDTH 250
115
116
117 #define DEFAULT_OVERLAY_INFO    "%collection:<i>*</i>\\n%" \
118                                 "(%number%/%total%) [%zoom%] <b>%name%</b>\n" \
119                                 "%res%|%date%|%size%\n" \
120                                 "%formatted.Aperture%|%formatted.ShutterSpeed%|%formatted.ISOSpeedRating:ISO *%|%formatted.FocalLength%|%formatted.ExposureBias:* Ev%\n" \
121                                 "%formatted.Camera:40%|%formatted.Flash%\n"            \
122                                 "%formatted.star_rating%"
123
124 #define GQ_LINK_STR "↗"
125 #include "typedefs.h"
126 #include "debug.h"
127 #include "options.h"
128
129 #define TIMEZONE_DATABASE GQ_WEBSITE"downloads/timezone21.bin"
130
131 #define HELP_SEARCH_ENGINE "https://duckduckgo.com/?q=site:geeqie.org/help "
132
133 #define STAR_RATING_NOT_READ -12345
134 #define STAR_RATING_REJECTED 0x274C //Unicode Character 'Cross Mark'
135 #define STAR_RATING_STAR 0x2738 //Unicode Character 'Heavy Eight Pointed Rectilinear Black Star'
136
137 /*
138  *----------------------------------------------------------------------------
139  * main.c
140  *----------------------------------------------------------------------------
141  */
142
143 /*
144  * This also doubles as the main.c header.
145  */
146
147 extern gboolean thumb_format_changed;
148
149 extern gchar *gq_prefix;
150 extern gchar *gq_localedir;
151 extern gchar *gq_helpdir;
152 extern gchar *gq_htmldir;
153 extern gchar *gq_app_dir;
154 extern gchar *gq_bin_dir;
155 extern gchar *gq_executable_path;
156 extern gchar *desktop_file_template;
157 extern gchar *instance_identifier;
158
159 void keyboard_scroll_calc(gint *x, gint *y, GdkEventKey *event);
160 gint key_press_cb(GtkWidget *widget, GdkEventKey *event, gpointer data);
161
162 void exit_program(void);
163
164 #define CASE_SORT(a, b) ( (options->file_sort.case_sensitive) ? strcmp((a), (b)) : strcasecmp((a), (b)) )
165
166
167 #endif
168 /* vim: set shiftwidth=8 softtabstop=0 cindent cinoptions={1s: */