You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

67 lines
2.3 KiB

  1. /*
  2. * This program source code file is part of KiCad, a free EDA CAD application.
  3. *
  4. * Copyright (C) 2017 KiCad Developers, see AUTHORS.txt for contributors.
  5. *
  6. * This program is free software: you can redistribute it and/or modify it
  7. * under the terms of the GNU General Public License as published by the
  8. * Free Software Foundation, either version 3 of the License, or (at your
  9. * option) any later version.
  10. *
  11. * This program is distributed in the hope that it will be useful, but
  12. * WITHOUT ANY WARRANTY; without even the implied warranty of
  13. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
  14. * General Public License for more details.
  15. *
  16. * You should have received a copy of the GNU General Public License along
  17. * with this program. If not, see <http://www.gnu.org/licenses/>.
  18. */
  19. /**
  20. * @file
  21. * wxDataViewCtrl helper functions. These are functions that should be methods
  22. * of wxDataViewCtrl, but aren't.
  23. */
  24. #ifndef WXDATAVIEWCTRL_HELPERS_H
  25. #define WXDATAVIEWCTRL_HELPERS_H
  26. #include <wx/dataview.h>
  27. /**
  28. * Get the previous item in list order.
  29. *
  30. * @param aView - a wxDataViewCtrl with valid model
  31. * @param aItem - a valid item in the model
  32. * @return the item before aItem, or an invalid item if aItem is at the top.
  33. */
  34. wxDataViewItem GetPrevItem( wxDataViewCtrl const& aView, wxDataViewItem const& aItem );
  35. /**
  36. * Get the next item in list order.
  37. *
  38. * @param aView - a wxDataViewCtrl with valid model
  39. * @param aItem - a valid item in the model
  40. * @return the item after aItem, or an invalid item if aItem is at the bottom.
  41. */
  42. wxDataViewItem GetNextItem( wxDataViewCtrl const& aView, wxDataViewItem const& aItem );
  43. /**
  44. * Get the previous sibling of an item.
  45. *
  46. * @param aView - awxDataViewCtrl with valid model
  47. * @param aItem - a valid item in the model
  48. * @return the sibling before aItem, or an invalid item if aItem has no siblings before it.
  49. */
  50. wxDataViewItem GetPrevSibling( wxDataViewCtrl const& aView, wxDataViewItem const& aItem );
  51. /**
  52. * Get the next sibling of an item.
  53. *
  54. * @param aView - awxDataViewCtrl with valid model
  55. * @param aItem - a valid item in the model
  56. * @return the sibling after aItem, or an invalid item if aItem has no siblings after it.
  57. */
  58. wxDataViewItem GetNextSibling( wxDataViewCtrl const& aView, wxDataViewItem const& aItem );
  59. #endif // WXDATAVIEWCTRL_HELPERS_H