]>
Commit | Line | Data |
---|---|---|
c801d85f KB |
1 | ///////////////////////////////////////////////////////////////////////////// |
2 | // Name: listbox.cpp | |
3 | // Purpose: | |
4 | // Author: Robert Roebling | |
f96aa4d9 RR |
5 | // Id: $Id$ |
6 | // Copyright: (c) 1998 Robert Roebling | |
a3622daa | 7 | // Licence: wxWindows licence |
c801d85f KB |
8 | ///////////////////////////////////////////////////////////////////////////// |
9 | ||
10 | ||
11 | #ifdef __GNUG__ | |
12 | #pragma implementation "listbox.h" | |
13 | #endif | |
14 | ||
6a6d4eed | 15 | #include "wx/dynarray.h" |
c801d85f | 16 | #include "wx/listbox.h" |
09cf7c58 | 17 | #include "wx/utils.h" |
caaa4cfd RR |
18 | #include "wx/intl.h" |
19 | #include "wx/checklst.h" | |
291a8f20 RR |
20 | |
21 | #if wxUSE_TOOLTIPS | |
b1170810 | 22 | #include "wx/tooltip.h" |
291a8f20 | 23 | #endif |
c801d85f | 24 | |
06cfab17 RR |
25 | #if wxUSE_DRAG_AND_DROP |
26 | #include "wx/dnd.h" | |
27 | #endif | |
28 | ||
83624f79 RR |
29 | #include "gdk/gdk.h" |
30 | #include "gtk/gtk.h" | |
31 | ||
38c7b3d3 RR |
32 | //------------------------------------------------------------------------- |
33 | // conditional compilation | |
34 | //------------------------------------------------------------------------- | |
35 | ||
d345e841 RR |
36 | #if (GTK_MINOR_VERSION > 0) |
37 | #define NEW_GTK_SCROLL_CODE | |
38c7b3d3 RR |
38 | #endif |
39 | ||
bb0ca8df VZ |
40 | //----------------------------------------------------------------------------- |
41 | // private functions | |
42 | //----------------------------------------------------------------------------- | |
43 | ||
44 | #define CHECKBOX_STRING "[-] " | |
45 | ||
46 |