clipboard rework, C41/titler fixes, displayinfo tweak
[goodguy/history.git] / cinelerra-5.1 / guicast / bcresources.h
1
2 /*
3  * CINELERRA
4  * Copyright (C) 2008 Adam Williams <broadcast at earthling dot net>
5  *
6  * This program is free software; you can redistribute it and/or modify
7  * it under the terms of the GNU General Public License as published by
8  * the Free Software Foundation; either version 2 of the License, or
9  * (at your option) any later version.
10  *
11  * This program is distributed in the hope that it will be useful,
12  * but WITHOUT ANY WARRANTY; without even the implied warranty of
13  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
14  * GNU General Public License for more details.
15  *
16  * You should have received a copy of the GNU General Public License
17  * along with this program; if not, write to the Free Software
18  * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
19  *
20  */
21
22 #ifndef BCRESOURCES_H
23 #define BCRESOURCES_H
24
25
26
27 // Global objects for the user interface
28
29
30
31
32 #include "bcdisplayinfo.inc"
33 #include "bcfilebox.h"
34 #include "bcfontentry.inc"
35 #include "bcresources.inc"
36 #include "bcsignals.inc"
37 #include "bcsynchronous.inc"
38 #include "bcwindowbase.inc"
39 #include "vframe.inc"
40
41 #include <X11/Xlib.h>
42
43 typedef struct
44 {
45         const char *suffix;
46         int icon_type;
47 } suffix_to_type_t;
48
49 typedef struct
50 {
51         char path[BCTEXTLEN];
52         int id;
53 } filebox_history_t;
54
55 class BC_Resources
56 {
57 public:
58         BC_Resources(); // The window parameter is used to get the display information initially
59         ~BC_Resources();
60
61         friend class BC_WindowBase;
62
63         int initialize_display(BC_WindowBase *window);
64
65 // Get unique ID
66         int get_id();
67 // Get ID for filebox history.  Persistent.
68         int get_filebox_id();
69         int get_bg_color();          // window backgrounds
70         int get_bg_shadow1();        // border for windows
71         int get_bg_shadow2();
72         int get_bg_light1();
73         int get_bg_light2();
74 // Get synchronous thread for OpenGL
75         BC_Synchronous* get_synchronous();
76 // Called by user after synchronous thread is created.
77         void set_synchronous(BC_Synchronous *synchronous);
78 // Set signal handler
79         static void set_signals(BC_Signals *signal_handler);
80         static BC_Signals* get_signals();
81
82
83 // These values should be changed before the first window is created.
84 // colors
85         int bg_color;          // window backgrounds
86         int border_light1;
87         int border_light2;
88         int border_shadow1;
89         int border_shadow2;
90
91         int bg_shadow1;        // border for windows
92         int bg_shadow2;
93         int bg_light1;
94         int bg_light2;
95         int default_text_color;
96         int disabled_text_color;
97
98
99 // beveled box colors
100         int button_light;
101         int button_highlighted;
102         int button_down;
103         int button_up;
104         int button_shadow;
105         int button_uphighlighted;
106
107 // highlighting
108         int highlight_inverse;
109
110 // 3D box colors for menus
111         int menu_light;
112         int menu_highlighted;
113         int menu_down;
114         int menu_up;
115         int menu_shadow;
116 // If these are nonzero, they override the menu backgrounds.
117         VFrame *menu_popup_bg;
118         VFrame **menu_title_bg;
119         VFrame *menu_bar_bg;
120         VFrame **popupmenu_images;
121
122 // Minimum menu width
123         int min_menu_w;
124 // Menu bar text color
125         int menu_title_text;
126 // color of popup title
127         int popup_title_text;
128 // Right and left margin for text not including triangle space.
129         int popupmenu_margin;
130 // post popup on button release event
131         int popupmenu_btnup;
132 // Right margin for triangle not including text margin.
133         int popupmenu_triangle_margin;
134 // color for item text
135         int menu_item_text;
136 // Override the menu item background if nonzero.
137         VFrame **menu_item_bg;
138
139
140 // color for progress text
141         int progress_text;
142
143
144         int menu_highlighted_fontcolor;
145
146 // ms for double click
147         long double_click;
148 // ms for cursor flash
149         int blink_rate;
150 // ms for scroll repeats
151         int scroll_repeat;
152 // ms before tooltip
153         int tooltip_delay;
154         int tooltip_bg_color;
155         int tooltips_enabled;
156         int textbox_focus_policy;
157
158         int audiovideo_color;
159
160 // default color of text
161         int text_default;
162 // background color of textboxes and list boxes
163         int text_border1;
164         int text_border2;
165         int text_border2_hi;
166         int text_background;
167         int text_background_hi;
168         int text_background_noborder_hi;
169         int text_border3;
170         int text_border3_hi;
171         int text_border4;
172         int text_highlight;
173         int text_inactive_highlight;
174         int text_selected_highlight;
175 // Not used
176         int text_background_noborder;
177
178 // Optional background for highlighted text in toggle
179         VFrame *toggle_highlight_bg;
180         int toggle_text_margin;
181
182 // Background images
183         static VFrame *bg_image;
184         static VFrame *menu_bg;
185
186 // Buttons
187         VFrame **ok_images;
188         VFrame **cancel_images;
189         VFrame **filebox_text_images;
190         VFrame **filebox_icons_images;
191         VFrame **filebox_updir_images;
192         VFrame **filebox_newfolder_images;
193         VFrame **filebox_rename_images;
194         VFrame **filebox_descend_images;
195         VFrame **filebox_delete_images;
196         VFrame **filebox_reload_images;
197
198 // Generic button images
199         VFrame **generic_button_images;
200 // Generic button text margin
201         int generic_button_margin;
202         VFrame **usethis_button_images;
203
204 // Toggles
205         VFrame **checkbox_images;
206         VFrame **radial_images;
207         VFrame **label_images;
208 // menu check
209         VFrame *check;
210
211         VFrame **tumble_data;
212         int tumble_duration;
213
214 // Horizontal bar
215         VFrame *bar_data;
216
217 // Listbox
218         VFrame *listbox_bg;
219         VFrame **listbox_button;
220         VFrame **listbox_expand;
221         VFrame **listbox_column;
222         VFrame *listbox_up;
223         VFrame *listbox_dn;
224         int listbox_title_overlap;
225 // Margin for titles in addition to listbox border
226         int listbox_title_margin;
227         int listbox_title_color;
228         int listbox_title_hotspot;
229         int listbox_border1;
230         int listbox_border2_hi;
231         int listbox_border2;
232         int listbox_border3_hi;
233         int listbox_border3;
234         int listbox_border4;
235 // Selected row color
236         int listbox_selected;
237 // Highlighted row color
238         int listbox_highlighted;
239 // Inactive row color
240         int listbox_inactive;
241 // Default text color
242         int listbox_text;
243
244
245 // Sliders
246         VFrame **horizontal_slider_data;
247         VFrame **vertical_slider_data;
248         VFrame **hscroll_data;
249
250         VFrame **vscroll_data;
251 // Minimum pixels in handle
252         int scroll_minhandle;
253
254 // Pans
255         VFrame **pan_data;
256         int pan_text_color;
257
258 // Pots
259         VFrame **pot_images;
260         int pot_x1, pot_y1, pot_r;
261 // Amount of deflection of pot when down
262         int pot_offset;
263         int pot_needle_color;
264
265 // Meters
266         VFrame **xmeter_images, **ymeter_images;
267         int meter_font;
268         int meter_font_color;
269         int meter_title_w;
270         int meter_3d;
271
272 // Progress bar
273         VFrame **progress_images;
274
275 // Motion required to start a drag
276         int drag_radius;
277
278 // Filebox
279         static suffix_to_type_t suffix_to_type[TOTAL_SUFFIXES];
280         VFrame **type_to_icon;
281 // Display mode for fileboxes
282         int filebox_mode;
283 // Filter currently used in filebox
284         char filebox_filter[BCTEXTLEN];
285 // History of submitted files
286         filebox_history_t filebox_history[FILEBOX_HISTORY_SIZE];
287 // filebox size
288         int filebox_w;
289         int filebox_h;
290 // Column types for filebox
291         int filebox_columntype[FILEBOX_COLUMNS];
292         int filebox_columnwidth[FILEBOX_COLUMNS];
293         int filebox_sortcolumn;
294         int filebox_sortorder;
295 // Column types for filebox in directory mode
296         int dirbox_columntype[FILEBOX_COLUMNS];
297         int dirbox_columnwidth[FILEBOX_COLUMNS];
298         int dirbox_sortcolumn;
299         int dirbox_sortorder;
300 // Bottom margin between list and window
301         int filebox_margin;
302         int dirbox_margin;
303         int directory_color;
304         int file_color;
305         double font_scale, icon_scale;
306
307 // fonts
308         static const char *small_font;
309         static const char *medium_font;
310         static const char *large_font;
311         static const char *big_font;
312 // Backup of fonts in case the first choices don't exist
313         static const char *small_font2;
314         static const char *medium_font2;
315         static const char *large_font2;
316         static const char *big_font2;
317
318         static const char *small_fontset;
319         static const char *medium_fontset;
320         static const char *large_fontset;
321         static const char *big_fontset;
322
323         static const char *small_font_xft, *small_b_font_xft;
324         static const char *medium_font_xft, *medium_b_font_xft;
325         static const char *large_font_xft, *large_b_font_xft;
326         static const char *big_font_xft, *big_b_font_xft;
327
328 // Backup of fonts in case the first choices don't exist
329         static const char *small_font_xft2;
330         static const char *medium_font_xft2;
331         static const char *large_font_xft2;
332         static const char *big_font_xft2;
333         void init_font_defs(double scale);
334         void finit_font_defs();
335
336         VFrame **medium_7segment;
337
338 //clock
339         int draw_clock_background;
340
341         int use_fontset;
342         int use_xft;
343
344 // Current locale uses utf8
345         static int locale_utf8;
346 // Byte order is little_endian
347         static int little_endian;
348 // Language and region
349         static char language[LEN_LANG];
350         static char region[LEN_LANG];
351         static char encoding[LEN_ENCOD];
352         static const char *wide_encoding;
353         static ArrayList<BC_FontEntry*> *fontlist;
354         static int init_fontconfig(const char *search_path);
355         static BC_FontEntry *find_fontentry(const char *displayname, int style,
356                 int mask, int preferred_style = 0);
357         static void encode_to_utf8(char *buffer, int buflen);
358         static FcPattern* find_similar_font(FT_ULong char_code, FcPattern *oldfont);
359         static size_t encode(const char *from_enc, const char *to_enc,
360                 char *input, int input_length, char *output, int output_length);
361         static int find_font_by_char(FT_ULong char_code, char *path_new, const FT_Face oldface);
362         static void dump_fonts(FILE *fp = stdout);
363
364         static void new_vframes(int n, VFrame *vframes[], ...);
365         static void del_vframes(VFrame *vframes[], int n);
366 // default images
367         static VFrame *default_type_to_icon[6];
368         static VFrame *default_bar;
369         static VFrame *default_cancel_images[3];
370         static VFrame *default_ok_images[3];
371         static VFrame *default_usethis_images[3];
372 #if 0
373         static VFrame *default_checkbox_images[5];
374         static VFrame *default_radial_images[5];
375         static VFrame *default_label_images[5];
376 #endif
377         static VFrame *default_menuitem_data[3];
378         static VFrame *default_menubar_data[3];
379         static VFrame *default_menu_popup_bg;
380         static VFrame *default_menu_bar_bg;
381         static VFrame *default_check_image;
382         static VFrame *default_filebox_text_images[3];
383         static VFrame *default_filebox_icons_images[3];
384         static VFrame *default_filebox_updir_images[3];
385         static VFrame *default_filebox_newfolder_images[3];
386         static VFrame *default_filebox_rename_images[3];
387         static VFrame *default_filebox_delete_images[3];
388         static VFrame *default_filebox_reload_images[3];
389         static VFrame *default_listbox_button[4];
390         static VFrame *default_listbox_bg;
391         static VFrame *default_listbox_expand[5];
392         static VFrame *default_listbox_column[3];
393         static VFrame *default_listbox_up;
394         static VFrame *default_listbox_dn;
395         static VFrame *default_pot_images[3];
396         static VFrame *default_progress_images[2];
397         static VFrame *default_medium_7segment[20];
398
399 // Make VFrame use shm
400         int vframe_shm;
401         int use_vframe_shm() { return use_shm && vframe_shm ? 1 : 0; }
402
403         static int get_machine_cpus();
404         static int machine_cpus;
405 // Available display extensions
406         int use_shm;
407         int shm_reply;
408         static int error;
409 // If the program uses recursive_resizing
410         int recursive_resizing;
411 // Work around X server bugs
412         int use_xvideo;
413 // Seems to help if only 1 window is created at a time.
414         Mutex *create_window_lock;
415
416 private:
417 // Test for availability of shared memory pixmaps
418         void init_shm(BC_WindowBase *window);
419         void init_sizes(BC_WindowBase *window);
420         static int x_error_handler(Display *display, XErrorEvent *event);
421         VFrame **list_pointers[100];
422         int list_lengths[100];
423         int list_total;
424         static const char *fc_properties[];
425
426
427         Mutex *id_lock;
428         static Mutex fontconfig_lock;
429
430 // Pointer to signal handler class to run after ipc
431         static BC_Signals *signal_handler;
432         BC_Synchronous *synchronous;
433
434         int id;
435         int filebox_id;
436 };
437
438
439 #endif