Advertisement
Guest User

Untitled

a guest
Jun 27th, 2017
41
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.15 KB | None | 0 0
  1. // ----------------------------------------------------------------------------
  2. // The hierarchy of scrolling classes is a bit complicated because we want to
  3. // put as much functionality as possible in a mix-in class not deriving from
  4. // wxWindow so that other classes could derive from the same base class on all
  5. // platforms irrespectively of whether they are native controls (and hence
  6. // don't use our scrolling) or not.
  7. //
  8. // So we have
  9. //
  10. // wxScrollHelperBase
  11. // |
  12. // |
  13. // \|/
  14. // wxWindow wxScrollHelper
  15. // | \ / /
  16. // | \ / /
  17. // | _| |_ /
  18. // | wxScrolledWindow /
  19. // | /
  20. // \|/ /
  21. // wxControl /
  22. // \ /
  23. // \ /
  24. // _| |_
  25. // wxScrolledControl
  26. //
  27. // ----------------------------------------------------------------------------
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement