#ifndef GotoDialog_First #define GotoDialog_First #ifdef __GNUG__ #pragma interface #endif #include "GotoDialog_e.h" #include "Dialog.h" class TextView; class IntField; //---- GotoDialog -------------------------------------------------------------- class GotoDialog : public Dialog { public: MetaDef(GotoDialog); GotoDialog(); void ShowGotoDialog(TextView*); protected: VObject *DoMakeControls(); VObject *DoMakeActions(); void DoSetDefaults(); protected: TextView *view; IntField *line; }; #endif