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