Leaked source code of windows server 2003
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.

24 lines
460 B

  1. /*
  2. * Spatial navigation support
  3. */
  4. #ifndef DUI_CORE_NAVIGATION_H_INCLUDED
  5. #define DUI_CORE_NAVIGATION_H_INCLUDED
  6. #pragma once
  7. namespace DirectUI
  8. {
  9. //
  10. // This class encapsulates the "standard" approach to spatial
  11. // navigation. Will need much work in the future.
  12. //
  13. class DuiNavigate
  14. {
  15. public:
  16. static Element * Navigate(Element * peFrom, ElementList * pelConsider, int nNavDir);
  17. };
  18. }
  19. #endif // DUI_CORE_NAVIGATION_H_INCLUDED