]> git.saurik.com Git - wxWidgets.git/blame_incremental - src/gtk1/listbox.cpp
Make use of new array functions.
[wxWidgets.git] / src / gtk1 / listbox.cpp
... / ...
CommitLineData
1/////////////////////////////////////////////////////////////////////////////
2// Name: listbox.cpp
3// Purpose:
4// Author: Robert Roebling
5// Id: $Id$
6// Copyright: (c) 1998 Robert Roebling
7// Licence: wxWindows licence
8/////////////////////////////////////////////////////////////////////////////
9
10
11#ifdef __GNUG__
12#pragma implementation "listbox.h"
13#endif
14
15#include "wx/listbox.h"
16
17#if wxUSE_LISTBOX
18
19#include "wx/dynarray.h"
20#include "wx/utils.h"
21#include "wx/intl.h"
22#include "wx/checklst.h"
23#include "wx/settings.h"
24#include "wx/gtk/private.h"
25
26#if wxUSE_TOOLTIPS
27#include "wx/tooltip.h"
28#endif
29
30#include <gdk/gdk.h>
31#include <gtk/gtk.h>
32#include <gdk/gdkkeysyms.h>
33
34//-----------------------------------------------------------------------------
35// idle system
36//-----------------------------------------------------------------------------
37
38extern void wxapp_install_idle_handler();
39extern bool g_isIdle;
40
41//-----------------------------------------------------------------------------
42// private functions
43//-----------------------------------------------------------------------------
44
45#if wxUSE_CHECKLISTBOX
46
47