/**** * * This is the beginnings of an InterViews UI the combines featurs of the * Enchilada spec and design editing tools. * */ #ifndef specdesigneditorIncluded #define specdesigneditorIncluded #include "full-text-editor.h" #include "view.h" #include #include #include #include class SpecDesignEditor : public View { public: SpecDesignEditor(Screen* s); virtual void Compose(); protected: StringEditor* nameed; // String ed for the name StringEditor* acced; // String ed for access type StringEditor* ched; // String ed for child of FullTextEditor* commed; // Text editor for comment StringBrowser* clsb; // Sring browser for the class list }; #endif