1998-10-20 01:39:29 +04:00
|
|
|
//
|
|
|
|
// Input header file for the Fast Light Tool Kit (FLTK).
|
|
|
|
//
|
2021-04-07 20:14:25 +03:00
|
|
|
// Copyright 1998-2021 by Bill Spitzak and others.
|
1998-10-20 01:39:29 +04:00
|
|
|
//
|
2011-07-19 08:49:30 +04:00
|
|
|
// This library is free software. Distribution and use rights are outlined in
|
|
|
|
// the file "COPYING" which should have been included with this file. If this
|
|
|
|
// file is missing or damaged, see the license at:
|
|
|
|
//
|
2020-07-01 19:03:10 +03:00
|
|
|
// https://www.fltk.org/COPYING.php
|
1998-10-20 01:39:29 +04:00
|
|
|
//
|
2020-07-01 19:03:10 +03:00
|
|
|
// Please see the following page on how to report bugs and issues:
|
2005-04-16 04:13:17 +04:00
|
|
|
//
|
2020-07-01 19:03:10 +03:00
|
|
|
// https://www.fltk.org/bugs.php
|
1998-10-20 01:39:29 +04:00
|
|
|
//
|
1998-10-06 22:21:25 +04:00
|
|
|
|
2008-10-15 17:46:06 +04:00
|
|
|
/* \file
|
2008-09-16 11:26:22 +04:00
|
|
|
Fl_Input widget . */
|
|
|
|
|
1998-10-06 22:21:25 +04:00
|
|
|
#ifndef Fl_Input_H
|
|
|
|
#define Fl_Input_H
|
|
|
|
|
|
|
|
#include "Fl_Input_.H"
|
|
|
|
|
2008-09-15 15:10:51 +04:00
|
|
|
/**
|
|
|
|
This is the FLTK text input widget. It displays a single line
|
|
|
|
of text and lets the user edit it. Normally it is drawn with an
|
|
|
|
inset box and a white background. The text may contain any
|
2010-12-20 11:20:44 +03:00
|
|
|
characters, and will correctly display any UTF text, using
|
2010-10-27 01:01:17 +04:00
|
|
|
^X notation for unprintable control characters. It assumes the
|
2010-11-01 01:39:40 +03:00
|
|
|
font can draw any characters of the used scripts, which is true
|
2018-02-09 17:39:42 +03:00
|
|
|
for standard fonts under Windows and Mac OS X.
|
2010-11-28 12:12:36 +03:00
|
|
|
Characters can be input using the keyboard or the character palette/map.
|
2010-12-09 16:41:12 +03:00
|
|
|
Character composition is done using dead keys and/or a compose
|
2010-11-28 12:12:36 +03:00
|
|
|
key as defined by the operating system.
|
2010-12-20 09:42:38 +03:00
|
|
|
<P>
|
2021-04-07 20:14:25 +03:00
|
|
|
<!-- DON'T use the class name in the caption, or doxygen 1.8.x will fail. -->
|
2018-08-07 12:01:32 +03:00
|
|
|
<TABLE WIDTH="90%" BORDER="1" SUMMARY="Fl_Input keyboard and mouse bindings.">
|
|
|
|
<CAPTION ALIGN="TOP">Keyboard and mouse bindings.</CAPTION>
|
2010-12-20 09:42:38 +03:00
|
|
|
<TR><TD NOWRAP="NOWRAP" WIDTH="1%">
|
2020-07-01 19:03:10 +03:00
|
|
|
<B>Mouse button 1</B>
|
2010-12-20 09:42:38 +03:00
|
|
|
</TD><TD>
|
2020-07-01 19:03:10 +03:00
|
|
|
Moves the cursor to this point.
|
|
|
|
Drag selects characters.
|
|
|
|
Double click selects words.
|
2010-12-20 11:15:12 +03:00
|
|
|
Triple click selects all line.
|
2010-12-20 09:42:38 +03:00
|
|
|
Shift+click extends the selection.
|
2010-12-22 23:47:54 +03:00
|
|
|
When you select text it is automatically copied to the selection buffer.
|
2010-12-20 09:42:38 +03:00
|
|
|
</TD></TR><TR><TD NOWRAP="NOWRAP">
|
2020-07-01 19:03:10 +03:00
|
|
|
<B>Mouse button 2</B>
|
2010-12-20 09:42:38 +03:00
|
|
|
</TD><TD>
|
2010-12-22 23:47:54 +03:00
|
|
|
Insert the selection buffer at the point clicked.
|
|
|
|
You can also select a region and replace it with the selection buffer
|
2010-12-20 09:42:38 +03:00
|
|
|
by selecting the region with mouse button 2.
|
|
|
|
</TD></TR><TR><TD NOWRAP="NOWRAP">
|
|
|
|
<B>Mouse button 3</B>
|
|
|
|
</TD><TD>
|
|
|
|
Currently acts like button 1.
|
|
|
|
</TD></TR><TR><TD NOWRAP="NOWRAP">
|
|
|
|
<B>Backspace</B>
|
|
|
|
</TD><TD>
|
|
|
|
Deletes one character to the left, or deletes the selected region.
|
|
|
|
</TD></TR><TR><TD NOWRAP="NOWRAP">
|
|
|
|
<B>Delete</B>
|
|
|
|
</TD><TD>
|
|
|
|
Deletes one character to the right, or deletes the selected region.
|
|
|
|
Combine with Shift for equivalent of ^X (copy+cut).
|
|
|
|
</TD></TR><TR><TD NOWRAP="NOWRAP">
|
|
|
|
<B>Enter</b>
|
|
|
|
</TD><TD>
|
|
|
|
May cause the callback, see when().
|
|
|
|
</TD></TR></TABLE>
|
|
|
|
|
|
|
|
<P>
|
|
|
|
|
|
|
|
<TABLE WIDTH="90%" BORDER="1" SUMMARY="Fl_Input platform specific keyboard bindings.">
|
2018-08-07 12:01:32 +03:00
|
|
|
<CAPTION ALIGN="TOP">Platform specific keyboard bindings.</CAPTION>
|
2010-12-20 09:42:38 +03:00
|
|
|
<TR>
|
|
|
|
<TD NOWRAP="NOWRAP" WIDTH="1%"><B> Windows/Linux </B></TD>
|
|
|
|
<TD NOWRAP="NOWRAP" WIDTH="1%"><B> Mac </B></TD>
|
|
|
|
<TD NOWRAP="NOWRAP" ><B> Function </B></TD>
|
|
|
|
|
|
|
|
</TR><TR>
|
|
|
|
<TD NOWRAP="NOWRAP"><B> ^A </B></TD>
|
|
|
|
<TD NOWRAP="NOWRAP"><B> Command-A </B></TD>
|
|
|
|
<TD>
|
|
|
|
<B>Selects all text in the widget.</B>
|
|
|
|
|
|
|
|
</TD></TR><TR>
|
|
|
|
<TD NOWRAP="NOWRAP"><B> ^C </B></TD>
|
|
|
|
<TD NOWRAP="NOWRAP"><B> Command-C </B></TD>
|
|
|
|
<TD>
|
|
|
|
<B>Copy the current selection to the clipboard.</B>
|
|
|
|
|
|
|
|
</TD></TR><TR>
|
|
|
|
<TD NOWRAP="NOWRAP"><B> ^I </B></TD>
|
|
|
|
<TD NOWRAP="NOWRAP"><B> ^I </B></TD>
|
|
|
|
<TD>
|
|
|
|
<B>Insert a tab.</B>
|
|
|
|
|
|
|
|
</TD></TR><TR>
|
|
|
|
<TD NOWRAP="NOWRAP"><B> ^J </B></TD>
|
|
|
|
<TD NOWRAP="NOWRAP"><B> ^J </B></TD>
|
|
|
|
<TD>
|
|
|
|
<B>Insert a Line Feed.</B> <BR>
|
|
|
|
(Similar to literal 'Enter' character)
|
|
|
|
|
|
|
|
</TD></TR><TR>
|
|
|
|
<TD NOWRAP="NOWRAP"><B> ^L </B></TD>
|
|
|
|
<TD NOWRAP="NOWRAP"><B> ^L </B></TD>
|
|
|
|
<TD>
|
|
|
|
<B>Insert a Form Feed.</B>
|
|
|
|
|
|
|
|
</TD></TR><TR>
|
|
|
|
<TD NOWRAP="NOWRAP"><B> ^M </B></TD>
|
|
|
|
<TD NOWRAP="NOWRAP"><B> ^M </B></TD>
|
|
|
|
<TD>
|
|
|
|
<B>Insert a Carriage Return.</B>
|
|
|
|
|
|
|
|
</TD></TR><TR>
|
|
|
|
<TD NOWRAP="NOWRAP"><B> ^V,<BR>Shift-Insert </B></TD>
|
|
|
|
<TD NOWRAP="NOWRAP"><B> Command-V </B></TD>
|
|
|
|
<TD>
|
|
|
|
<B>Paste the clipboard.</B> <BR>
|
2020-07-01 19:03:10 +03:00
|
|
|
(Macs keyboards don't have "Insert" keys,
|
2010-12-20 09:42:38 +03:00
|
|
|
but if they did, Shift-Insert would work)
|
|
|
|
|
|
|
|
</TD></TR><TR>
|
|
|
|
<TD NOWRAP="NOWRAP"><B> ^X,<BR>Shift-Delete </B></TD>
|
|
|
|
<TD NOWRAP="NOWRAP"><B> Command-X,<BR>Shift-Delete </B></TD>
|
|
|
|
<TD>
|
|
|
|
<B>Cut.</B> <BR>
|
|
|
|
Copy the selection to the clipboard and delete it.
|
|
|
|
(If there's no selection, Shift-Delete acts like Delete)
|
|
|
|
|
|
|
|
</TD></TR><TR>
|
|
|
|
<TD NOWRAP="NOWRAP"><B> ^Z </B></TD>
|
|
|
|
<TD NOWRAP="NOWRAP"><B> Command-Z </B></TD>
|
|
|
|
<TD>
|
|
|
|
<B>Undo.</B> <BR>
|
2020-07-01 19:03:10 +03:00
|
|
|
This is a single-level undo mechanism, but all adjacent
|
2010-12-20 09:42:38 +03:00
|
|
|
deletions and insertions are concatenated into a single "undo".
|
2020-07-01 19:03:10 +03:00
|
|
|
Often this will undo a lot more than you expected.
|
2010-12-20 09:42:38 +03:00
|
|
|
|
|
|
|
</TD></TR><TR>
|
|
|
|
<TD NOWRAP="NOWRAP"><B> Shift-^Z </B></TD>
|
|
|
|
<TD NOWRAP="NOWRAP"><B> Shift-Command-Z </B></TD>
|
|
|
|
<TD>
|
|
|
|
<B>Redo.</B> <BR>
|
2020-07-01 19:03:10 +03:00
|
|
|
Currently same behavior as ^Z.
|
2010-12-20 09:42:38 +03:00
|
|
|
Reserved for future multilevel undo/redo.
|
|
|
|
|
|
|
|
</TD></TR><TR>
|
|
|
|
<TD NOWRAP="NOWRAP"><B> Arrow Keys </B></TD>
|
|
|
|
<TD NOWRAP="NOWRAP"><B> Arrow Keys </B></TD>
|
|
|
|
<TD>
|
|
|
|
<B>Standard cursor movement.</B> <BR>
|
|
|
|
Can be combined with Shift to extend selection.
|
|
|
|
|
|
|
|
</TD></TR><TR>
|
|
|
|
<TD NOWRAP="NOWRAP"><B> Home </B></TD>
|
|
|
|
<TD NOWRAP="NOWRAP"><B> Command-Up,<BR>Command-Left </B></TD>
|
|
|
|
<TD>
|
|
|
|
<B>Move to start of line.</B> <BR>
|
|
|
|
Can be combined with Shift to extend selection.
|
|
|
|
|
|
|
|
</TD></TR><TR>
|
|
|
|
<TD NOWRAP="NOWRAP"><B> End </B></TD>
|
|
|
|
<TD NOWRAP="NOWRAP"><B> Command-Down,<BR>Command-Right </B></TD>
|
|
|
|
<TD>
|
|
|
|
<B>Move to end of line.</B> <BR>
|
|
|
|
Can be combined with Shift to extend selection.
|
|
|
|
|
|
|
|
</TD></TR><TR>
|
|
|
|
<TD NOWRAP="NOWRAP"><B>Ctrl-Home</B></TD>
|
|
|
|
<TD NOWRAP="NOWRAP"><B>Command-Up,<BR>Command-PgUp,<BR>Ctrl-Left</B></TD>
|
|
|
|
<TD>
|
|
|
|
<B>Move to top of document/field.</B> <BR>
|
|
|
|
In single line input, moves to start of line.
|
|
|
|
In multiline input, moves to start of top line.
|
|
|
|
Can be combined with Shift to extend selection.
|
|
|
|
|
|
|
|
</TD></TR><TR>
|
|
|
|
<TD NOWRAP="NOWRAP"><B> Ctrl-End </B></TD>
|
|
|
|
<TD NOWRAP="NOWRAP"><B> Command-End,<BR>Command-PgDn,<BR>Ctrl-Right</B></TD>
|
|
|
|
<TD>
|
|
|
|
<B>Move to bottom of document/field.</B> <BR>
|
|
|
|
In single line input, moves to end of line.
|
|
|
|
In multiline input, moves to end of last line.
|
|
|
|
Can be combined with Shift to extend selection.
|
|
|
|
|
|
|
|
</TD></TR><TR>
|
|
|
|
<TD NOWRAP="NOWRAP"><B> Ctrl-Left </B></TD>
|
|
|
|
<TD NOWRAP="NOWRAP"><B> Alt-Left </B></TD>
|
|
|
|
<TD>
|
|
|
|
<B>Word left.</B> <BR>
|
|
|
|
Can be combined with Shift to extend selection.
|
|
|
|
|
|
|
|
</TD></TR><TR>
|
|
|
|
<TD NOWRAP="NOWRAP"><B> Ctrl-Right </B></TD>
|
|
|
|
<TD NOWRAP="NOWRAP"><B> Alt-Right </B></TD>
|
|
|
|
<TD>
|
|
|
|
<B>Word right.</B> <BR>
|
|
|
|
Can be combined with Shift to extend selection.
|
|
|
|
|
|
|
|
</TD></TR><TR>
|
|
|
|
<TD NOWRAP="NOWRAP"><B> Ctrl-Backspace </B></TD>
|
2010-12-23 11:13:18 +03:00
|
|
|
<TD NOWRAP="NOWRAP"><B> Alt-Backspace </B></TD>
|
2010-12-20 09:42:38 +03:00
|
|
|
<TD>
|
|
|
|
<B>Delete word left.</B>
|
|
|
|
|
|
|
|
</TD></TR><TR>
|
|
|
|
<TD NOWRAP="NOWRAP"><B> Ctrl-Delete </B></TD>
|
|
|
|
<TD NOWRAP="NOWRAP"><B> Alt-Delete </B></TD>
|
|
|
|
<TD>
|
|
|
|
<B>Delete word right.</B>
|
|
|
|
|
|
|
|
</TD></TR></TABLE>
|
2010-11-28 12:12:36 +03:00
|
|
|
*/
|
2002-08-14 20:49:38 +04:00
|
|
|
class FL_EXPORT Fl_Input : public Fl_Input_ {
|
2016-04-06 22:39:15 +03:00
|
|
|
friend class Fl_Screen_Driver;
|
|
|
|
friend class Fl_Cocoa_Screen_Driver; // Not ideal, but probably no other platform will use it
|
2002-08-14 20:49:38 +04:00
|
|
|
int shift_position(int p);
|
|
|
|
int shift_up_down_position(int p);
|
2008-09-11 03:56:49 +04:00
|
|
|
void handle_mouse(int keepmark=0);
|
2010-12-20 09:42:38 +03:00
|
|
|
|
|
|
|
// Private keyboard functions
|
|
|
|
int kf_lines_up(int repeat_num);
|
|
|
|
int kf_lines_down(int repeat_num);
|
|
|
|
int kf_page_up();
|
|
|
|
int kf_page_down();
|
|
|
|
int kf_insert_toggle();
|
|
|
|
int kf_delete_word_right();
|
|
|
|
int kf_delete_word_left();
|
|
|
|
int kf_delete_sol();
|
|
|
|
int kf_delete_eol();
|
|
|
|
int kf_delete_char_right();
|
|
|
|
int kf_delete_char_left();
|
|
|
|
int kf_move_sol();
|
|
|
|
int kf_move_eol();
|
|
|
|
int kf_clear_eol();
|
|
|
|
int kf_move_char_left();
|
|
|
|
int kf_move_char_right();
|
|
|
|
int kf_move_word_left();
|
|
|
|
int kf_move_word_right();
|
|
|
|
int kf_move_up_and_sol();
|
|
|
|
int kf_move_down_and_eol();
|
|
|
|
int kf_top();
|
|
|
|
int kf_bottom();
|
|
|
|
int kf_select_all();
|
|
|
|
int kf_undo();
|
|
|
|
int kf_redo();
|
|
|
|
int kf_copy();
|
|
|
|
int kf_paste();
|
|
|
|
int kf_copy_cut();
|
|
|
|
|
2009-02-18 12:27:54 +03:00
|
|
|
protected:
|
2002-08-14 20:49:38 +04:00
|
|
|
void draw();
|
2021-04-07 20:14:25 +03:00
|
|
|
int handle_key();
|
|
|
|
|
2009-02-18 12:27:54 +03:00
|
|
|
public:
|
2002-08-14 20:49:38 +04:00
|
|
|
int handle(int);
|
|
|
|
Fl_Input(int,int,int,int,const char * = 0);
|
1998-10-06 22:21:25 +04:00
|
|
|
};
|
|
|
|
|
2020-07-01 19:03:10 +03:00
|
|
|
#endif
|