4 * Copyright (C) 2008 Adam Williams <broadcast at earthling dot net>
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.
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.
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
27 // Global objects for the user interface
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"
58 BC_Resources(); // The window parameter is used to get the display information initially
61 friend class BC_WindowBase;
63 int initialize_display(BC_WindowBase *window);
67 // Get ID for filebox history. Persistent.
69 int get_bg_color(); // window backgrounds
70 int get_bg_shadow1(); // border for windows
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);
79 static void set_signals(BC_Signals *signal_handler);
80 static BC_Signals* get_signals();
83 // These values should be changed before the first window is created.
85 int bg_color; // window backgrounds
91 int bg_shadow1; // border for windows
95 int default_text_color;
96 int disabled_text_color;
101 int button_highlighted;
105 int button_uphighlighted;
108 int highlight_inverse;
110 // 3D box colors for menus
112 int menu_highlighted;
116 // If these are nonzero, they override the menu backgrounds.
117 VFrame *menu_popup_bg;
118 VFrame **menu_title_bg;
120 VFrame **popupmenu_images;
122 // Minimum menu width
124 // Menu bar text color
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
132 // Right margin for triangle not including text margin.
133 int popupmenu_triangle_margin;
134 // color for item text
136 // Override the menu item background if nonzero.
137 VFrame **menu_item_bg;
140 // color for progress text
142 // set focus on enter
143 int grab_input_focus;
145 int menu_highlighted_fontcolor;
147 // ms for double click
149 // ms for cursor flash
151 // ms for scroll repeats
155 int tooltip_bg_color;
156 int tooltips_enabled;
157 int textbox_focus_policy;
159 int audiovideo_color;
161 // default color of text
163 // background color of textboxes and list boxes
168 int text_background_disarmed;
169 int text_background_hi;
170 int text_background_noborder_hi;
175 int text_inactive_highlight;
176 int text_selected_highlight;
178 int text_background_noborder;
180 // Optional background for highlighted text in toggle
181 VFrame *toggle_highlight_bg;
182 int toggle_text_margin;
185 static VFrame *bg_image;
186 static VFrame *menu_bg;
189 VFrame *default_icon;
192 VFrame **cancel_images;
193 VFrame **filebox_text_images;
194 VFrame **filebox_icons_images;
195 VFrame **filebox_updir_images;
196 VFrame **filebox_newfolder_images;
197 VFrame **filebox_rename_images;
198 VFrame **filebox_descend_images;
199 VFrame **filebox_delete_images;
200 VFrame **filebox_reload_images;
201 VFrame **filebox_szfmt_images;
203 // Generic button images
204 VFrame **generic_button_images;
205 // Generic button text margin
206 int generic_button_margin;
207 VFrame **usethis_button_images;
210 VFrame **checkbox_images;
211 VFrame **radial_images;
212 VFrame **label_images;
216 VFrame **tumble_data;
224 VFrame **listbox_button;
225 VFrame **listbox_expand;
226 VFrame **listbox_column;
229 int listbox_title_overlap;
230 // Margin for titles in addition to listbox border
231 int listbox_title_margin;
232 int listbox_title_color;
233 int listbox_title_hotspot;
235 int listbox_border2_hi;
237 int listbox_border3_hi;
240 // Selected row color
241 int listbox_selected;
242 // Highlighted row color
243 int listbox_highlighted;
244 // Inactive row color
245 int listbox_inactive;
246 // Default text color
251 VFrame **horizontal_slider_data;
252 VFrame **vertical_slider_data;
253 VFrame **hscroll_data;
255 VFrame **vscroll_data;
256 // Minimum pixels in handle
257 int scroll_minhandle;
265 int pot_x1, pot_y1, pot_r;
266 // Amount of deflection of pot when down
268 int pot_needle_color;
271 VFrame **xmeter_images, **ymeter_images;
273 int meter_font_color;
278 VFrame **progress_images;
280 // Motion required to start a drag
284 static suffix_to_type_t suffix_to_type[];
285 VFrame **type_to_icon;
286 // Display mode for fileboxes
288 // Filter currently used in filebox
289 char filebox_filter[BCTEXTLEN];
290 // History of submitted files
291 filebox_history_t filebox_history[FILEBOX_HISTORY_SIZE];
295 // Column types for filebox
296 int filebox_columntype[FILEBOX_COLUMNS];
297 int filebox_columnwidth[FILEBOX_COLUMNS];
298 int filebox_sortcolumn;
299 int filebox_sortorder;
300 // Column types for filebox in directory mode
301 int dirbox_columntype[FILEBOX_COLUMNS];
302 int dirbox_columnwidth[FILEBOX_COLUMNS];
303 int dirbox_sortcolumn;
304 int dirbox_sortorder;
305 // Bottom margin between list and window
310 double font_scale, icon_scale;
312 static const char *small_font, *small_font2;
313 static const char *medium_font, *medium_font2;
314 static const char *large_font, *large_font2;
315 static const char *big_font, *big_font2;
316 static const char *clock_font, *clock_font2;
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 static const char *clock_fontset;
324 static const char *small_font_xft, *small_b_font_xft;
325 static const char *medium_font_xft, *medium_b_font_xft;
326 static const char *large_font_xft, *large_b_font_xft;
327 static const char *big_font_xft, *big_b_font_xft;
328 static const char *clock_font_xft, *clock_b_font_xft;
330 // Backup of fonts in case the first choices don't exist
331 static const char *small_font_xft2;
332 static const char *medium_font_xft2;
333 static const char *large_font_xft2;
334 static const char *big_font_xft2;
335 static const char *clock_font_xft2;
337 void init_font_defs(double scale);
338 void finit_font_defs();
340 VFrame **medium_7segment;
343 int draw_clock_background;
348 // Current locale uses utf8
349 static int locale_utf8;
350 // Byte order is little_endian
351 static int little_endian;
352 // Language and region
353 static char language[LEN_LANG];
354 static char region[LEN_LANG];
355 static char encoding[LEN_ENCOD];
356 static const char *wide_encoding;
357 static ArrayList<BC_FontEntry*> *fontlist;
358 static int init_fontconfig(const char *search_path);
359 static BC_FontEntry *find_fontentry(const char *displayname, int style,
360 int mask, int preferred_style = 0);
361 static void encode_to_utf8(char *buffer, int buflen);
362 static FcPattern* find_similar_font(FT_ULong char_code, FcPattern *oldfont);
363 static size_t encode(const char *from_enc, const char *to_enc,
364 char *input, int input_length, char *output, int output_length);
365 static int find_font_by_char(FT_ULong char_code, char *path_new, const FT_Face oldface);
366 static int font_debug;
367 static void dump_fonts(FILE *fp = stdout);
368 static void dump_font_entry(FILE *fp, const char *cp, BC_FontEntry *ep);
370 static void new_vframes(int n, VFrame *vframes[], ...);
371 static void del_vframes(VFrame *vframes[], int n);
373 static VFrame *default_type_to_icon[6];
374 static VFrame *default_bar;
375 static VFrame *default_cancel_images[3];
376 static VFrame *default_ok_images[3];
377 static VFrame *default_usethis_images[3];
379 static VFrame *default_checkbox_images[5];
380 static VFrame *default_radial_images[5];
381 static VFrame *default_label_images[5];
383 static VFrame *default_menuitem_data[3];
384 static VFrame *default_menubar_data[3];
385 static VFrame *default_menu_popup_bg;
386 static VFrame *default_menu_bar_bg;
387 static VFrame *default_check_image;
388 static VFrame *default_filebox_text_images[3];
389 static VFrame *default_filebox_icons_images[3];
390 static VFrame *default_filebox_updir_images[3];
391 static VFrame *default_filebox_newfolder_images[3];
392 static VFrame *default_filebox_rename_images[3];
393 static VFrame *default_filebox_delete_images[3];
394 static VFrame *default_filebox_reload_images[3];
395 static VFrame *default_filebox_szfmt_images[12];
396 static VFrame *default_listbox_button[4];
397 static VFrame *default_listbox_bg;
398 static VFrame *default_listbox_expand[5];
399 static VFrame *default_listbox_column[3];
400 static VFrame *default_listbox_up;
401 static VFrame *default_listbox_dn;
402 static VFrame *default_pot_images[3];
403 static VFrame *default_progress_images[2];
404 static VFrame *default_medium_7segment[20];
405 static VFrame *default_vscroll_data[10];
406 static VFrame *default_hscroll_data[10];
407 static VFrame *default_icon_img;
409 // Make VFrame use shm
411 int use_vframe_shm() { return use_shm && vframe_shm ? 1 : 0; }
413 static int get_machine_cpus();
414 static int machine_cpus;
415 // Available display extensions
419 // If the program uses recursive_resizing
420 int recursive_resizing;
421 // Work around X server bugs
423 // Seems to help if only 1 window is created at a time.
424 Mutex *create_window_lock;
425 // size raw, 1000, 1024, thou
426 int filebox_size_format;
428 // Test for availability of shared memory pixmaps
429 void init_shm(BC_WindowBase *window);
430 void init_sizes(BC_WindowBase *window);
431 static int x_error_handler(Display *display, XErrorEvent *event);
432 VFrame **list_pointers[100];
433 int list_lengths[100];
435 static const char *fc_properties[];
439 static Mutex fontconfig_lock;
441 // Pointer to signal handler class to run after ipc
442 static BC_Signals *signal_handler;
443 BC_Synchronous *synchronous;