gui.h
changeset 5108 dc67d70b5a45
parent 5044 7e70387677e5
child 5116 2a33a74925c5
equal deleted inserted replaced
5107:8791beb0ae51 5108:dc67d70b5a45
   107 int HandleEditBoxKey(Window *w, querystr_d *string, int wid, WindowEvent *we);
   107 int HandleEditBoxKey(Window *w, querystr_d *string, int wid, WindowEvent *we);
   108 bool HandleCaret(Textbuf *tb);
   108 bool HandleCaret(Textbuf *tb);
   109 
   109 
   110 void DeleteTextBufferAll(Textbuf *tb);
   110 void DeleteTextBufferAll(Textbuf *tb);
   111 bool DeleteTextBufferChar(Textbuf *tb, int delmode);
   111 bool DeleteTextBufferChar(Textbuf *tb, int delmode);
   112 bool InsertTextBufferChar(Textbuf *tb, byte key);
   112 bool InsertTextBufferChar(Textbuf *tb, uint32 key);
   113 bool InsertTextBufferClipboard(Textbuf *tb);
   113 bool InsertTextBufferClipboard(Textbuf *tb);
   114 bool MoveTextBufferPos(Textbuf *tb, int navmode);
   114 bool MoveTextBufferPos(Textbuf *tb, int navmode);
   115 void InitializeTextBuffer(Textbuf *tb, const char *buf, uint16 maxlength, uint16 maxwidth);
   115 void InitializeTextBuffer(Textbuf *tb, const char *buf, uint16 maxlength, uint16 maxwidth);
   116 void UpdateTextBufferSize(Textbuf *tb);
   116 void UpdateTextBufferSize(Textbuf *tb);
   117 
   117