summaryrefslogtreecommitdiff
path: root/3dc/avp/win95/gadgets/ahudgadg.hpp
diff options
context:
space:
mode:
Diffstat (limited to '3dc/avp/win95/gadgets/ahudgadg.hpp')
-rw-r--r--3dc/avp/win95/gadgets/ahudgadg.hpp101
1 files changed, 0 insertions, 101 deletions
diff --git a/3dc/avp/win95/gadgets/ahudgadg.hpp b/3dc/avp/win95/gadgets/ahudgadg.hpp
deleted file mode 100644
index c193068..0000000
--- a/3dc/avp/win95/gadgets/ahudgadg.hpp
+++ /dev/null
@@ -1,101 +0,0 @@
-/*
-
- ahudgadg.hpp
-
- Alien HUD gadget; a concrete derived class of abstract class "HUDGadget"
-
-*/
-
-#ifndef _ahudgadg
-#define _ahudgadg 1
-
- #ifndef _hudgadg
- #include "hudgadg.hpp"
- #endif
-
-
-#ifdef __cplusplus
- extern "C" {
-#endif
-
-/* Version settings *****************************************************/
-
-/* Constants ***********************************************************/
-
-/* Macros ***************************************************************/
-
-/* Type definitions *****************************************************/
- #if UseGadgets
- class TextEntryGadget; // fully declared in TEXTIN.HPP
-
- class AlienHUDGadget : public HUDGadget
- {
- public:
- void Render
- (
- const struct r2pos& R2Pos,
- const struct r2rect& R2Rect_Clip,
- int FixP_Alpha
- );
-
- AlienHUDGadget();
- ~AlienHUDGadget();
-
- void AddTextReport
- (
- SCString* pSCString_ToAdd
- // ultimately turn into an MCString
- );
- void ClearTheTextReportQueue(void);
-
- #if EnableStatusPanels
- void RequestStatusPanel
- (
- enum StatusPanelIndex I_StatusPanel
- );
-
- void NoRequestedPanel(void);
- #endif
-
- void CharTyped
- (
- char Ch
- // note that this _is _ a char
- );
- void Key_Backspace(void);
- void Key_End(void);
- void Key_Home(void);
- void Key_Left(void);
- void Key_Up(void);
- void Key_Right(void);
- void Key_Down(void);
- void Key_Delete(void);
- void Key_Tab(void);
-
- void SetString(const char* text);
-
- void Jitter(int FixP_Magnitude);
-
- TextReportGadget* pTextReportGadg;
- private:
- // not allowed to be NULL
-
- TextEntryGadget* pTextEntryGadg;
- // not allowed to be NULL
- };
- #endif // UseGadgets
-
-/* Exported globals *****************************************************/
-
-/* Function prototypes **************************************************/
-
-
-
-/* End of the header ****************************************************/
-
-
-#ifdef __cplusplus
- };
-#endif
-
-#endif