nonnative.txt 694 B

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