00001
00002
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012
00013
00014
00015
00016
00017
00018
00019 #ifndef _MISC_BUTTONS_H_
00020 #define _MISC_BUTTONS_H_
00021
00022 #include "Gump_button.h"
00023
00024 class Actor;
00025
00026
00027
00028
00029 class Checkmark_button : public Gump_button
00030 {
00031 public:
00032 Checkmark_button(Gump *par, int px, int py);
00033
00034 virtual void activate();
00035 };
00036
00037
00038
00039
00040 class Heart_button : public Gump_button
00041 {
00042 public:
00043 Heart_button(Gump *par, int px, int py);
00044
00045 virtual void activate();
00046 };
00047
00048
00049
00050
00051 class Disk_button : public Gump_button
00052 {
00053 public:
00054 Disk_button(Gump *par, int px, int py);
00055
00056 virtual void activate();
00057 };
00058
00059
00060
00061
00062 class Combat_button : public Gump_button
00063 {
00064 public:
00065 Combat_button(Gump *par, int px, int py);
00066
00067 virtual void activate();
00068 virtual void paint();
00069 };
00070
00071
00072
00073
00074 class Halo_button : public Gump_button
00075 {
00076 Actor *actor;
00077 public:
00078 Halo_button(Gump *par, int px, int py, Actor *a);
00079
00080 virtual void activate();
00081 };
00082
00083
00084
00085
00086 class Combat_mode_button : public Gump_button
00087 {
00088 Actor *actor;
00089 public:
00090 Combat_mode_button(Gump *par, int px, int py, Actor *a);
00091
00092 virtual void activate();
00093 };
00094
00095
00096
00097
00098 class Cstats_button : public Gump_button
00099 {
00100 public:
00101 Cstats_button(Gump *par, int px, int py);
00102
00103
00104 virtual void activate();
00105 };
00106
00107 #endif
00108