mirror of https://github.com/fltk/fltk
Fl_Input and Fl_Text_Editor now hide the mouse pointer when
typing into them (STR #1466) git-svn-id: file:///fltk/svn/fltk/branches/branch-1.1@5517 ea41ed52-d2ee-0310-a9c1-e6b18d33e121
This commit is contained in:
parent
b82b4c4445
commit
09a1c11ac1
3
CHANGES
3
CHANGES
|
@ -1,6 +1,7 @@
|
|||
CHANGES IN FLTK 1.1.8
|
||||
|
||||
- Fixed CMake file to support GTK+ theme (STR #1447)
|
||||
- Fl_Input and Fl_Text_Editor now hide the mouse pointer
|
||||
when typing into them (STR #1466)
|
||||
- Implemented alpha blending for Quartz, WIN32, and X11
|
||||
- Check buttons did not redraw properly with box() set to
|
||||
FL_NO_BOX (STR #1440)
|
||||
|
|
|
@ -3,7 +3,7 @@
|
|||
//
|
||||
// Input widget for the Fast Light Tool Kit (FLTK).
|
||||
//
|
||||
// Copyright 1998-2005 by Bill Spitzak and others.
|
||||
// Copyright 1998-2006 by Bill Spitzak and others.
|
||||
//
|
||||
// This library is free software; you can redistribute it and/or
|
||||
// modify it under the terms of the GNU Library General Public
|
||||
|
@ -34,6 +34,7 @@
|
|||
#include <stdio.h>
|
||||
#include <stdlib.h>
|
||||
#include <FL/Fl.H>
|
||||
#include <FL/Fl_Window.H>
|
||||
#include <FL/Fl_Input.H>
|
||||
#include <FL/fl_draw.H>
|
||||
#include <FL/fl_ask.H>
|
||||
|
@ -348,7 +349,11 @@ int Fl_Input::handle(int event) {
|
|||
else
|
||||
position(position());
|
||||
return (1);
|
||||
} else return handle_key();
|
||||
} else {
|
||||
if (active_r() && window()) window()->cursor(FL_CURSOR_NONE);
|
||||
|
||||
return handle_key();
|
||||
}
|
||||
|
||||
case FL_PUSH:
|
||||
if (Fl::dnd_text_ops()) {
|
||||
|
|
|
@ -3,7 +3,7 @@
|
|||
//
|
||||
// Common input widget routines for the Fast Light Tool Kit (FLTK).
|
||||
//
|
||||
// Copyright 1998-2005 by Bill Spitzak and others.
|
||||
// Copyright 1998-2006 by Bill Spitzak and others.
|
||||
//
|
||||
// This library is free software; you can redistribute it and/or
|
||||
// modify it under the terms of the GNU Library General Public
|
||||
|
@ -693,6 +693,7 @@ int Fl_Input_::handletext(int event, int X, int Y, int W, int H) {
|
|||
switch (event) {
|
||||
|
||||
case FL_ENTER:
|
||||
case FL_MOVE:
|
||||
if (active_r() && window()) window()->cursor(FL_CURSOR_INSERT);
|
||||
return 1;
|
||||
|
||||
|
@ -717,6 +718,8 @@ int Fl_Input_::handletext(int event, int X, int Y, int W, int H) {
|
|||
return 1;
|
||||
|
||||
case FL_PUSH:
|
||||
if (active_r() && window()) window()->cursor(FL_CURSOR_INSERT);
|
||||
|
||||
handle_mouse(X, Y, W, H, Fl::event_state(FL_SHIFT));
|
||||
|
||||
if (Fl::focus() != this) {
|
||||
|
|
|
@ -1,7 +1,7 @@
|
|||
//
|
||||
// "$Id$"
|
||||
//
|
||||
// Copyright 2001-2005 by Bill Spitzak and others.
|
||||
// Copyright 2001-2006 by Bill Spitzak and others.
|
||||
// Original code Copyright Mark Edel. Permission to distribute under
|
||||
// the LGPL for the FLTK library granted by Mark Edel.
|
||||
//
|
||||
|
@ -3100,7 +3100,8 @@ int Fl_Text_Display::handle(int event) {
|
|||
case FL_ENTER:
|
||||
case FL_MOVE:
|
||||
if (active_r()) {
|
||||
if (Fl::event_inside(text_area.x, text_area.y, text_area.w, text_area.h)) window()->cursor(FL_CURSOR_INSERT);
|
||||
if (Fl::event_inside(text_area.x, text_area.y, text_area.w,
|
||||
text_area.h)) window()->cursor(FL_CURSOR_INSERT);
|
||||
else window()->cursor(FL_CURSOR_DEFAULT);
|
||||
return 1;
|
||||
} else {
|
||||
|
@ -3118,6 +3119,12 @@ int Fl_Text_Display::handle(int event) {
|
|||
}
|
||||
|
||||
case FL_PUSH: {
|
||||
if (active_r() && window()) {
|
||||
if (Fl::event_inside(text_area.x, text_area.y, text_area.w,
|
||||
text_area.h)) window()->cursor(FL_CURSOR_INSERT);
|
||||
else window()->cursor(FL_CURSOR_DEFAULT);
|
||||
}
|
||||
|
||||
if (Fl::focus() != this) {
|
||||
Fl::focus(this);
|
||||
handle(FL_FOCUS);
|
||||
|
|
|
@ -1,7 +1,7 @@
|
|||
//
|
||||
// "$Id$"
|
||||
//
|
||||
// Copyright 2001-2005 by Bill Spitzak and others.
|
||||
// Copyright 2001-2006 by Bill Spitzak and others.
|
||||
// Original code Copyright Mark Edel. Permission to distribute under
|
||||
// the LGPL for the FLTK library granted by Mark Edel.
|
||||
//
|
||||
|
@ -30,6 +30,7 @@
|
|||
#include "flstring.h"
|
||||
#include <ctype.h>
|
||||
#include <FL/Fl.H>
|
||||
#include <FL/Fl_Window.H>
|
||||
#include <FL/Fl_Text_Editor.H>
|
||||
#include <FL/fl_ask.H>
|
||||
|
||||
|
@ -446,6 +447,7 @@ int Fl_Text_Editor::handle(int event) {
|
|||
return 1;
|
||||
|
||||
case FL_KEYBOARD:
|
||||
if (active_r() && window()) window()->cursor(FL_CURSOR_NONE);
|
||||
return handle_key();
|
||||
|
||||
case FL_PASTE:
|
||||
|
|
Loading…
Reference in New Issue