]> git.lyx.org Git - lyx.git/blob - src/frontends/xforms/freebrowser.h
If I ever see another licence blurb again, it'll be too soon...
[lyx.git] / src / frontends / xforms / freebrowser.h
1 /**
2  * \file freebrowser.h
3  * This file is part of LyX, the document processor.
4  * Licence details can be found in the file COPYING.
5  *
6  * \author Angus Leeming
7  *
8  * Full author contact details are available in file CREDITS.
9  *
10  * A freebrowser is a browser widget in its own form.
11  * It is used for example to instantiate the drop-down list beneath a
12  * combox.
13  */
14
15 #ifndef FL_FREEBROWSER_H
16 #define FL_FREEBROWSER_H
17
18 #if defined(__cplusplus)
19 extern "C"
20 {
21 #endif
22
23 typedef enum {
24     FL_FREEBROWSER_BELOW,
25     FL_FREEBROWSER_ABOVE
26 } FL_FREEBROWSER_POSITION;
27
28 typedef struct fl_freebrowser_ {
29     /** Use this and you'll be told when something happens.
30      *  \param == 0: the browser has merely been hidden.
31      *         == 1: a change has been made.
32      */
33     void (* callback) (struct fl_freebrowser_ *, int action);
34
35     /** Set this to 1 if you want to capture all KeyPress events
36      *  generating printable chars.
37      */
38     int want_printable;
39     /** Is set only if want_printable is true. */
40     char last_printable;
41
42     /** The "owner" of the freebrowser. Not used by the struct. */
43     void * parent;
44     /** The browser itself. */
45     FL_OBJECT * browser;
46
47     /** Details of the implementation. */
48     FL_FORM * form;
49     Window save_window;
50 } FL_FREEBROWSER;
51
52
53 /** A function to create a freebrowser widget, "owned" by \c parent. */
54 FL_EXPORT FL_FREEBROWSER *
55 fl_create_freebrowser(void * parent);
56
57 /** Free all memory allocated to \param ptr and to its components. */
58 FL_EXPORT void
59 fl_free_freebrowser(FL_FREEBROWSER * ptr);
60
61 /** \c abs_x, \c abs_y are the coordinates of the top left corner
62  *  of the browser relative to the top left hand corner of the _screen_.
63  *  \c w, \c h are the browser dimensions.
64  */
65 FL_EXPORT void
66 fl_show_freebrowser(FL_FREEBROWSER *,
67                     FL_Coord abs_x, FL_Coord abs_y, FL_Coord w, FL_Coord h);
68
69 FL_EXPORT void
70 fl_hide_freebrowser(FL_FREEBROWSER *);
71
72 #if defined(__cplusplus)
73 }
74 #endif
75
76 #endif /* not FL_FREEBROWSER_H */