6f5ef694cb35250c0b18cacf6130553b0d657a75
[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 #include <config.h>
26
27 #include "intl.h"
28
29 #ifdef HAVE_DEVELOPER
30 #include "backward.h"
31 #endif
32
33 /*
34  *-------------------------------------
35  * Standard library includes
36  *-------------------------------------
37  */
38
39 #include <pwd.h>
40 #include <stdio.h>
41 #include <stdlib.h>
42 #include <string.h>
43 #include <time.h>
44 #include <unistd.h>
45 #include <sys/stat.h>
46 #include <sys/time.h>
47 #include <sys/types.h>
48 #include <dirent.h>
49 #include <fcntl.h>
50
51 /*
52  *-------------------------------------
53  * includes for glib / gtk / gdk-pixbuf
54  *-------------------------------------
55  */
56
57 #include <gdk/gdk.h>
58 #include <gtk/gtk.h>
59
60 #include <gdk-pixbuf/gdk-pixbuf.h>
61 #include <gdk-pixbuf/gdk-pixbuf-loader.h>
62
63 #include "compat.h"
64
65 /*
66  *----------------------------------------------------------------------------
67  * defines
68  *----------------------------------------------------------------------------
69  */
70
71 #define USE_XDG 1
72
73 #define GQ_APPNAME "Geeqie"
74 #define GQ_APPNAME_LC "geeqie"
75 #define GQ_WEBSITE "https://www.geeqie.org/"
76 #define GQ_EMAIL_ADDRESS "geeqie@freelists.org"
77
78 #define GQ_RC_DIR               "." GQ_APPNAME_LC
79 #define GQ_COLLECTIONS_DIR      "collections"
80 #define GQ_TRASH_DIR            "trash"
81 #define GQ_WINDOW_LAYOUTS_DIR   "layouts"
82 #define GQ_ARCHIVE_DIR  "geeqie-archive"
83 #define GQ_RESOURCE_PATH_ICONS "/org/geeqie/icons"
84 #define GQ_RESOURCE_PATH_CREDITS "/org/geeqie/credits"
85 #define GQ_RESOURCE_PATH_UI "/org/geeqie/ui"
86
87 #define GQ_SYSTEM_WIDE_DIR    "/etc/" GQ_APPNAME_LC
88
89 #define RC_FILE_NAME GQ_APPNAME_LC "rc.xml"
90 #define DEFAULT_WINDOW_LAYOUT "default_window_layout.xml"
91
92 #define GQ_COLLECTION_EXT ".gqv"
93
94 #define SCROLL_RESET_TOPLEFT 0
95 #define SCROLL_RESET_CENTER 1
96 #define SCROLL_RESET_NOCHANGE 2
97
98 #define MOUSEWHEEL_SCROLL_SIZE 20
99
100
101 #define GQ_DEFAULT_SHELL_PATH "/bin/sh"
102 #define GQ_DEFAULT_SHELL_OPTIONS "-c"
103
104 #define COLOR_PROFILE_INPUTS 4
105
106 #define DEFAULT_THUMB_WIDTH     96
107 #define DEFAULT_THUMB_HEIGHT    72
108
109 #define DEFAULT_MINIMAL_WINDOW_SIZE 100
110
111 #define IMAGE_MIN_WIDTH 100
112 #define SIDEBAR_DEFAULT_WIDTH 250
113
114
115 #define DEFAULT_OVERLAY_INFO    "%collection:<i>*</i>\\n%" \
116                                 "(%number%/%total%) [%zoom%] <b>%name%</b>\n" \
117                                 "%res%|%date%|%size%\n" \
118                                 "%formatted.Aperture%|%formatted.ShutterSpeed%|%formatted.ISOSpeedRating:ISO *%|%formatted.FocalLength%|%formatted.ExposureBias:* Ev%\n" \
119                                 "%formatted.Camera:40%|%formatted.Flash%\n"            \
120                                 "%formatted.star_rating%"
121
122 #define GQ_LINK_STR "↗"
123 #include "typedefs.h"
124 #include "debug.h"
125 #include "options.h"
126
127 #define APPIMAGE_VERSION_FILE "https://raw.githubusercontent.com/geeqie/geeqie.github.io/master/AppImage/appimages.txt"
128 #define TIMEZONE_DATABASE_WEB "https://cdn.bertold.org/zonedetect/db/db.zip"
129 #define TIMEZONE_DATABASE_FILE "timezone21.bin"
130 #define TIMEZONE_DATABASE_VERSION "out_v1"
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 /* From http://stackoverflow.com/questions/3417837/ */
138 #ifdef UNUSED
139 #elif defined(__GNUC__)
140 # define UNUSED(x) UNUSED_ ## x __attribute__((unused))
141 #elif defined(__LCLINT__)
142 # define UNUSED(x) /*@unused@*/ x
143 #else
144 # define UNUSED(x) x
145 #endif
146
147 /*
148  *----------------------------------------------------------------------------
149  * main.cc
150  *----------------------------------------------------------------------------
151  */
152
153 /*
154  * This also doubles as the main.cc header.
155  */
156
157 extern gboolean thumb_format_changed;
158
159 extern gchar *gq_prefix;
160 extern gchar *gq_localedir;
161 extern gchar *gq_helpdir;
162 extern gchar *gq_htmldir;
163 extern gchar *gq_appdir;
164 extern gchar *gq_bindir;
165 extern gchar *gq_executable_path;
166 extern gchar *desktop_file_template;
167 extern gchar *instance_identifier;
168
169 void keyboard_scroll_calc(gint *x, gint *y, GdkEventKey *event);
170 gint key_press_cb(GtkWidget *widget, GdkEventKey *event, gpointer data);
171
172 void exit_program();
173
174 #define CASE_SORT(a, b) ( (options->file_sort.case_sensitive) ? strcmp((a), (b)) : strcasecmp((a), (b)) )
175
176
177 #endif
178 /* vim: set shiftwidth=8 softtabstop=0 cindent cinoptions={1s: */