3rd and deeper nested Fl_Windows on Win32 redraw correctly.
The symbol "table" from fl_cursor.cxx is no longer public git-svn-id: file:///fltk/svn/fltk/branches/branch-1.0@997 ea41ed52-d2ee-0310-a9c1-e6b18d33e121
This commit is contained in:
parent
d37850b115
commit
53bf740c38
@ -1,5 +1,5 @@
|
||||
//
|
||||
// "$Id: Fl_win32.cxx,v 1.33.2.20 1999/12/31 02:56:18 mike Exp $"
|
||||
// "$Id: Fl_win32.cxx,v 1.33.2.21 2000/02/04 06:35:20 bill Exp $"
|
||||
//
|
||||
// WIN32-specific code for the Fast Light Tool Kit (FLTK).
|
||||
//
|
||||
@ -754,8 +754,8 @@ Fl_X* Fl_X::make(Fl_Window* w) {
|
||||
int hp = w->h();
|
||||
|
||||
if (w->parent()) {
|
||||
style = WS_CHILD;
|
||||
styleEx = WS_EX_WINDOWEDGE | WS_EX_CONTROLPARENT;
|
||||
style |= WS_CHILD;
|
||||
styleEx |= WS_EX_WINDOWEDGE | WS_EX_CONTROLPARENT;
|
||||
parent = fl_xid(w->window());
|
||||
} else {
|
||||
if (!w->size_range_set) {
|
||||
@ -954,5 +954,5 @@ void Fl_Window::make_current() {
|
||||
}
|
||||
|
||||
//
|
||||
// End of "$Id: Fl_win32.cxx,v 1.33.2.20 1999/12/31 02:56:18 mike Exp $".
|
||||
// End of "$Id: Fl_win32.cxx,v 1.33.2.21 2000/02/04 06:35:20 bill Exp $".
|
||||
//
|
||||
|
@ -1,5 +1,5 @@
|
||||
//
|
||||
// "$Id: fl_cursor.cxx,v 1.6.2.2 1999/12/06 14:43:40 mike Exp $"
|
||||
// "$Id: fl_cursor.cxx,v 1.6.2.3 2000/02/04 06:35:22 bill Exp $"
|
||||
//
|
||||
// Mouse cursor support for the Fast Light Tool Kit (FLTK).
|
||||
//
|
||||
@ -101,7 +101,7 @@ void Fl_Window::cursor(Fl_Cursor c, Fl_Color, Fl_Color) {
|
||||
|
||||
#define CURSORSIZE 16
|
||||
#define HOTXY 7
|
||||
struct TableEntry {
|
||||
static struct TableEntry {
|
||||
uchar bits[CURSORSIZE*CURSORSIZE/8];
|
||||
uchar mask[CURSORSIZE*CURSORSIZE/8];
|
||||
Cursor cursor;
|
||||
@ -184,5 +184,5 @@ void Fl_Window::cursor(Fl_Cursor c, Fl_Color fg, Fl_Color bg) {
|
||||
#endif
|
||||
|
||||
//
|
||||
// End of "$Id: fl_cursor.cxx,v 1.6.2.2 1999/12/06 14:43:40 mike Exp $".
|
||||
// End of "$Id: fl_cursor.cxx,v 1.6.2.3 2000/02/04 06:35:22 bill Exp $".
|
||||
//
|
||||
|
Loading…
Reference in New Issue
Block a user