// =========================================================================== // CSimlabListRec.h // ©1995 J. Rodden, DD/MF & Associates. All rights reserved // =========================================================================== #pragma once #include "RuntimeTypes.h" #include // all we need from this is the definition of kTextSelSlop class CSimlabListRec { public: CSimlabListRec( SimlabListTag inTag, ConstStr255Param inString); SimlabListTag GetTag(); virtual void GetDescriptor(Str255 outDescriptor); virtual void Draw( Rect *lRect); protected: SimlabListTag tag; Str255 name; // actually, we'll use only as much as neededŠ };