This repository has been archived on 2023-07-11. You can view files and clone it, but cannot push or open issues or pull requests.
fte/i_input.h

45 lines
1.1 KiB
C
Raw Permalink Normal View History

/* i_input.h
*
* Copyright (c) 1994-1996, Marko Macek
*
* You may distribute under the terms of either the GNU General Public
* License or the Artistic License, as specified in the README file.
*
*/
#ifndef __EXINPUT_H
#define __EXINPUT_H
typedef int (*Completer)(const char *Name, char *Completed, int Num);
class ExInput: public ExView {
public:
char *Prompt;
char *Line;
char *MatchStr;
char *CurStr;
unsigned int Pos;
unsigned int LPos;
unsigned int MaxLen;
Completer Comp;
int TabCount;
int HistId;
int CurItem;
unsigned int SelStart;
unsigned int SelEnd;
ExInput(const char *APrompt, char *ALine, unsigned int AMaxLen, Completer AComp, int Select, int AHistId);
virtual ~ExInput();
virtual void Activate(int gotfocus);
virtual ExView *GetViewContext() { return Next; }
virtual int BeginMacro();
virtual void HandleEvent(TEvent &Event);
virtual void UpdateView();
virtual void RepaintView();
virtual void UpdateStatus();
virtual void RepaintStatus();
};
#endif