Added wxSearchCtrl to list of currently non-native wxGTK controls.
[wxWidgets.git] / docs / gtk / nonnative.txt
1 List of classes which should use their native GTK+ equivalents but don't:
2
3 - wxSearchCtrl
4     Should use GtkSearchEntry (GTK+ 3.6+)
5
6 - wxStatusBar:
7     Problem with multiple fields, GtkStatusbar only seems to support one pane
8
9 - wxTreeCtrl
10     Ryan Norton has implemented this
11     
12 - wxListCtrl
13     Could be reimplemeted in terms of wxDataViewCtrl?
14
15 - wxSplitterWindow
16     Not possible because GTK's GtkHPane and GtkVPane
17     only support either horizontal or vertical panes
18     (therefore their names) whereas wxSplitterWindow
19     supports both and can even change orientiation at
20     runtime.
21
22 - wxDatePickerCtrl
23 - wxCalendarCtrl
24     Use GtkCalendar
25
26 - wxWizard
27     Can GtkAssistant be used?