]> git.saurik.com Git - wxWidgets.git/blame - src/gtk1/listbox.cpp
another (last?) FreeBSD thread compilation fix
[wxWidgets.git] / src / gtk1 / listbox.cpp
CommitLineData
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
36#if (GTK_MINOR_VERSION == 1)
bb0ca8df
VZ
37 #if (GTK_MICRO_VERSION >= 5)
38 #define NEW_GTK_SCROLL_CODE
39 #endif
38c7b3d3
RR
40#endif
41
bb0ca8df
VZ
42//-----------------------------------------------------------------------------
43// private functions
44//-----------------------------------------------------------------------------
45
46#define CHECKBOX_STRING "[-] "
47
48