diff options
| author | Bill Spitzak <spitzak@gmail.com> | 1999-10-30 20:21:30 +0000 |
|---|---|---|
| committer | Bill Spitzak <spitzak@gmail.com> | 1999-10-30 20:21:30 +0000 |
| commit | c3bd173a570d04961ffc1ccda39ea4a64846e030 (patch) | |
| tree | a67dc078e94f17d43d53634450162cfc02786a8e /src/Fl_Input.cxx | |
| parent | 936b75f917739fcff4fb8c74673ec3d6c94df29e (diff) | |
More fixes to the text editing to make the NT users happy.
With all the recent check-ins, the result is that text editing is a
combination of the best parts of "CUA" and X/Motif text editing
(in my opinion). It mostly acts like CUA with these additions:
1. Clicking in a field the first time selects the entire field (this is a
necessary modification so that it works in point-to-type window managers
and still looks like Windoze, in Windoze it appears that all text fields
are switched to all-selected when the window is "activated").
2. The middle mouse button acts like the left one and *then* does "paste".
Unlike Motif you can replace text by selecting it with the middle mouse button.
3. *drag* of the left mouse button does "copy". Unlike Motif, other methods
of selecting text (like double-click) does not do "copy".
git-svn-id: file:///fltk/svn/fltk/branches/branch-1.0@807 ea41ed52-d2ee-0310-a9c1-e6b18d33e121
Diffstat (limited to 'src/Fl_Input.cxx')
| -rw-r--r-- | src/Fl_Input.cxx | 15 |
1 files changed, 5 insertions, 10 deletions
diff --git a/src/Fl_Input.cxx b/src/Fl_Input.cxx index b84457985..f7c5656c5 100644 --- a/src/Fl_Input.cxx +++ b/src/Fl_Input.cxx @@ -1,5 +1,5 @@ // -// "$Id: Fl_Input.cxx,v 1.10.2.3 1999/10/15 09:01:43 bill Exp $" +// "$Id: Fl_Input.cxx,v 1.10.2.4 1999/10/30 20:21:29 bill Exp $" // // Input widget for the Fast Light Tool Kit (FLTK). // @@ -279,7 +279,6 @@ int Fl_Input::handle_key() { } int Fl_Input::handle(int event) { - static char first_click; switch (event) { @@ -312,28 +311,24 @@ int Fl_Input::handle(int event) { return handle_key(); case FL_PUSH: - compose = 0; - first_click = 0; if (Fl::focus() != this) { Fl::focus(this); handle(FL_FOCUS); // Windoze-style: select everything on first click: if (type() != FL_MULTILINE_INPUT) { - first_click = 1; position(size(), 0); // select everything - Fl::event_is_click(0); // prevents next click from being a double click return 1; } } - // don't remove selection when pasting in a replacement: - if (Fl::event_button() == 2 && mark() != position()) return 1; + compose = 0; break; case FL_RELEASE: if (Fl::event_button() == 2) { Fl::event_is_click(0); // stop double click from picking a word Fl::paste(*this); - } else if (!first_click) { + } else if (!Fl::event_is_click()) { + // copy drag-selected text to the clipboard. copy(); } return 1; @@ -350,5 +345,5 @@ Fl_Input::Fl_Input(int x, int y, int w, int h, const char *l) } // -// End of "$Id: Fl_Input.cxx,v 1.10.2.3 1999/10/15 09:01:43 bill Exp $". +// End of "$Id: Fl_Input.cxx,v 1.10.2.4 1999/10/30 20:21:29 bill Exp $". // |
