interface query : public screen
  {
    query(char* p,char* options = "");
    query(widget* w,char* p,char* options = "");
    virtual ~query();
  
    void text(char* txt);     // set text parameter
  
    char* get();              // get value
  };
  

slide: SYNOPSIS