textbox positions array deleted, 3K bytes + stats for titler
[goodguy/history.git] / cinelerra-5.1 / guicast / bcwindowbase.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 BCWINDOWBASE_H
23 #define BCWINDOWBASE_H
24
25 // Window types
26 #define MAIN_WINDOW 0
27 #define SUB_WINDOW 1
28 #define POPUP_WINDOW 2
29
30 #ifdef HAVE_LIBXXF86VM
31 #define VIDMODE_SCALED_WINDOW 3
32 #endif
33
34 #define TOOLTIP_MARGIN 2
35 #define BC_INFINITY 65536
36
37 #include "arraylist.h"
38 #include "bcbar.inc"
39 #include "bcbitmap.inc"
40 #include "bcbutton.inc"
41 #include "bccapture.inc"
42 #include "bcclipboard.inc"
43 #include "bccmodels.inc"
44 #include "bcdisplay.inc"
45 #include "bcdragwindow.inc"
46 #include "bcfilebox.inc"
47 #include "bckeyboard.h"
48 #include "bclistbox.inc"
49 #include "bcmenubar.inc"
50 #include "bcmeter.inc"
51 #include "bcpan.inc"
52 #include "bcpbuffer.inc"
53 #include "bcpixmap.inc"
54 #include "bcpopup.inc"
55 #include "bcpopupmenu.inc"
56 #include "bcpot.inc"
57 #include "bcprogress.inc"
58 #include "bcrepeater.inc"
59 #include "bcresources.inc"
60 #include "bcscrollbar.inc"
61 #include "bcslider.inc"
62 #include "bcsubwindow.inc"
63 #include "bcsynchronous.inc"
64 #include "bctextbox.inc"
65 #include "bctimer.inc"
66 #include "bctitle.inc"
67 #include "bctoggle.inc"
68 #include "bctrace.inc"
69 #include "bctumble.inc"
70 #include "bcwindow.inc"
71 #include "bcwindowbase.inc"
72 #include "bcwindowevents.inc"
73 #include "condition.inc"
74 #include "bchash.inc"
75 #include "linklist.h"
76 #include "mutex.inc"
77 #include "vframe.inc"
78
79
80 #include <stdint.h>
81 #include <stdio.h>
82 #include <stdlib.h>
83 #include <X11/Xatom.h>
84 #ifdef HAVE_XFT
85 #include <X11/Xft/Xft.h>
86 #endif
87 #include <X11/Xlib.h>
88 #include <X11/Xutil.h>
89 #include <X11/keysym.h>
90 #include <X11/cursorfont.h>
91 #ifdef HAVE_LIBXXF86VM
92 #include <X11/extensions/xf86vmode.h>
93 #endif
94 #include <X11/extensions/Xinerama.h>
95 #ifdef HAVE_GL
96 #define GL_GLEXT_PROTOTYPES
97 #include <GL/glx.h>
98 #endif
99
100
101
102 #ifdef HAVE_GL
103 //typedef void* GLXContext;
104 #endif
105
106 class BC_ResizeCall
107 {
108 public:
109         BC_ResizeCall(int w, int h);
110         int w, h;
111 };
112
113 typedef XClientMessageEvent xatom_event;
114
115
116 class BC_ActiveBitmaps : public List<BC_BitmapImage> {
117         Mutex active_lock;
118 public:
119         void reque(XEvent *ev);
120         void insert(BC_BitmapImage *image, Drawable pixmap);
121         void remove_buffers(BC_WindowBase *wdw);
122
123         BC_ActiveBitmaps();
124         ~BC_ActiveBitmaps();
125 };
126
127
128 // Windows, subwindows, popupwindows inherit from this
129 class BC_WindowBase : public trace_info
130 {
131 public:
132         BC_WindowBase(int opts=0);
133         virtual ~BC_WindowBase();
134
135         friend class BC_Bar;
136         friend class BC_BitmapImage;
137         friend class BC_XImage;
138         friend class BC_XShmImage;
139         friend class BC_XvImage;
140         friend class BC_XvShmImage;
141         friend class BC_Bitmap;
142         friend class BC_Button;
143         friend class BC_GenericButton;
144         friend class BC_Capture;
145         friend class BC_Clipboard;
146         friend class BC_Display;
147         friend class BC_DragWindow;
148         friend class BC_FileBox;
149         friend class BC_FullScreen;
150         friend class BC_ListBox;
151         friend class BC_Menu;
152         friend class BC_MenuBar;
153         friend class BC_MenuItem;
154         friend class BC_MenuPopup;
155         friend class BC_Meter;
156         friend class BC_Pan;
157         friend class BC_PBuffer;
158         friend class BC_Pixmap;
159         friend class BC_PixmapSW;
160         friend class BC_Popup;
161         friend class BC_PopupMenu;
162         friend class BC_Pot;
163         friend class BC_ProgressBar;
164         friend class BC_Repeater;
165         friend class BC_Resources;
166         friend class BC_ScrollBar;
167         friend class BC_Slider;
168         friend class BC_SubWindow;
169         friend class BC_Synchronous;
170         friend class BC_TextBox;
171         friend class BC_Title;
172         friend class BC_Toggle;
173         friend class BC_Tumbler;
174         friend class BC_Window;
175         friend class BC_WindowEvents;
176
177 // Main loop
178         int run_window();
179 // Terminal event dispatchers
180         virtual int close_event();
181         virtual int resize_event(int w, int h);
182         virtual int repeat_event(int64_t duration) { return 0; };
183         virtual int focus_in_event() { return 0; };
184         virtual int focus_out_event() { return 0; };
185         virtual int button_press_event() { return 0; };
186         virtual int button_release_event() { return 0; };
187         virtual int cursor_motion_event() { return 0; };
188         virtual int cursor_leave_event();
189         virtual int cursor_enter_event();
190         virtual int keypress_event() { return 0; };
191         virtual int keyrelease_event() { return 0; };
192         virtual int translation_event() { return 0; };
193         virtual int drag_start_event() { return 0; };
194         virtual int drag_motion_event() { return 0; };
195         virtual int drag_stop_event() { return 0; };
196         virtual int uses_text() { return 0; };
197 // Only if opengl is enabled
198         virtual int expose_event() { return 0; };
199         virtual int grab_event(XEvent *event) { return 0; };
200         virtual void create_objects() { return; };
201
202         int get_window_type() { return window_type; }
203 // Wait until event loop is running
204         void init_wait();
205         int is_running() { return window_running; }
206         int is_hidden() { return hidden; }
207 // Check if a hardware accelerated colormodel is available and reserve it
208         int accel_available(int color_model, int lock_it);
209         void get_input_context();
210         void close_input_context();
211 // Get color model adjusted for byte order and pixel size
212         int get_color_model();
213 // return the colormap pixel of the color for all bit depths
214         int get_color(int64_t color);
215 // return the currently selected color
216         int64_t get_color();
217         virtual int show_window(int flush = 1);
218         virtual int hide_window(int flush = 1);
219         int get_hidden();
220         int get_video_on();
221 // Shouldn't deference a pointer to delete a window if a parent is
222 // currently being deleted.  This returns 1 if any parent is being deleted.
223         int get_deleting();
224
225
226
227 //============================= OpenGL functions ===============================
228 // OpenGL functions must be called from inside a BC_Synchronous command.
229 // Create openGL context and bind it to the current window.
230 // If it's called inside start_video/stop_video, the context is bound to the window.
231 // If it's called outside start_video/stop_video, the context is bound to the pixmap.
232 // Must be called at the beginning of any opengl routine to make sure
233 // the context is current.
234 // No locking is performed.
235         void enable_opengl();
236         void disable_opengl();
237         void flip_opengl();
238
239 // Calls the BC_Synchronous version of the function with the window_id.
240 // Not run in OpenGL thread because it has its own lock.
241         unsigned int get_shader(char *title, int *got_it);
242         void put_shader(unsigned int handle, char *title);
243         int get_opengl_server_version();
244
245         int flash(int x, int y, int w, int h, int flush = 1);
246         int flash(int flush = 1);
247         void flush();
248         void sync_display();
249 // Lock out other threads
250         int lock_window(const char *location = 0);
251         int unlock_window();
252         int get_window_lock();
253
254         BC_MenuBar* add_menubar(BC_MenuBar *menu_bar);
255         BC_WindowBase* add_subwindow(BC_WindowBase *subwindow);
256         BC_WindowBase* add_tool(BC_WindowBase *subwindow);
257
258 // Use this to get events for the popup window.
259 // Events are not propagated to the popup window.
260         BC_WindowBase* add_popup(BC_WindowBase *window);
261         void remove_popup(BC_WindowBase *window);
262
263         static BC_Resources* get_resources();
264 // User must create synchronous object first
265         static BC_Synchronous* get_synchronous();
266         static int shm_completion_event;
267 // bckeyboard / remote control
268         virtual int keyboard_listener(BC_WindowBase *wp) { return 0; }
269         void add_keyboard_listener(int(BC_WindowBase::*handler)(BC_WindowBase *));
270         void del_keyboard_listener(int(BC_WindowBase::*handler)(BC_WindowBase *));
271 // Dimensions
272         virtual int get_w() { return w; }
273         virtual int get_h() { return h; }
274         virtual int get_x() { return x; }
275         virtual int get_y() { return y; }
276         int get_root_w(int lock_display);
277         int get_root_h(int lock_display);
278         XineramaScreenInfo *get_xinerama_info(int screen);
279         int get_screen_w(int lock_display, int screen);
280         int get_screen_h(int lock_display, int screen);
281         int get_screen_x(int lock_display, int screen);
282         int get_screen_y(int lock_display, int screen);
283 // Get current position
284         void get_abs_cursor_xy(int &abs_x, int &abs_y, int lock_window=0);
285         int get_abs_cursor_x(int lock_window=0);
286         int get_abs_cursor_y(int lock_window=0);
287         void get_pop_cursor_xy(int &px, int &py, int lock_window=0);
288         int get_pop_cursor_x(int lock_window=0);
289         int get_pop_cursor_y(int lock_window=0);
290         void get_relative_cursor_xy(int &x, int &y, int lock_window=0);
291         int get_relative_cursor_x(int lock_window=0);
292         int get_relative_cursor_y(int lock_window=0);
293         void get_root_coordinates(int x, int y, int *abs_x, int *abs_y);
294         void get_win_coordinates(int abs_x, int abs_y, int *x, int *y);
295 // Return 1 if cursor is over an unobscured part of this window.
296 // An argument is provided for excluding a drag popup
297         int get_cursor_over_window();
298 // Return 1 if cursor is above/inside window
299         int cursor_above();
300 // For traversing windows... return 1 if this or any subwindow is win
301         int match_window(Window win);
302
303 // 1 or 0 if a button is down
304         int get_button_down();
305 // Number of button pressed 1 - 5
306         int get_buttonpress();
307         int get_has_focus();
308         int get_dragging();
309         wchar_t* get_wkeystring(int *length = 0);
310         int get_keypress();
311 #ifdef X_HAVE_UTF8_STRING
312         char* get_keypress_utf8();
313 #endif
314         int keysym_lookup(XEvent *event);
315 // Get cursor position of last event
316         int get_cursor_x();
317         int get_cursor_y();
318 // Cursor position of drag start
319         int get_drag_x();
320         int get_drag_y();
321         int alt_down();
322         int shift_down();
323         int ctrl_down();
324         int get_double_click();
325         int get_triple_click();
326 // Bottom right corner
327         int get_x2();
328         int get_y2();
329         int get_bg_color();
330         void set_bg_color(int color);
331         BC_Pixmap* get_bg_pixmap();
332         int get_text_ascent(int font);
333         int get_text_descent(int font);
334         int get_text_height(int font, const char *text = 0);
335         int get_text_width(int font, const char *text, int length = -1);
336         int get_text_width(int font, const wchar_t *text, int length = -1);
337         BC_Clipboard* get_clipboard();
338         void set_dragging(int value);
339         int set_w(int w);
340         int set_h(int h);
341         BC_WindowBase* get_top_level();
342         BC_WindowBase* get_parent();
343 // Event happened in this window
344         int is_event_win();
345         int cursor_inside();
346 // Deactivate everything and activate this subwindow
347         virtual int activate();
348 // Deactivate this subwindow
349         virtual int deactivate();
350         void set_active_subwindow(BC_WindowBase *subwindow);
351 // Get value of toggle value when dragging a selection
352         int get_toggle_value();
353 // Get if toggle is being dragged
354         int get_toggle_drag();
355
356 // Set the gc to the color
357         void set_color(int64_t color);
358         void set_line_width(int value);
359         void set_line_dashes(int value);
360         int get_bgcolor();
361         int get_current_font();
362         void set_font(int font);
363 // Set the cursor to a macro from cursors.h
364 // Set override if the caller is enabling hourglass or hiding the cursor
365         void set_cursor(int cursor, int override /* = 0 */, int flush);
366 // Set the cursor to a character in the X cursor library.  Used by test.C
367         void set_x_cursor(int cursor);
368         int get_cursor();
369 // Shows the cursor after it's hidden by video playback
370         void unhide_cursor();
371 // Called by video updating routines to hide the cursor after a timeout
372         void update_video_cursor();
373
374 // Entry point for starting hourglass.
375 // Converts all cursors and saves the previous cursor.
376         void start_hourglass();
377         void stop_hourglass();
378
379 // Recursive part of hourglass commands.
380         void start_hourglass_recursive();
381         void stop_hourglass_recursive();
382 // images, picons...
383         BC_Pixmap *create_pixmap(VFrame *vframe);
384
385 // Drawing
386         void copy_area(int x1, int y1, int x2, int y2, int w, int h, BC_Pixmap *pixmap = 0);
387         void clear_box(int x, int y, int w, int h, BC_Pixmap *pixmap = 0);
388         void draw_box(int x, int y, int w, int h, BC_Pixmap *pixmap = 0);
389         void draw_circle(int x, int y, int w, int h, BC_Pixmap *pixmap = 0);
390         void draw_arc(int x, int y, int w, int h,
391                 int start_angle, int angle_length, BC_Pixmap *pixmap = 0);
392         void draw_disc(int x, int y, int w, int h, BC_Pixmap *pixmap = 0);
393         void draw_text(int x, int y, const char *text, int length = -1, BC_Pixmap *pixmap = 0);
394         void draw_utf8_text(int x, int y, const char *text, int length = -1, BC_Pixmap *pixmap = 0);
395         void draw_text_line(int x, int y, const char *text, int len, BC_Pixmap *pixmap = 0);
396         void draw_xft_text(int x, int y, const char *text, int len,
397                 BC_Pixmap *pixmap = 0, int is_utf8 = 0);
398         void draw_xft_text(int x, int y, const wchar_t *text,
399                 int length, BC_Pixmap *pixmap);
400         void draw_wtext(int x, int y, const wchar_t *text, int length = -1, BC_Pixmap *pixmap = 0);
401 // truncate the text to a ... version that fits in the width, using the current_font
402         void truncate_text(char *result, const char *text, int w);
403         void draw_center_text(int x, int y, const char *text, int length = -1);
404         void draw_line(int x1, int y1, int x2, int y2, BC_Pixmap *pixmap = 0);
405         void draw_polygon(ArrayList<int> *x, ArrayList<int> *y, BC_Pixmap *pixmap = 0);
406         void fill_polygon(ArrayList<int> *x, ArrayList<int> *y, BC_Pixmap *pixmap = 0);
407         void draw_rectangle(int x, int y, int w, int h);
408         void draw_3segment(int x, int y, int w, int h, BC_Pixmap *left_image,
409                 BC_Pixmap *mid_image, BC_Pixmap *right_image, BC_Pixmap *pixmap = 0);
410         void draw_3segment(int x, int y, int w, int h, VFrame *left_image,
411                 VFrame *mid_image, VFrame *right_image, BC_Pixmap *pixmap = 0);
412 // For drawing a changing level
413         void draw_3segmenth(int x, int y, int w, int total_x, int total_w,
414                 VFrame *image, BC_Pixmap *pixmap);
415         void draw_3segmenth(int x, int y, int w, int total_x, int total_w,
416                 BC_Pixmap *src, BC_Pixmap *dst = 0);
417         void draw_3segmentv(int x, int y, int h, int total_y, int total_h,
418                 BC_Pixmap *src, BC_Pixmap *dst = 0);
419         void draw_3segmentv(int x, int y, int h, int total_y, int total_h,
420                 VFrame *src, BC_Pixmap *dst = 0);
421 // For drawing a single level
422         void draw_3segmenth(int x, int y, int w, VFrame *image, BC_Pixmap *pixmap = 0);
423         void draw_3segmenth(int x, int y, int w, BC_Pixmap *src, BC_Pixmap *dst = 0);
424         void draw_3segmentv(int x, int y, int h, BC_Pixmap *src, BC_Pixmap *dst = 0);
425         void draw_3segmentv(int x, int y, int h, VFrame *src, BC_Pixmap *dst = 0);
426         void draw_9segment(int x, int y, int w, int h, VFrame *src, BC_Pixmap *dst = 0);
427         void draw_9segment(int x, int y, int w, int h, BC_Pixmap *src, BC_Pixmap *dst = 0);
428         void draw_3d_box(int x, int y, int w, int h, int light1, int light2,
429                 int middle, int shadow1, int shadow2, BC_Pixmap *pixmap = 0);
430         void draw_3d_box(int x, int y, int w, int h, int is_down, BC_Pixmap *pixmap = 0);
431         void draw_3d_border(int x, int y, int w, int h,
432                 int light1, int light2, int shadow1, int shadow2);
433         void draw_3d_border(int x, int y, int w, int h, int is_down);
434         void draw_colored_box(int x, int y, int w, int h, int down, int highlighted);
435         void draw_check(int x, int y);
436         void draw_triangle_down_flat(int x, int y, int w, int h);
437         void draw_triangle_up(int x, int y, int w, int h,
438                 int light1, int light2, int middle, int shadow1, int shadow2);
439         void draw_triangle_down(int x, int y, int w, int h,
440                 int light1, int light2, int middle, int shadow1, int shadow2);
441         void draw_triangle_left(int x, int y, int w, int h,
442                 int light1, int light2, int middle, int shadow1, int shadow2);
443         void draw_triangle_right(int x, int y, int w, int h,
444                 int light1, int light2, int middle, int shadow1, int shadow2);
445 // Set the gc to opaque
446         void set_opaque();
447         void set_inverse();
448         void set_background(VFrame *bitmap);
449 // Change the window title.
450         void put_title(const char *text);
451         void set_title(const char *text);
452         const char *get_title();
453         void set_utf8title(const char *text);
454 // Change the window title.  The title is translated internally.
455         void start_video();
456         void stop_video();
457         int get_id();
458         void set_done(int return_value);
459         void close(int return_value);
460 // Reroute toplevel events
461         int grab(BC_WindowBase *window);
462         int ungrab(BC_WindowBase *window);
463 // Grab button events
464         int grab_buttons();
465         void ungrab_buttons();
466         void grab_cursor();
467         void ungrab_cursor();
468 // Get a bitmap to draw on the window with
469         BC_Bitmap* new_bitmap(int w, int h, int color_model = -1);
470 // Draw a bitmap on the window
471         void draw_bitmap(BC_Bitmap *bitmap, int dont_wait,
472                 int dest_x = 0, int dest_y = 0, int dest_w = 0, int dest_h = 0,
473                 int src_x = 0, int src_y = 0, int src_w = 0, int src_h = 0,
474                 BC_Pixmap *pixmap = 0);
475         void draw_pixel(int x, int y, BC_Pixmap *pixmap = 0);
476 // Draw a pixmap on the window
477         void draw_pixmap(BC_Pixmap *pixmap,
478                 int dest_x = 0, int dest_y = 0, int dest_w = -1, int dest_h = -1,
479                 int src_x = 0, int src_y = 0, BC_Pixmap *dst = 0);
480 // Draw a vframe on the window
481         void draw_vframe(VFrame *frame,
482                 int dest_x = 0, int dest_y = 0, int dest_w = -1, int dest_h = -1,
483                 int src_x = 0, int src_y = 0, int src_w = 0, int src_h = 0,
484                 BC_Pixmap *pixmap = 0);
485         void draw_border(char *text, int x, int y, int w, int h);
486 // Draw a region of the background
487         void draw_top_background(BC_WindowBase *parent_window, int x, int y, int w, int h, BC_Pixmap *pixmap = 0);
488         void draw_top_tiles(BC_WindowBase *parent_window, int x, int y, int w, int h);
489         void draw_background(int x, int y, int w, int h);
490         void draw_tiles(BC_Pixmap *tile, int origin_x, int origin_y,
491                 int x, int y, int w, int h);
492         void slide_left(int distance);
493         void slide_right(int distance);
494         void slide_up(int distance);
495         void slide_down(int distance);
496         void flicker(int n=3, int ms=66);
497
498         int cycle_textboxes(int amount);
499
500         int raise_window(int do_flush = 1);
501         int lower_window(int do_flush = 1);
502         void set_force_tooltip(int v);
503         void set_tooltips(int v);
504         int resize_window(int w, int h);
505         int reposition_window(int x, int y);
506         int reposition_window(int x, int y, int w, int h);
507         int reposition_window_relative(int dx, int dy);
508         int reposition_window_relative(int dx, int dy, int w, int h);
509 // Cause a repeat event to be dispatched every duration.
510 // duration is milliseconds
511         int set_repeat(int64_t duration);
512 // Stop a repeat event from being dispatched.
513         int unset_repeat(int64_t duration);
514         const char *get_tooltip();
515         int set_tooltip(const char *text);
516         virtual int show_tooltip(const char *text, int x=-1, int y=-1, int w = -1, int h = -1);
517         int show_tooltip(int w=-1, int h=-1) { return show_tooltip(0, -1, -1, w, h); }
518         int hide_tooltip();
519         int set_icon(VFrame *data);
520         int load_defaults(BC_Hash *defaults);
521         int save_defaults(BC_Hash *defaults);
522
523 #ifdef HAVE_LIBXXF86VM
524 // Mode switch methods.
525    void closest_vm(int *vm, int *width, int *height);
526    void scale_vm(int vm);
527    void restore_vm();
528 #endif
529
530
531         int test_keypress;
532         char keys_return[KEYPRESSLEN];
533
534
535 private:
536 // Create a window
537         virtual int create_window(BC_WindowBase *parent_window,
538                 const char *title, int x, int y, int w, int h,
539                 int minw, int minh, int allow_resize, int private_color,
540                 int hide, int bg_color, const char *display_name,
541                 int window_type, BC_Pixmap *bg_pixmap, int group_it);
542
543         static Display* init_display(const char *display_name);
544 // Get display from top level
545         Display* get_display();
546         int get_screen();
547         virtual int initialize();
548         int get_atoms();
549 // Function to overload to recieve customly defined atoms
550         virtual int recieve_custom_xatoms(xatom_event *event);
551
552         void init_cursors();
553         int init_colors();
554         int init_window_shape();
555         static int evaluate_color_model(int client_byte_order, int server_byte_order, int depth);
556         int create_private_colors();
557         int create_color(int color);
558         int create_shared_colors();
559         Cursor create_grab_cursor();
560 // Get width of a single line.  Used by get_text_width
561         int get_single_text_width(int font, const char *text, int length);
562         int get_single_text_width(int font, const wchar_t *text, int length);
563         int allocate_color_table();
564         int init_gc();
565         int init_fonts();
566         void init_xft();
567         void init_im();
568         void finit_im();
569         int get_color_rgb8(int color);
570         int64_t get_color_rgb16(int color);
571         int64_t get_color_bgr16(int color);
572         int64_t get_color_bgr24(int color);
573         XFontStruct* get_font_struct(int font);
574         XftFont* get_xft_struct(int font);
575         Cursor get_cursor_struct(int cursor);
576         XFontSet get_fontset(int font);
577         XFontSet get_curr_fontset(void);
578         void set_fontset(int font);
579         int dispatch_event(XEvent *event);
580
581         int get_key_masks(unsigned int key_state);
582
583         int trigger_tooltip();
584         int untrigger_tooltip();
585         void draw_tooltip(const char *text=0);
586         static XEvent *new_xevent();
587 // delete all repeater opjects for a close
588         int unset_all_repeaters();
589
590 // Block and get event from common events.
591         XEvent* get_event();
592 // Return number of events in table.
593         int get_event_count();
594 // Put event in common events.
595         void put_event(XEvent *event);
596 // remove events queued for win
597         void dequeue_events(Window win);
598
599 // Recursive event dispatchers
600         int dispatch_resize_event(int w, int h);
601         int dispatch_flash();
602         int dispatch_focus_in();
603         int dispatch_focus_out();
604         int dispatch_motion_event();
605         int dispatch_keypress_event();
606         int dispatch_keyrelease_event();
607         int dispatch_repeat_event(int64_t duration);
608         int dispatch_repeat_event_master(int64_t duration);
609         int dispatch_button_press();
610         int dispatch_button_release();
611         int dispatch_cursor_leave();
612         int dispatch_cursor_enter();
613         int dispatch_translation_event();
614         int dispatch_drag_start();
615         int dispatch_drag_motion();
616         int dispatch_drag_stop();
617         int dispatch_expose_event();
618
619 // Get the port ID for a color model or return -1 for failure
620         int grab_port_id(int color_model);
621
622         int find_next_textbox(BC_WindowBase **first_textbox, BC_WindowBase **next_textbox, int &result);
623         int find_prev_textbox(BC_WindowBase **last_textbox, BC_WindowBase **prev_textbox, int &result);
624
625         void xft_draw_string(XftColor *xft_color, XftFont *xft_font, int x, int y,
626                 const FcChar32 *fc, int len, BC_Pixmap *pixmap=0);
627
628         void translate_coordinates(Window src_w, Window dest_w,
629                 int src_x, int src_y, int *dest_x_return, int *dest_y_return);
630
631 // Top level window above this window
632         BC_WindowBase* top_level;
633 // Window just above this window
634         BC_WindowBase* parent_window;
635 // list of window bases in this window
636         BC_SubWindowList* subwindows;
637 // list of window bases in this window
638         ArrayList<BC_WindowBase*> popups;
639 // Position of window
640         int x, y, w, h;
641 // Default colors
642         int light1, light2, medium, dark1, dark2, bg_color;
643 // Type of window defined above
644         int window_type;
645 // keypress/pointer active grab
646         BC_WindowBase *active_grab, *grab_active;
647 // Pointer to the active menubar in the window.
648         BC_MenuBar* active_menubar;
649 // pointer to the active popup menu in the window
650         BC_PopupMenu* active_popup_menu;
651 // pointer to the active subwindow
652         BC_WindowBase* active_subwindow;
653 // thread id of display locker
654         pthread_t display_lock_owner;
655
656 // Window parameters
657         int allow_resize;
658         int hidden, private_color, bits_per_pixel, color_model;
659         int server_byte_order, client_byte_order;
660 // number of colors in color table
661         int total_colors;
662 // last color found in table
663         int current_color_value, current_color_pixel;
664 // table for every color allocated
665         int color_table[256][2];
666 // Turn on optimization
667         int video_on;
668 // Event handler completion
669         int done, done_set, window_running;
670 // Return value of event handler
671         int return_value;
672 // Motion event compression
673         int motion_events, last_motion_x, last_motion_y;
674         unsigned int last_motion_state;
675 // window of buffered motion
676         Window last_motion_win;
677 // Resize event compression
678         int resize_events, last_resize_w, last_resize_h;
679         int translation_events, last_translate_x, last_translate_y;
680         int prev_x, prev_y;
681 // Since the window manager automatically translates the window at boot,
682 // use the first translation event to get correction factors
683         int translation_count;
684         int x_correction, y_correction;
685 // key data
686         KeySym keysym;
687 // Key masks
688         int ctrl_mask, shift_mask, alt_mask;
689 // Cursor motion information
690         int cursor_x, cursor_y;
691 // Button status information
692         int button_down, button_number;
693 // When button was pressed and whether it qualifies as a double click
694         int64_t button_time1;
695         int64_t button_time2;
696         int64_t button_time3;
697         int double_click;
698         int triple_click;
699 // Which button is down.  1, 2, 3, 4, 5
700         int button_pressed;
701 // Last key pressed
702         int key_pressed;
703         int wkey_string_length;
704         wchar_t wkey_string[4];
705 #ifdef X_HAVE_UTF8_STRING
706         char* key_pressed_utf8;
707 #endif
708 // During a selection drag involving toggles, set the same value for each toggle
709         int toggle_value;
710         int toggle_drag;
711 // Whether the window has the focus
712         int has_focus;
713
714         static BC_Resources resources;
715
716 #ifndef SINGLE_THREAD
717 // Array of repeaters for multiple repeating objects.
718         ArrayList<BC_Repeater*> repeaters;
719         int arm_repeat(int64_t duration);
720 #endif
721 // Text for tooltip if one exists
722         const char *tooltip_text;
723 // tooltip forced for this window
724         int force_tooltip;
725 // If the current window's tooltip is visible
726         int tooltip_on;
727 // Repeat ID of tooltip
728 //      int64_t tooltip_id;
729 // Popup window for tooltip
730         BC_Popup *tooltip_popup;
731 // If this subwindow has already shown a tooltip since the last EnterNotify
732         int options;
733         int flash_enabled;
734
735
736 // Font sets
737     XFontSet smallfontset, mediumfontset, largefontset, bigfontset, curr_fontset;
738
739 // Fonts
740         int current_font;
741         XFontStruct *smallfont, *mediumfont, *largefont, *bigfont;
742
743 // Must be void so users don't need to include the wrong libpng version.
744         void *smallfont_xft, *mediumfont_xft, *largefont_xft, *bigfont_xft;
745
746
747         int line_width;
748         int line_dashes;
749         void *bold_largefont_xft, *bold_mediumfont_xft, *bold_smallfont_xft;
750         int64_t current_color;
751 // Coordinate of drag start
752         int drag_x, drag_y;
753 // Boundaries the cursor must pass to start a drag
754         int drag_x1, drag_x2, drag_y1, drag_y2;
755 // Dragging is specific to the subwindow
756         int is_dragging;
757 // Don't delete the background pixmap
758         int shared_bg_pixmap;
759         char title[BCTEXTLEN];
760
761 // X Window parameters
762         int screen;
763         Window rootwin;
764 // windows previous events happened in
765         Window event_win, drag_win;
766         Visual *vis;
767         Colormap cmap;
768 // Name of display
769         char display_name[BCTEXTLEN];
770 // Display for all synchronous operations
771         Display *display;
772         Window win;
773         int xinerama_screens;
774         XineramaScreenInfo *xinerama_info;
775 #ifdef HAVE_GL
776         int glx_fb_configs(int *attrs, GLXFBConfig *&cfgs);
777         int glx_test_fb_configs(int *attrs, GLXFBConfig *&cfgs,
778                 const char *msg, int &msgs);
779         GLXFBConfig *glx_fbcfgs_window, *glx_window_fb_configs();
780         int n_fbcfgs_window;
781         GLXFBConfig *glx_fbcfgs_pbuffer, *glx_pbuffer_fb_configs();
782         int n_fbcfgs_pbuffer;
783         GLXFBConfig *glx_fbcfgs_pixmap, *glx_pixmap_fb_configs();
784         int n_fbcfgs_pixmap;
785         Visual *get_glx_visual(Display *display);
786
787         void sync_lock(const char *cp);
788         void sync_unlock();
789         GLXWindow glx_window();
790
791 // The first context to be created and the one whose texture id
792 // space is shared with the other contexts.
793         GLXContext glx_get_context();
794         bool glx_make_current(GLXDrawable draw);
795         bool glx_make_current(GLXDrawable draw, GLXContext glx_ctxt);
796
797         GLXFBConfig glx_fb_config;
798         GLXContext glx_win_context;
799         GLXWindow glx_win;
800 #endif
801
802         int window_lock;
803         GC gc;
804 // Depth given by the X Server
805         int default_depth;
806         Atom DelWinXAtom;
807         Atom DestroyAtom;
808         Atom ProtoXAtom;
809         Atom RepeaterXAtom;
810         Atom SetDoneXAtom;
811 // Number of times start_hourglass was called
812         int hourglass_total;
813 // Cursor set by last set_cursor which wasn't an hourglass or transparent.
814         int current_cursor;
815 // If hourglass overrides current cursor.  Only effective in top level.
816         int is_hourglass;
817 // If transparent overrides all cursors.  Only effective in subwindow.
818         int is_transparent;
819         Cursor arrow_cursor;
820         Cursor cross_cursor;
821         Cursor ibeam_cursor;
822         Cursor vseparate_cursor;
823         Cursor hseparate_cursor;
824         Cursor move_cursor;
825         Cursor temp_cursor;
826         Cursor left_cursor;
827         Cursor right_cursor;
828         Cursor upright_arrow_cursor;
829         Cursor upleft_resize_cursor;
830         Cursor upright_resize_cursor;
831         Cursor downleft_resize_cursor;
832         Cursor downright_resize_cursor;
833         Cursor hourglass_cursor;
834         Cursor transparent_cursor;
835         Cursor grabbed_cursor;
836
837         int xvideo_port_id;
838         ArrayList<BC_ResizeCall*> resize_history;
839 // Back buffer
840         BC_Pixmap *pixmap;
841 // Background tile if tiled
842         BC_Pixmap *bg_pixmap;
843 // Icon
844         BC_Popup *icon_window;
845         BC_Pixmap *icon_pixmap;
846         BC_Pixmap **_7segment_pixmaps;
847 // Temporary
848         BC_Bitmap *temp_bitmap;
849         BC_ActiveBitmaps active_bitmaps;
850 // Clipboard
851 #ifndef SINGLE_THREAD
852         BC_Clipboard *clipboard;
853 #endif
854
855 #ifdef HAVE_LIBXXF86VM
856 // Mode switch information.
857    int vm_switched;
858    XF86VidModeModeInfo orig_modeline;
859 #endif
860
861
862
863
864 #ifndef SINGLE_THREAD
865 // Common events coming from X server and repeater.
866         ArrayList<XEvent*> common_events;
867 // Locks for common events
868 // Locking order:
869 // 1) event_condition
870 // 2) event_lock
871         Mutex *event_lock;
872         Condition *event_condition;
873 // Lock that waits until the event handler is running
874         Condition *init_lock;
875 #else
876         Condition *completion_lock;
877 #endif
878
879
880         int dump_windows();
881
882
883         BC_WindowEvents *event_thread;
884         int is_deleting;
885 // Hide cursor when video is enabled
886         Timer *cursor_timer;
887 // unique ID of window.
888         int id;
889
890         // Used to communicate with the input method (IM) server
891         XIM input_method;
892         // Used for retaining the state, properties, and semantics
893         //  of communication with the input method (IM) server
894         XIC input_context;
895
896 protected:
897         Atom create_xatom(const char *atom_name);
898         int send_custom_xatom(xatom_event *event);
899
900 };
901
902
903
904 #endif