summaryrefslogtreecommitdiff
path: root/tvision/include/tv/clrdisp.h
diff options
context:
space:
mode:
Diffstat (limited to 'tvision/include/tv/clrdisp.h')
-rw-r--r--tvision/include/tv/clrdisp.h65
1 files changed, 65 insertions, 0 deletions
diff --git a/tvision/include/tv/clrdisp.h b/tvision/include/tv/clrdisp.h
new file mode 100644
index 0000000..d5839ba
--- /dev/null
+++ b/tvision/include/tv/clrdisp.h
@@ -0,0 +1,65 @@
+/*
+ * Turbo Vision - Version 2.0
+ *
+ * Copyright (c) 1994 by Borland International
+ * All Rights Reserved.
+ *
+
+Modified by Robert H”hne to be used for RHIDE.
+
+ *
+ *
+ */
+
+#if defined( Uses_TColorDisplay ) && !defined( __TColorDisplay )
+#define __TColorDisplay
+
+class TRect;
+struct TEvent;
+
+class TColorDisplay : public TView
+{
+
+public:
+
+ TColorDisplay( const TRect& bounds, const char *aText );
+ virtual ~TColorDisplay();
+ virtual void draw();
+ virtual void handleEvent( TEvent& event );
+ virtual void setColor( uchar *aColor );
+
+protected:
+
+ uchar *color;
+ const char *text;
+
+private:
+
+ virtual const char *streamableName() const
+ { return name; }
+
+protected:
+
+ TColorDisplay( StreamableInit );
+ virtual void write( opstream& );
+ virtual void *read( ipstream& );
+
+public:
+
+ static const char * const name;
+ static TStreamable *build();
+
+};
+
+inline ipstream& operator >> ( ipstream& is, TColorDisplay& cl )
+ { return is >> (TStreamable&)cl; }
+inline ipstream& operator >> ( ipstream& is, TColorDisplay*& cl )
+ { return is >> (void *&)cl; }
+
+inline opstream& operator << ( opstream& os, TColorDisplay& cl )
+ { return os << (TStreamable&)cl; }
+inline opstream& operator << ( opstream& os, TColorDisplay* cl )
+ { return os << (TStreamable *)cl; }
+
+#endif // Uses_TColorDisplay
+