menu.hh 1.1 KB

12345678910111213141516171819202122232425262728293031323334353637383940
  1. /********************************************************************** <BR>
  2. This file is part of Crack dot Com's free source code release of
  3. Golgotha. <a href="http://www.crack.com/golgotha_release"> <BR> for
  4. information about compiling & licensing issues visit this URL</a>
  5. <PRE> If that doesn't help, contact Jonathan Clark at
  6. golgotha_source@usa.net (Subject should have "GOLG" in it)
  7. ***********************************************************************/
  8. #ifndef G1_MENU_HH
  9. #define G1_MENU_HH
  10. #include "window/window.hh"
  11. #include "string/string.hh"
  12. class i4_menu_class;
  13. class i4_graphical_style_class;
  14. class g1_main_menu_class : public i4_parent_window_class
  15. {
  16. i4_event_handler_class *notify;
  17. i4_image_class *deco;
  18. i4_graphical_style_class *style;
  19. public:
  20. g1_main_menu_class(w16 w, w16 h,
  21. i4_event_handler_class *notify,
  22. sw32 *ids,
  23. i4_graphical_style_class *style);
  24. virtual void parent_draw(i4_draw_context_class &context);
  25. ~g1_main_menu_class();
  26. char *name() { return "g1_main_menu"; }
  27. };
  28. #endif