options.hh 1.9 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374
  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_OPTIONS_HH
  9. #define G1_OPTIONS_HH
  10. #include "window/colorwin.hh"
  11. #include "device/device.hh"
  12. #include "gui/image_win.hh"
  13. class i4_graphical_style_class;
  14. class i4_event_handler_class;
  15. class i4_button_class;
  16. class i4_const_str;
  17. class g1_option_window : public i4_parent_window_class
  18. {
  19. i4_graphical_style_class *style;
  20. i4_image_class *options_background;
  21. i4_event_handler_reference_class<i4_image_window_class> shadow_image_win, sound_image_win;
  22. i4_button_class *create_button(const i4_const_str &help,
  23. int im,
  24. i4_event_handler_reference_class<i4_image_window_class> *win_ref,
  25. int mess_id);
  26. void add_buttons();
  27. enum { STOPPED,
  28. SLIDE_RIGHT,
  29. SLIDE_LEFT
  30. } mode;
  31. int get_correction();
  32. int slide_speed, slide_left, slide_correction;
  33. public:
  34. enum
  35. {
  36. SLIDE_AWAY,
  37. SLIDE,
  38. VIS_LOW,
  39. VIS_MEDIUM,
  40. VIS_HIGH,
  41. NORMAL_PIXEL,
  42. INTERLACE,
  43. DOUBLE_PIXEL,
  44. SOUND,
  45. SHADOWS,
  46. GAME_SPEED
  47. };
  48. ~g1_option_window();
  49. void parent_draw(i4_draw_context_class &context);
  50. void forget_redraw();
  51. g1_option_window(i4_graphical_style_class *style);
  52. void receive_event(i4_event *ev);
  53. char *name() { return "g1_option_window"; }
  54. };
  55. extern i4_event_handler_reference_class<g1_option_window> g1_options_window;
  56. #endif