1998-10-20 00:46:58 +04:00
|
|
|
//
|
2018-02-09 17:39:42 +03:00
|
|
|
// Windows-specific code for the Fast Light Tool Kit (FLTK).
|
1998-10-20 00:46:58 +04:00
|
|
|
//
|
2022-02-01 00:27:17 +03:00
|
|
|
// Copyright 1998-2022 by Bill Spitzak and others.
|
1998-10-20 00:46:58 +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 00:46:58 +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 00:46:58 +04:00
|
|
|
//
|
1998-10-06 23:14:55 +04:00
|
|
|
|
2018-02-09 17:39:42 +03:00
|
|
|
// This file contains Windows-specific code for FLTK which is always linked
|
|
|
|
// in. Search other files for "_WIN32" or filenames ending in _win32.cxx
|
1998-10-06 23:14:55 +04:00
|
|
|
// for other system-specific code.
|
|
|
|
|
2018-02-09 17:39:42 +03:00
|
|
|
#if defined(_WIN32) && !defined(FL_DOXYGEN)
|
2016-03-25 16:08:48 +03:00
|
|
|
|
|
|
|
/* We require Windows 2000 features (e.g. VK definitions) */
|
|
|
|
# if !defined(WINVER) || (WINVER < 0x0500)
|
|
|
|
# ifdef WINVER
|
|
|
|
# undef WINVER
|
|
|
|
# endif
|
|
|
|
# define WINVER 0x0500
|
|
|
|
# endif
|
|
|
|
# if !defined(_WIN32_WINNT) || (_WIN32_WINNT < 0x0500)
|
|
|
|
# ifdef _WIN32_WINNT
|
|
|
|
# undef _WIN32_WINNT
|
|
|
|
# endif
|
|
|
|
# define _WIN32_WINNT 0x0500
|
|
|
|
# endif
|
|
|
|
|
|
|
|
// recent versions of MinGW warn: "Please include winsock2.h before windows.h",
|
|
|
|
#if !defined(__CYGWIN__)
|
|
|
|
# include <winsock2.h>
|
|
|
|
#endif
|
|
|
|
#include <windows.h>
|
|
|
|
#include <ole2.h>
|
2016-03-25 18:39:51 +03:00
|
|
|
#include <shellapi.h>
|
2018-06-19 01:49:04 +03:00
|
|
|
// Some versions of MinGW now require us to explicitly include winerror to get S_OK defined
|
|
|
|
#include <winerror.h>
|
2020-11-29 11:48:23 +03:00
|
|
|
#include <math.h> // for ceil() and round()
|
2016-03-25 16:08:48 +03:00
|
|
|
|
|
|
|
void fl_free_fonts(void);
|
2017-12-19 15:52:57 +03:00
|
|
|
void fl_release_dc(HWND, HDC);
|
2016-03-25 16:08:48 +03:00
|
|
|
void fl_cleanup_dc_list(void);
|
2010-12-09 12:03:17 +03:00
|
|
|
|
2021-02-16 13:08:30 +03:00
|
|
|
#include <config.h>
|
1998-10-06 23:14:55 +04:00
|
|
|
#include <FL/Fl.H>
|
2018-02-01 00:17:17 +03:00
|
|
|
#include <FL/platform.H>
|
2018-06-26 16:43:18 +03:00
|
|
|
#include "Fl_Window_Driver.H"
|
2018-06-26 17:04:09 +03:00
|
|
|
#include "Fl_Screen_Driver.H"
|
2022-02-01 00:27:17 +03:00
|
|
|
#include "Fl_Timeout.h"
|
2022-02-03 23:56:42 +03:00
|
|
|
#include "print_button.h"
|
2017-12-19 15:52:57 +03:00
|
|
|
#include <FL/Fl_Graphics_Driver.H> // for fl_graphics_driver
|
2016-03-25 16:08:48 +03:00
|
|
|
#include "drivers/WinAPI/Fl_WinAPI_Window_Driver.H"
|
2016-04-10 23:38:04 +03:00
|
|
|
#include "drivers/WinAPI/Fl_WinAPI_System_Driver.H"
|
2016-04-15 17:18:37 +03:00
|
|
|
#include "drivers/WinAPI/Fl_WinAPI_Screen_Driver.H"
|
2017-05-17 14:54:18 +03:00
|
|
|
#include "drivers/GDI/Fl_GDI_Graphics_Driver.H"
|
2008-09-19 21:40:20 +04:00
|
|
|
#include <FL/fl_utf8.h>
|
2022-01-16 21:02:36 +03:00
|
|
|
#include <FL/fl_string_functions.h>
|
1998-10-06 23:14:55 +04:00
|
|
|
#include <FL/Fl_Window.H>
|
2008-09-11 03:56:49 +04:00
|
|
|
#include <FL/fl_draw.H>
|
2004-10-19 22:21:55 +04:00
|
|
|
#include <FL/Enumerations.H>
|
2006-06-14 14:48:36 +04:00
|
|
|
#include <FL/Fl_Tooltip.H>
|
2011-04-16 01:38:05 +04:00
|
|
|
#include <FL/Fl_Paged_Device.H>
|
2017-07-07 17:31:40 +03:00
|
|
|
#include <FL/Fl_Image_Surface.H>
|
2002-04-11 15:52:43 +04:00
|
|
|
#include "flstring.h"
|
2016-04-02 16:22:48 +03:00
|
|
|
#include "drivers/GDI/Fl_Font.H"
|
2001-04-27 19:43:38 +04:00
|
|
|
#include <stdio.h>
|
1999-01-04 22:25:40 +03:00
|
|
|
#include <stdlib.h>
|
1999-01-07 00:20:01 +03:00
|
|
|
#include <sys/types.h>
|
|
|
|
#include <time.h>
|
2014-02-05 13:38:22 +04:00
|
|
|
#include <signal.h>
|
2002-01-01 17:14:34 +03:00
|
|
|
#ifdef __CYGWIN__
|
|
|
|
# include <sys/time.h>
|
|
|
|
# include <unistd.h>
|
2001-10-30 00:59:15 +03:00
|
|
|
#endif
|
2010-12-09 12:03:17 +03:00
|
|
|
|
|
|
|
#if !defined(NO_TRACK_MOUSE)
|
2020-07-01 19:03:10 +03:00
|
|
|
# include <commctrl.h> // TrackMouseEvent
|
2008-10-04 20:35:58 +04:00
|
|
|
#endif
|
2002-04-10 19:01:22 +04:00
|
|
|
|
2010-11-11 11:38:36 +03:00
|
|
|
#if defined(__GNUC__)
|
2009-01-12 15:43:03 +03:00
|
|
|
# include <wchar.h>
|
|
|
|
#endif
|
|
|
|
|
2019-06-16 13:00:38 +03:00
|
|
|
static bool is_dpi_aware = false;
|
1998-10-06 23:14:55 +04:00
|
|
|
|
2016-03-25 16:08:48 +03:00
|
|
|
extern bool fl_clipboard_notify_empty(void);
|
|
|
|
extern void fl_trigger_clipboard_notify(int source);
|
|
|
|
extern HBRUSH fl_brush_action(int action);
|
|
|
|
extern void fl_cleanup_pens(void);
|
|
|
|
|
2021-05-07 16:48:24 +03:00
|
|
|
// MSVC 2010 can't find round() although <math.h> is included above,
|
|
|
|
// which is surprising because ceil() works fine.
|
|
|
|
// We could (should?) probably add configure/CMake feature tests for
|
|
|
|
// round() and ceil() rather than depending on MSVC version numbers.
|
|
|
|
// AlbrechtS, 02/2010 - Note: we don't know about MSVC 2012 - 2015, see
|
|
|
|
// https://docs.microsoft.com/en-us/cpp/preprocessor/predefined-macros
|
|
|
|
|
|
|
|
#if defined(_MSC_VER) && _MSC_VER <= 1600
|
|
|
|
#define round(A) int((A) + 0.5)
|
|
|
|
#endif // _MSC_VER <= 1600
|
2016-03-25 16:08:48 +03:00
|
|
|
|
1999-12-29 06:14:41 +03:00
|
|
|
// USE_ASYNC_SELECT - define it if you have WSAAsyncSelect()...
|
2008-09-02 16:03:30 +04:00
|
|
|
// USE_ASYNC_SELECT is OBSOLETED in 1.3 for the following reasons:
|
2009-02-21 13:01:57 +03:00
|
|
|
/*
|
|
|
|
This feature was supposed to provide an efficient alternative to the current
|
|
|
|
polling method, but as it has been discussed (Thanks Albrecht!) :
|
|
|
|
- the async mode would imply to change the socket to non blocking mode.
|
|
|
|
This can have unexpected side effects for 3rd party apps, especially
|
2016-01-28 20:38:11 +03:00
|
|
|
if it is set on-the-fly when socket service is really needed, as it is
|
2009-02-21 13:01:57 +03:00
|
|
|
done today and on purpose, but still the 3rd party developer wouldn't easily
|
|
|
|
control the sequencing of socket operations.
|
2016-01-28 20:38:11 +03:00
|
|
|
- Finer granularity of events furthered by the async select is a plus only
|
2009-02-21 13:01:57 +03:00
|
|
|
for socket 3rd party impl., it is simply not needed for the 'light' fltk
|
|
|
|
use we make of wsock, so here it would also be a bad point, because of all
|
|
|
|
the logic add-ons necessary for using this functionality, without a clear
|
|
|
|
benefit.
|
|
|
|
|
|
|
|
So async mode select would not add benefits to fltk, worse, it can slowdown
|
|
|
|
fltk because of this finer granularity and instrumentation code to be added
|
|
|
|
for async mode proper operation, not mentioning the side effects...
|
2008-09-02 16:03:30 +04:00
|
|
|
*/
|
1999-12-29 06:14:41 +03:00
|
|
|
|
2014-10-09 15:52:43 +04:00
|
|
|
// Internal functions
|
|
|
|
static void fl_clipboard_notify_target(HWND wnd);
|
|
|
|
static void fl_clipboard_notify_untarget(HWND wnd);
|
|
|
|
|
|
|
|
// Internal variables
|
|
|
|
static HWND clipboard_wnd = 0;
|
|
|
|
static HWND next_clipboard_wnd = 0;
|
|
|
|
|
|
|
|
static bool initial_clipboard = true;
|
|
|
|
|
2008-08-26 03:51:34 +04:00
|
|
|
// dynamic wsock dll handling api:
|
2008-10-04 20:35:58 +04:00
|
|
|
#if defined(__CYGWIN__) && !defined(SOCKET)
|
|
|
|
# define SOCKET int
|
|
|
|
#endif
|
2010-12-09 12:03:17 +03:00
|
|
|
|
2018-06-19 12:30:37 +03:00
|
|
|
// Disable dynamic linking/loading of Winsock DLL (STR #3454)
|
|
|
|
// *FIXME* The old code should be entirely removed when the issue
|
|
|
|
// is finally resolved.
|
|
|
|
|
|
|
|
#if (0) // *FIXME* dynamic loading of Winsock DLL (ws2_32.dll)
|
|
|
|
|
2010-12-09 12:03:17 +03:00
|
|
|
// note: winsock2.h has been #include'd in Fl.cxx
|
|
|
|
#define WSCK_DLL_NAME "WS2_32.DLL"
|
|
|
|
|
2017-12-19 15:52:57 +03:00
|
|
|
typedef int(WINAPI *fl_wsk_select_f)(int, fd_set *, fd_set *, fd_set *, const struct timeval *);
|
|
|
|
typedef int(WINAPI *fl_wsk_fd_is_set_f)(SOCKET, fd_set *);
|
2009-12-24 14:40:26 +03:00
|
|
|
|
2008-08-26 03:51:34 +04:00
|
|
|
static HMODULE s_wsock_mod = 0;
|
2010-12-09 12:03:17 +03:00
|
|
|
static fl_wsk_select_f s_wsock_select = 0;
|
|
|
|
static fl_wsk_fd_is_set_f fl_wsk_fd_is_set = 0;
|
2008-08-26 03:51:34 +04:00
|
|
|
|
|
|
|
static HMODULE get_wsock_mod() {
|
2008-09-02 16:03:30 +04:00
|
|
|
if (!s_wsock_mod) {
|
|
|
|
s_wsock_mod = LoadLibrary(WSCK_DLL_NAME);
|
2017-12-19 15:52:57 +03:00
|
|
|
if (s_wsock_mod == NULL)
|
|
|
|
Fl::fatal("FLTK Lib Error: %s file not found! Please check your winsock dll accessibility.\n", WSCK_DLL_NAME);
|
|
|
|
s_wsock_select = (fl_wsk_select_f)GetProcAddress(s_wsock_mod, "select");
|
|
|
|
fl_wsk_fd_is_set = (fl_wsk_fd_is_set_f)GetProcAddress(s_wsock_mod, "__WSAFDIsSet");
|
2008-09-02 16:03:30 +04:00
|
|
|
}
|
2008-08-26 03:51:34 +04:00
|
|
|
return s_wsock_mod;
|
|
|
|
}
|
2002-02-20 22:29:57 +03:00
|
|
|
|
2018-06-19 12:30:37 +03:00
|
|
|
#else // static linking of ws2_32.dll
|
|
|
|
|
|
|
|
// *FIXME* These defines and the dummy function get_wsock_mod() must be
|
|
|
|
// *removed* when the issue (STR #3454) is finally resolved. The code that
|
|
|
|
// uses these defines and get_wsock_mod() must be modified to use the
|
|
|
|
// official socket interface (select() and FL_ISSET).
|
|
|
|
|
|
|
|
#define fl_wsk_fd_is_set FD_ISSET
|
|
|
|
#define s_wsock_select select
|
|
|
|
static int get_wsock_mod() {
|
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
|
|
|
|
#endif // dynamic/static linking of ws2_32.dll (see above and STR #3454)
|
|
|
|
|
2008-09-11 15:14:06 +04:00
|
|
|
/*
|
2018-06-23 23:50:22 +03:00
|
|
|
Dynamic linking of imm32.dll
|
|
|
|
This library is only needed for a hand full (four ATM) functions relating to
|
|
|
|
international text rendering and locales. Dynamically loading reduces initial
|
|
|
|
size and link dependencies.
|
2008-09-11 15:14:06 +04:00
|
|
|
*/
|
|
|
|
static HMODULE s_imm_module = 0;
|
2017-12-19 15:52:57 +03:00
|
|
|
typedef BOOL(WINAPI *flTypeImmAssociateContextEx)(HWND, HIMC, DWORD);
|
2022-06-19 11:23:24 +03:00
|
|
|
static flTypeImmAssociateContextEx flImmAssociateContextEx = 0;
|
2017-12-19 15:52:57 +03:00
|
|
|
typedef HIMC(WINAPI *flTypeImmGetContext)(HWND);
|
2022-06-19 11:23:24 +03:00
|
|
|
static flTypeImmGetContext flImmGetContext = 0;
|
2017-12-19 15:52:57 +03:00
|
|
|
typedef BOOL(WINAPI *flTypeImmSetCompositionWindow)(HIMC, LPCOMPOSITIONFORM);
|
2022-06-19 11:23:24 +03:00
|
|
|
static flTypeImmSetCompositionWindow flImmSetCompositionWindow = 0;
|
2017-12-19 15:52:57 +03:00
|
|
|
typedef BOOL(WINAPI *flTypeImmReleaseContext)(HWND, HIMC);
|
2022-06-19 11:23:24 +03:00
|
|
|
static flTypeImmReleaseContext flImmReleaseContext = 0;
|
2014-09-15 13:35:05 +04:00
|
|
|
|
|
|
|
static void get_imm_module() {
|
|
|
|
s_imm_module = LoadLibrary("IMM32.DLL");
|
|
|
|
if (!s_imm_module)
|
|
|
|
Fl::fatal("FLTK Lib Error: IMM32.DLL file not found!\n\n"
|
2017-12-19 15:52:57 +03:00
|
|
|
"Please check your input method manager library accessibility.");
|
2014-09-15 13:44:35 +04:00
|
|
|
flImmAssociateContextEx = (flTypeImmAssociateContextEx)GetProcAddress(s_imm_module, "ImmAssociateContextEx");
|
2014-09-15 13:35:05 +04:00
|
|
|
flImmGetContext = (flTypeImmGetContext)GetProcAddress(s_imm_module, "ImmGetContext");
|
|
|
|
flImmSetCompositionWindow = (flTypeImmSetCompositionWindow)GetProcAddress(s_imm_module, "ImmSetCompositionWindow");
|
|
|
|
flImmReleaseContext = (flTypeImmReleaseContext)GetProcAddress(s_imm_module, "ImmReleaseContext");
|
2008-09-11 15:14:06 +04:00
|
|
|
}
|
|
|
|
|
2008-12-07 13:53:07 +03:00
|
|
|
// USE_TRACK_MOUSE - define NO_TRACK_MOUSE if you don't have
|
|
|
|
// TrackMouseEvent()...
|
2002-02-20 22:29:57 +03:00
|
|
|
//
|
2008-12-07 13:53:07 +03:00
|
|
|
// Now (Dec. 2008) we can assume that current Cygwin/MinGW versions
|
|
|
|
// support the TrackMouseEvent() function, but WinCE obviously doesn't
|
2016-01-28 20:38:11 +03:00
|
|
|
// support it (STR 2095). Therefore, USE_TRACK_MOUSE is enabled by
|
2008-12-07 13:53:07 +03:00
|
|
|
// default, but you can disable it by defining NO_TRACK_MOUSE.
|
2002-02-20 22:29:57 +03:00
|
|
|
//
|
2008-12-07 13:53:07 +03:00
|
|
|
// TrackMouseEvent is only used to support window leave notifications
|
|
|
|
// under Windows. It can be used to get FL_LEAVE events, when the
|
|
|
|
// mouse leaves the _main_ application window (FLTK detects subwindow
|
|
|
|
// leave events by using normal move events).
|
2002-02-20 22:29:57 +03:00
|
|
|
//
|
2008-12-07 13:53:07 +03:00
|
|
|
// Implementation note: If the mouse cursor leaves one subwindow and
|
|
|
|
// enters another window, then Windows sends a WM_MOUSEMOVE message to
|
|
|
|
// the new window before it sends a WM_MOUSELEAVE message to the old
|
|
|
|
// (just left) window. We save the current mouse window in a static variable,
|
|
|
|
// and if we get a WM_MOUSELEAVE event for the current mouse window, this
|
|
|
|
// means that the top level window has been left (otherwise we would have
|
|
|
|
// got another WM_MOUSEMOVE message before).
|
|
|
|
|
|
|
|
// #define NO_TRACK_MOUSE
|
|
|
|
|
|
|
|
#if !defined(NO_TRACK_MOUSE)
|
|
|
|
# define USE_TRACK_MOUSE
|
|
|
|
#endif // NO_TRACK_MOUSE
|
|
|
|
|
2017-12-19 15:52:57 +03:00
|
|
|
static Fl_Window *track_mouse_win = 0; // current TrackMouseEvent() window
|
2008-12-07 13:53:07 +03:00
|
|
|
|
|
|
|
// USE_CAPTURE_MOUSE_WIN - this must be defined for TrackMouseEvent to work
|
|
|
|
// correctly with subwindows - otherwise a single mouse click and release
|
|
|
|
// (without a move) would generate phantom leave events.
|
2016-01-28 20:38:11 +03:00
|
|
|
// This defines, if the current mouse window (maybe a subwindow) or the
|
2008-12-07 13:53:07 +03:00
|
|
|
// main window should get mouse events after pushing (and holding) a mouse
|
|
|
|
// button, i.e. when dragging the mouse. This is done by calling SetCapture
|
|
|
|
// (see below).
|
2002-02-20 22:29:57 +03:00
|
|
|
|
2008-12-07 13:53:07 +03:00
|
|
|
#ifdef USE_TRACK_MOUSE
|
|
|
|
#define USE_CAPTURE_MOUSE_WIN
|
|
|
|
#endif // USE_TRACK_MOUSE
|
2002-02-20 22:29:57 +03:00
|
|
|
|
1999-03-05 00:20:55 +03:00
|
|
|
//
|
|
|
|
// WM_SYNCPAINT is an "undocumented" message, which is finally defined in
|
|
|
|
// VC++ 6.0.
|
|
|
|
//
|
2002-01-01 17:14:34 +03:00
|
|
|
|
1999-03-05 00:20:55 +03:00
|
|
|
#ifndef WM_SYNCPAINT
|
|
|
|
# define WM_SYNCPAINT 0x0088
|
2002-03-07 22:22:58 +03:00
|
|
|
#endif
|
1999-03-05 00:20:55 +03:00
|
|
|
|
1999-07-22 11:27:12 +04:00
|
|
|
#ifndef WM_MOUSELEAVE
|
1999-09-16 09:34:27 +04:00
|
|
|
# define WM_MOUSELEAVE 0x02a3
|
1999-07-22 11:27:12 +04:00
|
|
|
#endif
|
|
|
|
|
2001-08-03 00:09:25 +04:00
|
|
|
#ifndef WM_MOUSEWHEEL
|
|
|
|
# define WM_MOUSEWHEEL 0x020a
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#ifndef WHEEL_DELTA
|
2020-07-01 19:03:10 +03:00
|
|
|
# define WHEEL_DELTA 120 // according to MSDN.
|
2001-08-03 00:09:25 +04:00
|
|
|
#endif
|
|
|
|
|
2017-12-19 15:52:57 +03:00
|
|
|
// This is only defined on Vista and upwards...
|
|
|
|
#ifndef WM_MOUSEHWHEEL
|
|
|
|
# define WM_MOUSEHWHEEL 0x020E
|
|
|
|
#endif
|
|
|
|
|
2014-10-08 15:57:43 +04:00
|
|
|
#ifndef SM_CXPADDEDBORDER
|
|
|
|
# define SM_CXPADDEDBORDER (92) // STR #3061
|
|
|
|
#endif
|
2002-01-01 17:14:34 +03:00
|
|
|
|
2017-12-19 15:52:57 +03:00
|
|
|
// https://msdn.microsoft.com/en-us/library/windows/desktop/dn312083(v=vs.85).aspx
|
|
|
|
#ifndef WM_DPICHANGED
|
|
|
|
# define WM_DPICHANGED 0x02E0
|
|
|
|
#endif
|
|
|
|
|
1999-12-29 06:14:41 +03:00
|
|
|
//
|
|
|
|
// WM_FLSELECT is the user-defined message that we get when one of
|
|
|
|
// the sockets has pending data, etc.
|
|
|
|
//
|
|
|
|
|
2017-12-19 15:52:57 +03:00
|
|
|
#define WM_FLSELECT (WM_APP + 1) // WM_APP is used for hide-window
|
1999-12-29 06:14:41 +03:00
|
|
|
|
2002-01-01 17:14:34 +03:00
|
|
|
|
1998-10-06 23:14:55 +04:00
|
|
|
////////////////////////////////////////////////////////////////
|
|
|
|
// interface to poll/select call:
|
|
|
|
|
1999-01-07 00:20:01 +03:00
|
|
|
// fd's are only implemented for sockets. Microsoft Windows does not
|
|
|
|
// have a unified IO system, so it doesn't support select() on files,
|
1999-12-30 20:37:05 +03:00
|
|
|
// devices, or pipes...
|
|
|
|
//
|
|
|
|
// Microsoft provides the Berkeley select() call and an asynchronous
|
2018-02-09 17:39:42 +03:00
|
|
|
// select function that sends a Windows message when the select condition
|
2009-12-24 14:40:26 +03:00
|
|
|
// exists. However, we don't try to use the asynchronous WSAAsyncSelect()
|
|
|
|
// any more for good reasons (see above).
|
|
|
|
//
|
|
|
|
// A.S. Dec 2009: We got reports that current winsock2.h files define
|
|
|
|
// POLLIN, POLLOUT, and POLLERR with conflicting values WRT what we
|
|
|
|
// used before (STR #2301). Therefore we must not use these values
|
|
|
|
// for our internal purposes, but use FL_READ, FL_WRITE, and
|
|
|
|
// FL_EXCEPT, as defined for use in Fl::add_fd().
|
|
|
|
//
|
2002-01-01 17:14:34 +03:00
|
|
|
static int maxfd = 0;
|
1999-12-30 20:37:05 +03:00
|
|
|
static fd_set fdsets[3];
|
|
|
|
|
2002-05-02 00:05:19 +04:00
|
|
|
extern IDropTarget *flIDropTarget;
|
2002-02-24 20:52:18 +03:00
|
|
|
|
1999-04-17 05:02:30 +04:00
|
|
|
static int nfds = 0;
|
|
|
|
static int fd_array_size = 0;
|
|
|
|
static struct FD {
|
|
|
|
int fd;
|
|
|
|
short events;
|
2017-12-19 15:52:57 +03:00
|
|
|
void (*cb)(FL_SOCKET, void *); // keep socket api opaque at this level to reduce multiplatform deps headaches
|
|
|
|
void *arg;
|
1999-04-17 05:02:30 +04:00
|
|
|
} *fd = 0;
|
1999-01-07 00:20:01 +03:00
|
|
|
|
2008-09-11 03:56:49 +04:00
|
|
|
extern unsigned int fl_codepage;
|
|
|
|
|
2017-12-19 15:52:57 +03:00
|
|
|
void Fl_WinAPI_System_Driver::add_fd(int n, int events, void (*cb)(FL_SOCKET, void *), void *v) {
|
|
|
|
remove_fd(n, events);
|
1999-04-17 05:02:30 +04:00
|
|
|
int i = nfds++;
|
|
|
|
if (i >= fd_array_size) {
|
2017-12-19 15:52:57 +03:00
|
|
|
fd_array_size = 2 * fd_array_size + 1;
|
|
|
|
fd = (FD *)realloc(fd, fd_array_size * sizeof(FD));
|
1999-04-17 05:02:30 +04:00
|
|
|
}
|
|
|
|
fd[i].fd = n;
|
2002-11-19 19:37:36 +03:00
|
|
|
fd[i].events = (short)events;
|
1999-04-17 05:02:30 +04:00
|
|
|
fd[i].cb = cb;
|
|
|
|
fd[i].arg = v;
|
1999-12-30 20:37:05 +03:00
|
|
|
|
2017-12-19 15:52:57 +03:00
|
|
|
if (events & FL_READ)
|
|
|
|
FD_SET((unsigned)n, &fdsets[0]);
|
|
|
|
if (events & FL_WRITE)
|
|
|
|
FD_SET((unsigned)n, &fdsets[1]);
|
|
|
|
if (events & FL_EXCEPT)
|
|
|
|
FD_SET((unsigned)n, &fdsets[2]);
|
|
|
|
if (n > maxfd)
|
|
|
|
maxfd = n;
|
1999-01-07 00:20:01 +03:00
|
|
|
}
|
1998-10-06 23:14:55 +04:00
|
|
|
|
2017-12-19 15:52:57 +03:00
|
|
|
void Fl_WinAPI_System_Driver::add_fd(int fd, void (*cb)(FL_SOCKET, void *), void *v) {
|
2016-04-22 20:13:40 +03:00
|
|
|
add_fd(fd, FL_READ, cb, v);
|
1998-10-06 23:14:55 +04:00
|
|
|
}
|
|
|
|
|
2016-04-20 01:45:22 +03:00
|
|
|
void Fl_WinAPI_System_Driver::remove_fd(int n, int events) {
|
2017-12-19 15:52:57 +03:00
|
|
|
int i, j;
|
|
|
|
for (i = j = 0; i < nfds; i++) {
|
1999-04-17 05:02:30 +04:00
|
|
|
if (fd[i].fd == n) {
|
2002-11-19 19:37:36 +03:00
|
|
|
short e = fd[i].events & ~events;
|
2017-12-19 15:52:57 +03:00
|
|
|
if (!e)
|
2020-07-01 19:03:10 +03:00
|
|
|
continue; // if no events left, delete this fd
|
1999-04-17 05:02:30 +04:00
|
|
|
fd[i].events = e;
|
|
|
|
}
|
|
|
|
// move it down in the array if necessary:
|
2017-12-19 15:52:57 +03:00
|
|
|
if (j < i) {
|
|
|
|
fd[j] = fd[i];
|
1999-04-17 05:02:30 +04:00
|
|
|
}
|
|
|
|
j++;
|
1999-01-07 00:20:01 +03:00
|
|
|
}
|
|
|
|
nfds = j;
|
1999-12-29 06:14:41 +03:00
|
|
|
|
2017-12-19 15:52:57 +03:00
|
|
|
if (events & FL_READ)
|
|
|
|
FD_CLR(unsigned(n), &fdsets[0]);
|
|
|
|
if (events & FL_WRITE)
|
|
|
|
FD_CLR(unsigned(n), &fdsets[1]);
|
|
|
|
if (events & FL_EXCEPT)
|
|
|
|
FD_CLR(unsigned(n), &fdsets[2]);
|
1999-04-17 05:02:30 +04:00
|
|
|
}
|
|
|
|
|
2016-04-20 01:45:22 +03:00
|
|
|
void Fl_WinAPI_System_Driver::remove_fd(int n) {
|
1999-04-17 05:02:30 +04:00
|
|
|
remove_fd(n, -1);
|
1999-01-07 00:20:01 +03:00
|
|
|
}
|
1998-10-06 23:14:55 +04:00
|
|
|
|
2001-12-07 01:16:49 +03:00
|
|
|
// these pointers are set by the Fl::lock() function:
|
|
|
|
static void nothing() {}
|
|
|
|
void (*fl_lock_function)() = nothing;
|
|
|
|
void (*fl_unlock_function)() = nothing;
|
|
|
|
|
2017-12-19 15:52:57 +03:00
|
|
|
static void *thread_message_;
|
|
|
|
void *Fl_WinAPI_System_Driver::thread_message() {
|
|
|
|
void *r = thread_message_;
|
2001-12-07 01:16:49 +03:00
|
|
|
thread_message_ = 0;
|
|
|
|
return r;
|
|
|
|
}
|
|
|
|
|
2014-09-15 13:17:56 +04:00
|
|
|
extern int fl_send_system_handlers(void *e);
|
|
|
|
|
1998-10-06 23:14:55 +04:00
|
|
|
MSG fl_msg;
|
|
|
|
|
2015-04-23 13:11:23 +03:00
|
|
|
// A local helper function to flush any pending callback requests
|
|
|
|
// from the awake ring-buffer
|
|
|
|
static void process_awake_handler_requests(void) {
|
|
|
|
Fl_Awake_Handler func;
|
|
|
|
void *data;
|
|
|
|
while (Fl::get_awake_handler_(func, data) == 0) {
|
|
|
|
func(data);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2000-06-18 04:38:41 +04:00
|
|
|
// This is never called with time_to_wait < 0.0.
|
|
|
|
// It *should* return negative on error, 0 if nothing happens before
|
2016-09-20 15:58:51 +03:00
|
|
|
// timeout, and >0 if any callbacks were done. This version
|
|
|
|
// always returns 1.
|
2022-02-03 09:03:26 +03:00
|
|
|
double Fl_WinAPI_System_Driver::wait(double time_to_wait) {
|
2016-09-20 15:58:51 +03:00
|
|
|
|
2022-03-20 10:09:34 +03:00
|
|
|
time_to_wait = Fl_System_Driver::wait(time_to_wait);
|
|
|
|
|
1999-05-09 18:49:14 +04:00
|
|
|
int have_message = 0;
|
|
|
|
|
1999-12-30 20:37:05 +03:00
|
|
|
if (nfds) {
|
2018-02-09 17:39:42 +03:00
|
|
|
// For Windows we need to poll for socket input FIRST, since
|
1999-12-30 20:37:05 +03:00
|
|
|
// the event queue is not something we can select() on...
|
|
|
|
timeval t;
|
|
|
|
t.tv_sec = 0;
|
|
|
|
t.tv_usec = 0;
|
|
|
|
|
|
|
|
fd_set fdt[3];
|
2008-08-26 12:24:54 +04:00
|
|
|
memcpy(fdt, fdsets, sizeof fdt); // one shot faster fdt init
|
2017-12-19 15:52:57 +03:00
|
|
|
if (get_wsock_mod() && s_wsock_select(maxfd + 1, &fdt[0], &fdt[1], &fdt[2], &t)) {
|
1999-12-30 20:37:05 +03:00
|
|
|
// We got something - do the callback!
|
2017-12-19 15:52:57 +03:00
|
|
|
for (int i = 0; i < nfds; i++) {
|
2020-07-01 19:03:10 +03:00
|
|
|
SOCKET f = fd[i].fd;
|
|
|
|
short revents = 0;
|
|
|
|
if (fl_wsk_fd_is_set(f, &fdt[0]))
|
|
|
|
revents |= FL_READ;
|
|
|
|
if (fl_wsk_fd_is_set(f, &fdt[1]))
|
|
|
|
revents |= FL_WRITE;
|
|
|
|
if (fl_wsk_fd_is_set(f, &fdt[2]))
|
|
|
|
revents |= FL_EXCEPT;
|
|
|
|
if (fd[i].events & revents)
|
|
|
|
fd[i].cb(f, fd[i].arg);
|
1999-12-30 20:37:05 +03:00
|
|
|
}
|
2000-06-18 04:38:41 +04:00
|
|
|
time_to_wait = 0.0; // just peek for any messages
|
|
|
|
} else {
|
|
|
|
// we need to check them periodically, so set a short timeout:
|
2017-12-19 15:52:57 +03:00
|
|
|
if (time_to_wait > .001)
|
2020-07-01 19:03:10 +03:00
|
|
|
time_to_wait = .001;
|
1999-12-30 20:37:05 +03:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2016-01-28 20:38:11 +03:00
|
|
|
if (Fl::idle || Fl::damage())
|
2005-12-16 14:34:04 +03:00
|
|
|
time_to_wait = 0.0;
|
2005-12-14 04:25:21 +03:00
|
|
|
|
2007-02-23 22:27:43 +03:00
|
|
|
// if there are no more windows and this timer is set
|
2009-02-21 13:01:57 +03:00
|
|
|
// to FOREVER, continue through or look up indefinitely
|
2017-12-19 15:52:57 +03:00
|
|
|
if (!Fl::first_window() && time_to_wait == 1e20)
|
2007-02-23 22:27:43 +03:00
|
|
|
time_to_wait = 0.0;
|
|
|
|
|
2001-12-07 01:16:49 +03:00
|
|
|
fl_unlock_function();
|
|
|
|
|
2005-10-13 00:19:30 +04:00
|
|
|
time_to_wait = (time_to_wait > 10000 ? 10000 : time_to_wait);
|
2022-02-01 00:27:17 +03:00
|
|
|
|
|
|
|
time_to_wait = Fl_Timeout::time_to_wait(time_to_wait);
|
|
|
|
|
2017-12-19 15:52:57 +03:00
|
|
|
int t_msec = (int)(time_to_wait * 1000.0 + 0.5);
|
2006-05-05 18:36:58 +04:00
|
|
|
MsgWaitForMultipleObjects(0, NULL, FALSE, t_msec, QS_ALLINPUT);
|
1999-01-07 00:20:01 +03:00
|
|
|
|
2001-12-07 01:16:49 +03:00
|
|
|
fl_lock_function();
|
|
|
|
|
2000-06-18 04:38:41 +04:00
|
|
|
// Execute the message we got, and all other pending messages:
|
2009-02-21 13:01:57 +03:00
|
|
|
// have_message = PeekMessage(&fl_msg, NULL, 0, 0, PM_REMOVE);
|
2014-09-15 13:14:07 +04:00
|
|
|
while ((have_message = PeekMessageW(&fl_msg, NULL, 0, 0, PM_REMOVE)) > 0) {
|
2014-09-15 13:17:56 +04:00
|
|
|
if (fl_send_system_handlers(&fl_msg))
|
|
|
|
continue;
|
|
|
|
|
2014-09-15 13:14:07 +04:00
|
|
|
// Let applications treat WM_QUIT identical to SIGTERM on *nix
|
|
|
|
if (fl_msg.message == WM_QUIT)
|
|
|
|
raise(SIGTERM);
|
|
|
|
|
|
|
|
if (fl_msg.message == fl_wake_msg) {
|
|
|
|
// Used for awaking wait() from another thread
|
2017-12-19 15:52:57 +03:00
|
|
|
thread_message_ = (void *)fl_msg.wParam;
|
2015-04-23 13:11:23 +03:00
|
|
|
process_awake_handler_requests();
|
2005-10-13 00:19:30 +04:00
|
|
|
}
|
2014-09-15 13:14:07 +04:00
|
|
|
|
|
|
|
TranslateMessage(&fl_msg);
|
|
|
|
DispatchMessageW(&fl_msg);
|
2005-10-13 00:19:30 +04:00
|
|
|
}
|
2015-04-23 13:11:23 +03:00
|
|
|
|
|
|
|
// The following conditional test:
|
|
|
|
// (Fl::awake_ring_head_ != Fl::awake_ring_tail_)
|
|
|
|
// is a workaround / fix for STR #3143. This works, but a better solution
|
|
|
|
// would be to understand why the PostThreadMessage() messages are not
|
|
|
|
// seen by the main window if it is being dragged/ resized at the time.
|
|
|
|
// If a worker thread posts an awake callback to the ring buffer
|
|
|
|
// whilst the main window is unresponsive (if a drag or resize operation
|
|
|
|
// is in progress) we may miss the PostThreadMessage(). So here, we check if
|
|
|
|
// there is anything pending in the awake ring buffer and if so process
|
|
|
|
// it. This is not strictly thread safe (for speed it compares the head
|
|
|
|
// and tail indices without first locking the ring buffer) but is intended
|
|
|
|
// only as a fall-back recovery mechanism if the awake processing stalls.
|
|
|
|
// If the test erroneously returns true (may happen if we test the indices
|
|
|
|
// whilst they are being modified) we will call process_awake_handler_requests()
|
|
|
|
// unnecessarily, but this has no harmful consequences so is safe to do.
|
|
|
|
// Note also that if we miss the PostThreadMessage(), then thread_message_
|
|
|
|
// will not be updated, so this is not a perfect solution, but it does
|
|
|
|
// recover and process any pending awake callbacks.
|
|
|
|
// Normally the ring buffer head and tail indices will match and this
|
|
|
|
// comparison will do nothing. Addresses STR #3143
|
|
|
|
if (Fl::awake_ring_head_ != Fl::awake_ring_tail_) {
|
|
|
|
process_awake_handler_requests();
|
|
|
|
}
|
|
|
|
|
2005-11-04 12:16:16 +03:00
|
|
|
Fl::flush();
|
2001-12-07 01:16:49 +03:00
|
|
|
|
2000-06-18 04:38:41 +04:00
|
|
|
// This should return 0 if only timer events were handled:
|
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
|
2022-02-03 09:03:26 +03:00
|
|
|
// just like Fl_WinAPI_System_Driver::wait(0.0) except no callbacks are done:
|
|
|
|
int Fl_WinAPI_System_Driver::ready() {
|
2017-12-19 15:52:57 +03:00
|
|
|
if (PeekMessage(&fl_msg, NULL, 0, 0, PM_NOREMOVE))
|
|
|
|
return 1;
|
|
|
|
if (!nfds)
|
|
|
|
return 0;
|
2000-06-18 04:38:41 +04:00
|
|
|
timeval t;
|
|
|
|
t.tv_sec = 0;
|
|
|
|
t.tv_usec = 0;
|
|
|
|
fd_set fdt[3];
|
2008-08-26 12:24:54 +04:00
|
|
|
memcpy(fdt, fdsets, sizeof fdt);
|
2017-12-19 15:52:57 +03:00
|
|
|
return get_wsock_mod() ? s_wsock_select(0, &fdt[0], &fdt[1], &fdt[2], &t) : 0;
|
1998-10-06 23:14:55 +04:00
|
|
|
}
|
|
|
|
|
2017-05-17 14:54:18 +03:00
|
|
|
|
2017-06-01 17:05:47 +03:00
|
|
|
void Fl_WinAPI_Screen_Driver::open_display_platform() {
|
2014-09-15 13:35:05 +04:00
|
|
|
static char beenHereDoneThat = 0;
|
|
|
|
|
|
|
|
if (beenHereDoneThat)
|
|
|
|
return;
|
|
|
|
|
|
|
|
beenHereDoneThat = 1;
|
2021-12-11 13:39:48 +03:00
|
|
|
// test whether DpiAwareness has been set before via a manifest
|
|
|
|
/*enum PROCESS_DPI_AWARENESS { // in shellscalingapi.h from Window 8.1
|
|
|
|
PROCESS_DPI_UNAWARE,
|
|
|
|
PROCESS_SYSTEM_DPI_AWARE,
|
|
|
|
PROCESS_PER_MONITOR_DPI_AWARE
|
|
|
|
};*/
|
|
|
|
typedef HRESULT(WINAPI * GetProcessDpiAwareness_type)(HANDLE, int *);
|
|
|
|
GetProcessDpiAwareness_type fl_GetProcessDpiAwareness =
|
|
|
|
(GetProcessDpiAwareness_type)GetProcAddress(LoadLibrary("Shcore.DLL"), "GetProcessDpiAwareness");
|
|
|
|
int awareness;
|
|
|
|
if (!fl_GetProcessDpiAwareness || fl_GetProcessDpiAwareness(NULL, &awareness) != S_OK) {
|
|
|
|
awareness = 0; //corresponds to PROCESS_DPI_UNAWARE;
|
2019-06-16 13:00:38 +03:00
|
|
|
}
|
2021-12-11 18:39:11 +03:00
|
|
|
if (awareness == 2 /*PROCESS_PER_MONITOR_DPI_AWARE*/) is_dpi_aware = true;
|
2021-12-11 13:39:48 +03:00
|
|
|
if (awareness == 0 /*PROCESS_DPI_UNAWARE*/) { // DpiAwareness has not been set via a manifest
|
|
|
|
typedef void *fl_DPI_AWARENESS_CONTEXT;
|
|
|
|
typedef BOOL(WINAPI * SetProcessDpiAwarenessContext_type)(fl_DPI_AWARENESS_CONTEXT);
|
|
|
|
SetProcessDpiAwarenessContext_type fl_SetProcessDpiAwarenessContext =
|
|
|
|
(SetProcessDpiAwarenessContext_type)GetProcAddress(LoadLibrary("User32.DLL"), "SetProcessDpiAwarenessContext");
|
|
|
|
if (fl_SetProcessDpiAwarenessContext) {
|
|
|
|
const fl_DPI_AWARENESS_CONTEXT fl_DPI_AWARENESS_CONTEXT_PER_MONITOR_AWARE_V2 = (fl_DPI_AWARENESS_CONTEXT)(-4);
|
|
|
|
is_dpi_aware = fl_SetProcessDpiAwarenessContext(fl_DPI_AWARENESS_CONTEXT_PER_MONITOR_AWARE_V2);
|
|
|
|
}
|
|
|
|
if (!is_dpi_aware) {
|
|
|
|
typedef HRESULT(WINAPI * SetProcessDpiAwareness_type)(int);
|
|
|
|
SetProcessDpiAwareness_type fl_SetProcessDpiAwareness =
|
|
|
|
(SetProcessDpiAwareness_type)GetProcAddress(LoadLibrary("Shcore.DLL"), "SetProcessDpiAwareness");
|
|
|
|
if (fl_SetProcessDpiAwareness) {
|
|
|
|
const int fl_PROCESS_PER_MONITOR_DPI_AWARE = 2;
|
|
|
|
if (fl_SetProcessDpiAwareness(fl_PROCESS_PER_MONITOR_DPI_AWARE) == S_OK) is_dpi_aware = true;
|
|
|
|
}
|
2018-02-18 19:58:38 +03:00
|
|
|
}
|
2017-05-17 14:54:18 +03:00
|
|
|
}
|
2014-09-15 13:35:05 +04:00
|
|
|
OleInitialize(0L);
|
|
|
|
get_imm_module();
|
2021-11-14 17:17:03 +03:00
|
|
|
fl_create_print_window();
|
2014-09-15 13:35:05 +04:00
|
|
|
}
|
|
|
|
|
2017-05-17 14:54:18 +03:00
|
|
|
|
2019-03-06 13:10:37 +03:00
|
|
|
void Fl_WinAPI_Screen_Driver::desktop_scale_factor() {
|
2017-12-19 15:52:57 +03:00
|
|
|
typedef HRESULT(WINAPI * GetDpiForMonitor_type)(HMONITOR, int, UINT *, UINT *);
|
2021-02-15 23:07:24 +03:00
|
|
|
typedef HMONITOR(WINAPI * MonitorFromRect_type)(LPCRECT, DWORD);
|
2017-05-17 14:54:18 +03:00
|
|
|
GetDpiForMonitor_type fl_GetDpiForMonitor = NULL;
|
2021-02-15 23:07:24 +03:00
|
|
|
MonitorFromRect_type fl_MonitorFromRect = NULL;
|
|
|
|
if (is_dpi_aware) {
|
|
|
|
fl_GetDpiForMonitor = (GetDpiForMonitor_type)GetProcAddress(LoadLibrary("Shcore.DLL"), "GetDpiForMonitor");
|
|
|
|
if (fl_GetDpiForMonitor)
|
|
|
|
fl_MonitorFromRect = (MonitorFromRect_type)GetProcAddress(LoadLibrary("User32.DLL"), "MonitorFromRect");
|
|
|
|
}
|
2019-06-16 13:00:38 +03:00
|
|
|
for (int ns = 0; ns < screen_count(); ns++) {
|
|
|
|
UINT dpiX, dpiY;
|
2021-02-15 23:07:24 +03:00
|
|
|
HRESULT r = E_INVALIDARG;
|
|
|
|
if (fl_GetDpiForMonitor && fl_MonitorFromRect) {
|
|
|
|
HMONITOR hm = fl_MonitorFromRect(&screens[ns], MONITOR_DEFAULTTONEAREST);
|
|
|
|
r = fl_GetDpiForMonitor(hm, 0, &dpiX, &dpiY);
|
|
|
|
}
|
2019-06-16 13:00:38 +03:00
|
|
|
if (r != S_OK) { dpiX = dpiY = 96; }
|
2021-02-13 23:12:52 +03:00
|
|
|
dpi[ns][0] = float(dpiX);
|
|
|
|
dpi[ns][1] = float(dpiY);
|
|
|
|
scale(ns, dpiX / 96.f);
|
2021-11-14 17:17:03 +03:00
|
|
|
// fprintf(LOG, "desktop_scale_factor ns=%d factor=%.2f dpi=%.1f\n", ns, scale(ns), dpi[ns][0]);
|
2017-05-17 14:54:18 +03:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2014-09-15 13:35:05 +04:00
|
|
|
class Fl_Win32_At_Exit {
|
|
|
|
public:
|
2017-12-19 15:52:57 +03:00
|
|
|
Fl_Win32_At_Exit() {}
|
2014-09-15 13:35:05 +04:00
|
|
|
~Fl_Win32_At_Exit() {
|
2018-02-09 17:39:42 +03:00
|
|
|
fl_free_fonts(); // do some Windows cleanup
|
2014-09-15 13:35:05 +04:00
|
|
|
fl_cleanup_pens();
|
|
|
|
OleUninitialize();
|
2018-08-06 19:51:02 +03:00
|
|
|
if (fl_graphics_driver) fl_brush_action(1);
|
2014-09-15 13:35:05 +04:00
|
|
|
fl_cleanup_dc_list();
|
2014-10-09 16:52:05 +04:00
|
|
|
// This is actually too late in the cleanup process to remove the
|
|
|
|
// clipboard notifications, but we have no earlier hook so we try
|
|
|
|
// to work around it anyway.
|
|
|
|
if (clipboard_wnd != NULL)
|
|
|
|
fl_clipboard_notify_untarget(clipboard_wnd);
|
2021-02-26 20:00:07 +03:00
|
|
|
#if USE_GDIPLUS
|
|
|
|
Fl_GDIplus_Graphics_Driver::shutdown();
|
|
|
|
#endif
|
2014-09-15 13:35:05 +04:00
|
|
|
}
|
|
|
|
};
|
|
|
|
static Fl_Win32_At_Exit win32_at_exit;
|
|
|
|
|
2014-09-15 13:44:35 +04:00
|
|
|
static char im_enabled = 1;
|
|
|
|
|
2016-04-15 18:12:22 +03:00
|
|
|
void Fl_WinAPI_Screen_Driver::enable_im() {
|
2016-04-15 18:36:10 +03:00
|
|
|
open_display();
|
2014-09-15 13:44:35 +04:00
|
|
|
|
2017-12-19 15:52:57 +03:00
|
|
|
Fl_X *i = Fl_X::first;
|
2014-09-15 13:44:35 +04:00
|
|
|
while (i) {
|
2022-03-15 08:42:06 +03:00
|
|
|
flImmAssociateContextEx((HWND)i->xid, 0, IACE_DEFAULT);
|
2014-09-15 13:44:35 +04:00
|
|
|
i = i->next;
|
|
|
|
}
|
|
|
|
|
|
|
|
im_enabled = 1;
|
|
|
|
}
|
|
|
|
|
2016-04-15 18:12:22 +03:00
|
|
|
void Fl_WinAPI_Screen_Driver::disable_im() {
|
2016-04-15 18:36:10 +03:00
|
|
|
open_display();
|
2014-09-15 13:44:35 +04:00
|
|
|
|
2017-12-19 15:52:57 +03:00
|
|
|
Fl_X *i = Fl_X::first;
|
2014-09-15 13:44:35 +04:00
|
|
|
while (i) {
|
2022-03-15 08:42:06 +03:00
|
|
|
flImmAssociateContextEx((HWND)i->xid, 0, 0);
|
2014-09-15 13:44:35 +04:00
|
|
|
i = i->next;
|
|
|
|
}
|
|
|
|
|
|
|
|
im_enabled = 0;
|
|
|
|
}
|
|
|
|
|
2022-06-19 11:23:24 +03:00
|
|
|
void Fl_WinAPI_Screen_Driver::set_spot(int font, int size, int X, int Y, int W, int H, Fl_Window *win)
|
|
|
|
{
|
|
|
|
if (!win) return;
|
|
|
|
Fl_Window* tw = win->top_window();
|
|
|
|
|
|
|
|
if (!tw->shown())
|
|
|
|
return;
|
|
|
|
|
|
|
|
HIMC himc = flImmGetContext(fl_xid(tw));
|
|
|
|
|
|
|
|
if (himc) {
|
|
|
|
COMPOSITIONFORM cfs;
|
|
|
|
float s = Fl_Graphics_Driver::default_driver().scale();
|
|
|
|
cfs.dwStyle = CFS_POINT;
|
|
|
|
cfs.ptCurrentPos.x = int(X * s);
|
|
|
|
cfs.ptCurrentPos.y = int(Y * s) - int(tw->labelsize() * s);
|
|
|
|
// Attempt to have temporary text entered by input method use scaled font.
|
|
|
|
// Does good, but still not always effective.
|
|
|
|
Fl_GDI_Font_Descriptor *desc = (Fl_GDI_Font_Descriptor*)Fl_Graphics_Driver::default_driver().font_descriptor();
|
|
|
|
if (desc) SelectObject((HDC)Fl_Graphics_Driver::default_driver().gc(), desc->fid);
|
|
|
|
MapWindowPoints(fl_xid(win), fl_xid(tw), &cfs.ptCurrentPos, 1);
|
|
|
|
flImmSetCompositionWindow(himc, &cfs);
|
|
|
|
flImmReleaseContext(fl_xid(tw), himc);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
1998-10-06 23:14:55 +04:00
|
|
|
////////////////////////////////////////////////////////////////
|
|
|
|
|
2017-06-18 19:01:53 +03:00
|
|
|
int Fl_WinAPI_Screen_Driver::get_mouse_unscaled(int &mx, int &my) {
|
1998-10-06 23:14:55 +04:00
|
|
|
POINT p;
|
|
|
|
GetCursorPos(&p);
|
2017-12-19 15:52:57 +03:00
|
|
|
mx = p.x;
|
|
|
|
my = p.y;
|
2017-07-30 19:21:57 +03:00
|
|
|
int screen = screen_num_unscaled(mx, my);
|
|
|
|
return screen >= 0 ? screen : 0;
|
2017-06-18 19:01:53 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
int Fl_WinAPI_Screen_Driver::get_mouse(int &x, int &y) {
|
|
|
|
int n = get_mouse_unscaled(x, y);
|
|
|
|
float s = scale(n);
|
2021-02-13 23:12:52 +03:00
|
|
|
x = int(x / s);
|
|
|
|
y = int(y / s);
|
2017-06-18 19:01:53 +03:00
|
|
|
return n;
|
1998-10-06 23:14:55 +04:00
|
|
|
}
|
|
|
|
|
2002-03-07 22:22:58 +03:00
|
|
|
////////////////////////////////////////////////////////////////
|
|
|
|
// code used for selections:
|
|
|
|
|
2002-03-25 22:17:05 +03:00
|
|
|
char *fl_selection_buffer[2];
|
|
|
|
int fl_selection_length[2];
|
|
|
|
int fl_selection_buffer_length[2];
|
|
|
|
char fl_i_own_selection[2];
|
2002-03-07 22:22:58 +03:00
|
|
|
|
2017-12-19 15:52:57 +03:00
|
|
|
UINT fl_get_lcid_codepage(LCID id) {
|
2009-02-21 13:18:47 +03:00
|
|
|
char buf[8];
|
|
|
|
buf[GetLocaleInfo(id, LOCALE_IDEFAULTANSICODEPAGE, buf, 8)] = 0;
|
|
|
|
return atol(buf);
|
2008-09-11 03:56:49 +04:00
|
|
|
}
|
|
|
|
|
2005-08-08 04:57:00 +04:00
|
|
|
// Convert \n -> \r\n
|
|
|
|
class Lf2CrlfConvert {
|
|
|
|
char *out;
|
|
|
|
int outlen;
|
2017-12-19 15:52:57 +03:00
|
|
|
|
2005-08-08 04:57:00 +04:00
|
|
|
public:
|
2005-08-22 02:05:48 +04:00
|
|
|
Lf2CrlfConvert(const char *in, int inlen) {
|
2005-08-08 04:57:00 +04:00
|
|
|
outlen = 0;
|
|
|
|
const char *i;
|
|
|
|
char *o;
|
2005-08-22 02:05:48 +04:00
|
|
|
int lencount;
|
2005-08-08 04:57:00 +04:00
|
|
|
// Predict size of \r\n conversion buffer
|
2016-09-01 13:35:21 +03:00
|
|
|
for (i = in, lencount = inlen; lencount > 0; lencount--) {
|
2017-12-19 15:52:57 +03:00
|
|
|
if (*i == '\r' && *(i + 1) == '\n' && lencount >= 2) { // leave \r\n untranslated
|
2020-07-01 19:03:10 +03:00
|
|
|
i += 2;
|
|
|
|
outlen += 2;
|
|
|
|
lencount--;
|
2017-12-19 15:52:57 +03:00
|
|
|
} else if (*i == '\n') { // \n by itself? leave room to insert \r
|
2020-07-01 19:03:10 +03:00
|
|
|
i++;
|
|
|
|
outlen += 2;
|
2017-12-19 15:52:57 +03:00
|
|
|
} else {
|
2020-07-01 19:03:10 +03:00
|
|
|
++i;
|
|
|
|
++outlen;
|
2017-12-19 15:52:57 +03:00
|
|
|
}
|
2005-08-08 04:57:00 +04:00
|
|
|
}
|
|
|
|
// Alloc conversion buffer + NULL
|
2017-12-19 15:52:57 +03:00
|
|
|
out = new char[outlen + 1];
|
2005-08-08 04:57:00 +04:00
|
|
|
// Handle \n -> \r\n conversion
|
2017-12-19 15:52:57 +03:00
|
|
|
for (i = in, o = out, lencount = inlen; lencount > 0; lencount--) {
|
|
|
|
if (*i == '\r' && *(i + 1) == '\n' && lencount >= 2) { // leave \r\n untranslated
|
2020-07-01 19:03:10 +03:00
|
|
|
*o++ = *i++;
|
|
|
|
*o++ = *i++;
|
|
|
|
lencount--;
|
2017-12-19 15:52:57 +03:00
|
|
|
} else if (*i == '\n') { // \n by itself? insert \r
|
2020-07-01 19:03:10 +03:00
|
|
|
*o++ = '\r';
|
|
|
|
*o++ = *i++;
|
2017-12-19 15:52:57 +03:00
|
|
|
} else {
|
2020-07-01 19:03:10 +03:00
|
|
|
*o++ = *i++;
|
2017-12-19 15:52:57 +03:00
|
|
|
}
|
2005-08-08 04:57:00 +04:00
|
|
|
}
|
|
|
|
*o++ = 0;
|
|
|
|
}
|
|
|
|
~Lf2CrlfConvert() {
|
|
|
|
delete[] out;
|
|
|
|
}
|
2017-12-19 15:52:57 +03:00
|
|
|
int GetLength() const { return (outlen); }
|
|
|
|
const char *GetValue() const { return (out); }
|
2005-08-08 04:57:00 +04:00
|
|
|
};
|
|
|
|
|
2013-09-11 15:11:22 +04:00
|
|
|
void fl_update_clipboard(void) {
|
|
|
|
Fl_Window *w1 = Fl::first_window();
|
|
|
|
if (!w1)
|
|
|
|
return;
|
|
|
|
|
|
|
|
HWND hwnd = fl_xid(w1);
|
|
|
|
|
|
|
|
if (!OpenClipboard(hwnd))
|
|
|
|
return;
|
|
|
|
|
|
|
|
EmptyClipboard();
|
|
|
|
|
2017-12-19 15:52:57 +03:00
|
|
|
int utf16_len = fl_utf8toUtf16(fl_selection_buffer[1], fl_selection_length[1], 0, 0);
|
2013-09-11 15:11:22 +04:00
|
|
|
|
|
|
|
HGLOBAL hMem = GlobalAlloc(GHND, utf16_len * 2 + 2); // moveable and zero'ed mem alloc.
|
|
|
|
LPVOID memLock = GlobalLock(hMem);
|
|
|
|
|
2017-12-19 15:52:57 +03:00
|
|
|
fl_utf8toUtf16(fl_selection_buffer[1], fl_selection_length[1], (unsigned short *)memLock, utf16_len + 1);
|
2013-09-11 15:11:22 +04:00
|
|
|
|
|
|
|
GlobalUnlock(hMem);
|
|
|
|
SetClipboardData(CF_UNICODETEXT, hMem);
|
|
|
|
|
|
|
|
CloseClipboard();
|
|
|
|
|
|
|
|
// In case Windows managed to lob of a WM_DESTROYCLIPBOARD during
|
|
|
|
// the above.
|
|
|
|
fl_i_own_selection[1] = 1;
|
|
|
|
}
|
|
|
|
|
2002-03-07 22:22:58 +03:00
|
|
|
// call this when you create a selection:
|
2022-02-03 09:03:26 +03:00
|
|
|
void Fl_WinAPI_Screen_Driver::copy(const char *stuff, int len, int clipboard, const char *type) {
|
2017-12-19 15:52:57 +03:00
|
|
|
if (!stuff || len < 0)
|
|
|
|
return;
|
2015-05-18 12:10:06 +03:00
|
|
|
if (clipboard >= 2)
|
|
|
|
clipboard = 1; // Only on X11 do multiple clipboards make sense.
|
2005-08-08 04:57:00 +04:00
|
|
|
|
|
|
|
// Convert \n -> \r\n (for old apps like Notepad, DOS)
|
2005-08-22 02:05:48 +04:00
|
|
|
Lf2CrlfConvert buf(stuff, len);
|
2005-08-08 04:57:00 +04:00
|
|
|
len = buf.GetLength();
|
|
|
|
stuff = buf.GetValue();
|
|
|
|
|
2017-12-19 15:52:57 +03:00
|
|
|
if (len + 1 > fl_selection_buffer_length[clipboard]) {
|
2002-03-25 22:17:05 +03:00
|
|
|
delete[] fl_selection_buffer[clipboard];
|
2017-12-19 15:52:57 +03:00
|
|
|
fl_selection_buffer[clipboard] = new char[len + 100];
|
|
|
|
fl_selection_buffer_length[clipboard] = len + 100;
|
2002-03-07 22:22:58 +03:00
|
|
|
}
|
2002-03-25 22:17:05 +03:00
|
|
|
memcpy(fl_selection_buffer[clipboard], stuff, len);
|
|
|
|
fl_selection_buffer[clipboard][len] = 0; // needed for direct paste
|
|
|
|
fl_selection_length[clipboard] = len;
|
2013-09-11 15:11:22 +04:00
|
|
|
fl_i_own_selection[clipboard] = 1;
|
|
|
|
if (clipboard)
|
|
|
|
fl_update_clipboard();
|
2002-03-07 22:22:58 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
// Call this when a "paste" operation happens:
|
2022-02-03 09:03:26 +03:00
|
|
|
void Fl_WinAPI_Screen_Driver::paste(Fl_Widget &receiver, int clipboard, const char *type) {
|
2014-05-23 20:47:21 +04:00
|
|
|
if (!clipboard || (fl_i_own_selection[clipboard] && strcmp(type, Fl::clipboard_plain_text) == 0)) {
|
2002-03-07 22:22:58 +03:00
|
|
|
// We already have it, do it quickly without window server.
|
|
|
|
// Notice that the text is clobbered if set_selection is
|
|
|
|
// called in response to FL_PASTE!
|
2005-09-05 14:09:14 +04:00
|
|
|
char *i = fl_selection_buffer[clipboard];
|
2017-12-19 15:52:57 +03:00
|
|
|
if (i == 0L) {
|
2016-01-28 20:38:11 +03:00
|
|
|
Fl::e_text = 0;
|
2005-09-05 14:09:14 +04:00
|
|
|
return;
|
|
|
|
}
|
2017-12-19 15:52:57 +03:00
|
|
|
char *clip_text = new char[fl_selection_length[clipboard] + 1];
|
2017-08-05 17:25:09 +03:00
|
|
|
char *o = clip_text;
|
2014-05-23 20:47:21 +04:00
|
|
|
while (*i) { // Convert \r\n -> \n
|
2017-12-19 15:52:57 +03:00
|
|
|
if (*i == '\r' && *(i + 1) == '\n')
|
2018-04-29 20:28:57 +03:00
|
|
|
i++;
|
2017-12-19 15:52:57 +03:00
|
|
|
else
|
2018-04-29 20:28:57 +03:00
|
|
|
*o++ = *i++;
|
2005-08-08 04:57:00 +04:00
|
|
|
}
|
|
|
|
*o = 0;
|
2017-08-05 17:25:09 +03:00
|
|
|
Fl::e_text = clip_text;
|
2017-12-19 15:52:57 +03:00
|
|
|
Fl::e_length = (int)(o - Fl::e_text);
|
2014-05-23 20:47:21 +04:00
|
|
|
Fl::e_clipboard_type = Fl::clipboard_plain_text;
|
2017-08-05 17:25:09 +03:00
|
|
|
receiver.handle(FL_PASTE); // this may change Fl::e_text
|
2017-12-19 15:52:57 +03:00
|
|
|
delete[] clip_text;
|
2005-08-08 04:57:00 +04:00
|
|
|
Fl::e_text = 0;
|
2014-05-23 20:47:21 +04:00
|
|
|
} else if (clipboard) {
|
|
|
|
HANDLE h;
|
2017-12-19 15:52:57 +03:00
|
|
|
if (!OpenClipboard(NULL))
|
|
|
|
return;
|
2014-05-23 20:47:21 +04:00
|
|
|
if (strcmp(type, Fl::clipboard_plain_text) == 0) { // we want plain text from clipboard
|
2017-12-19 15:52:57 +03:00
|
|
|
if ((h = GetClipboardData(CF_UNICODETEXT))) { // there's text in the clipboard
|
2018-04-29 20:28:57 +03:00
|
|
|
wchar_t *memLock = (wchar_t *)GlobalLock(h);
|
|
|
|
size_t utf16_len = wcslen(memLock);
|
|
|
|
char *clip_text = new char[utf16_len * 4 + 1];
|
|
|
|
unsigned utf8_len = fl_utf8fromwc(clip_text, (unsigned)(utf16_len * 4), memLock, (unsigned)utf16_len);
|
|
|
|
*(clip_text + utf8_len) = 0;
|
|
|
|
GlobalUnlock(h);
|
|
|
|
LPSTR a, b;
|
|
|
|
a = b = clip_text;
|
|
|
|
while (*a) { // strip the CRLF pairs ($%$#@^)
|
|
|
|
if (*a == '\r' && a[1] == '\n')
|
|
|
|
a++;
|
|
|
|
else
|
|
|
|
*b++ = *a++;
|
|
|
|
}
|
|
|
|
*b = 0;
|
|
|
|
Fl::e_text = clip_text;
|
|
|
|
Fl::e_length = (int)(b - Fl::e_text);
|
|
|
|
Fl::e_clipboard_type = Fl::clipboard_plain_text; // indicates that the paste event is for plain UTF8 text
|
|
|
|
receiver.handle(FL_PASTE); // send the FL_PASTE event to the widget. May change Fl::e_text
|
|
|
|
delete[] clip_text;
|
|
|
|
Fl::e_text = 0;
|
2014-05-23 20:47:21 +04:00
|
|
|
}
|
2017-12-19 15:52:57 +03:00
|
|
|
} else if (strcmp(type, Fl::clipboard_image) == 0) { // we want an image from clipboard
|
|
|
|
uchar *rgb = NULL;
|
|
|
|
Fl_RGB_Image *image = NULL;
|
|
|
|
int width = 0, height = 0, depth = 0;
|
|
|
|
if ((h = GetClipboardData(CF_DIB))) { // if there's a DIB in clipboard
|
2018-04-29 20:28:57 +03:00
|
|
|
LPBITMAPINFO lpBI = (LPBITMAPINFO)GlobalLock(h);
|
|
|
|
width = lpBI->bmiHeader.biWidth; // bitmap width & height
|
2018-04-29 22:04:24 +03:00
|
|
|
height = lpBI->bmiHeader.biHeight; // is < 0 for top-down DIB
|
2018-04-29 20:28:57 +03:00
|
|
|
if ((lpBI->bmiHeader.biBitCount == 24 || lpBI->bmiHeader.biBitCount == 32) &&
|
|
|
|
lpBI->bmiHeader.biCompression == BI_RGB &&
|
|
|
|
lpBI->bmiHeader.biClrUsed == 0) { // direct use of the DIB data if it's RGB or RGBA
|
|
|
|
int linewidth; // row length
|
|
|
|
depth = lpBI->bmiHeader.biBitCount / 8; // 3 or 4
|
|
|
|
if (depth == 3)
|
|
|
|
linewidth = 4 * ((3 * width + 3) / 4); // row length: series of groups of 3 bytes, rounded to multiple of 4 bytes
|
|
|
|
else
|
|
|
|
linewidth = 4 * width;
|
2018-04-29 22:04:24 +03:00
|
|
|
rgb = new uchar[width * abs(height) * depth]; // will hold the image data
|
2018-04-29 20:28:57 +03:00
|
|
|
uchar *p = rgb, *r, rr, gg, bb;
|
2018-04-29 22:04:24 +03:00
|
|
|
int step = (height > 0 ? -1 : +1);
|
|
|
|
int from = (height > 0 ? height-1 : 0);
|
|
|
|
int to = (height > 0 ? 0 : -height-1);
|
|
|
|
for (int i = from; (height > 0 ? i>=to : i <=to); i += step) {// for each row, from last to first
|
2018-04-29 20:28:57 +03:00
|
|
|
r = (uchar *)(lpBI->bmiColors) + i * linewidth; // beginning of pixel data for the ith row
|
|
|
|
for (int j = 0; j < width; j++) { // for each pixel in a row
|
|
|
|
bb = *r++; // BGR is in DIB
|
|
|
|
gg = *r++;
|
|
|
|
rr = *r++;
|
|
|
|
*p++ = rr; // we want RGB
|
|
|
|
*p++ = gg;
|
|
|
|
*p++ = bb;
|
|
|
|
if (depth == 4)
|
|
|
|
*p++ = *r++; // copy alpha if present
|
|
|
|
}
|
|
|
|
}
|
|
|
|
} else { // the system will decode a complex DIB
|
|
|
|
void *pDIBBits = (void *)(lpBI->bmiColors + 256);
|
|
|
|
if (lpBI->bmiHeader.biCompression == BI_BITFIELDS)
|
|
|
|
pDIBBits = (void *)(lpBI->bmiColors + 3);
|
|
|
|
else if (lpBI->bmiHeader.biClrUsed > 0)
|
|
|
|
pDIBBits = (void *)(lpBI->bmiColors + lpBI->bmiHeader.biClrUsed);
|
2018-04-29 22:04:24 +03:00
|
|
|
Fl_Image_Surface *surf = new Fl_Image_Surface(width, abs(height));
|
2018-04-29 20:28:57 +03:00
|
|
|
Fl_Surface_Device::push_current(surf);
|
2018-04-29 22:04:24 +03:00
|
|
|
SetDIBitsToDevice((HDC)fl_graphics_driver->gc(), 0, 0, width, abs(height), 0, 0, 0, abs(height), pDIBBits, lpBI, DIB_RGB_COLORS);
|
|
|
|
rgb = fl_read_image(NULL, 0, 0, width, abs(height));
|
2018-04-29 20:28:57 +03:00
|
|
|
depth = 3;
|
|
|
|
Fl_Surface_Device::pop_current();
|
|
|
|
delete surf;
|
|
|
|
}
|
|
|
|
GlobalUnlock(h);
|
2017-12-19 15:52:57 +03:00
|
|
|
} else if ((h = GetClipboardData(CF_ENHMETAFILE))) { // if there's an enhanced metafile in clipboard
|
2018-04-29 20:28:57 +03:00
|
|
|
ENHMETAHEADER header;
|
|
|
|
GetEnhMetaFileHeader((HENHMETAFILE)h, sizeof(header), &header); // get structure containing metafile dimensions
|
|
|
|
width = (header.rclFrame.right - header.rclFrame.left + 1); // in .01 mm units
|
|
|
|
height = (header.rclFrame.bottom - header.rclFrame.top + 1);
|
|
|
|
HDC hdc = GetDC(NULL); // get unit correspondance between .01 mm and screen pixels
|
|
|
|
int hmm = GetDeviceCaps(hdc, HORZSIZE);
|
|
|
|
int hdots = GetDeviceCaps(hdc, HORZRES);
|
|
|
|
ReleaseDC(NULL, hdc);
|
|
|
|
float factor = (100.f * hmm) / hdots;
|
2018-05-12 12:36:36 +03:00
|
|
|
float scaling = Fl::screen_driver()->scale(Fl_Window_Driver::driver(receiver.top_window())->screen_num());
|
2018-04-29 20:28:57 +03:00
|
|
|
if (!Fl_Window::current()) {
|
|
|
|
Fl_GDI_Graphics_Driver *d = (Fl_GDI_Graphics_Driver*)&Fl_Graphics_Driver::default_driver();
|
|
|
|
d->scale(scaling);// may run early at app startup before Fl_Window::make_current() scales d
|
|
|
|
}
|
|
|
|
width = int(width / (scaling * factor)); // convert to screen pixel unit
|
|
|
|
height = int(height / (scaling * factor));
|
|
|
|
RECT rect = {0, 0, width, height};
|
|
|
|
Fl_Image_Surface *surf = new Fl_Image_Surface(width, height, 1);
|
|
|
|
Fl_Surface_Device::push_current(surf);
|
2020-07-01 19:03:10 +03:00
|
|
|
fl_color(FL_WHITE); // draw white background
|
2018-04-29 20:28:57 +03:00
|
|
|
fl_rectf(0, 0, width, height);
|
2021-02-13 23:12:52 +03:00
|
|
|
rect.right = LONG(rect.right * scaling); // apply scaling to the metafile draw operation
|
|
|
|
rect.bottom = LONG(rect.bottom * scaling);
|
2018-04-29 20:28:57 +03:00
|
|
|
PlayEnhMetaFile((HDC)fl_graphics_driver->gc(), (HENHMETAFILE)h, &rect); // draw metafile to offscreen buffer
|
|
|
|
image = surf->image();
|
|
|
|
Fl_Surface_Device::pop_current();
|
|
|
|
delete surf;
|
2017-12-19 15:52:57 +03:00
|
|
|
}
|
|
|
|
if (rgb || image) {
|
2018-04-29 20:28:57 +03:00
|
|
|
if (!image) {
|
2018-04-29 22:04:24 +03:00
|
|
|
image = new Fl_RGB_Image(rgb, width, abs(height), depth); // create new image from pixel data
|
2018-04-29 20:28:57 +03:00
|
|
|
image->alloc_array = 1;
|
|
|
|
}
|
|
|
|
Fl::e_clipboard_data = image;
|
|
|
|
Fl::e_clipboard_type = Fl::clipboard_image; // indicates that the paste event is for image data
|
|
|
|
int done = receiver.handle(FL_PASTE); // send FL_PASTE event to widget
|
|
|
|
Fl::e_clipboard_type = "";
|
|
|
|
if (done == 0) { // if widget did not handle the event, delete the image
|
|
|
|
Fl::e_clipboard_data = NULL;
|
|
|
|
delete image;
|
|
|
|
}
|
2002-03-07 22:22:58 +03:00
|
|
|
}
|
|
|
|
}
|
2017-12-19 15:52:57 +03:00
|
|
|
CloseClipboard();
|
|
|
|
}
|
2014-05-23 20:47:21 +04:00
|
|
|
}
|
|
|
|
|
2022-02-03 09:03:26 +03:00
|
|
|
int Fl_WinAPI_Screen_Driver::clipboard_contains(const char *type) {
|
2014-05-23 20:47:21 +04:00
|
|
|
int retval = 0;
|
2017-12-19 15:52:57 +03:00
|
|
|
if (!OpenClipboard(NULL))
|
|
|
|
return 0;
|
2014-05-23 20:47:21 +04:00
|
|
|
if (strcmp(type, Fl::clipboard_plain_text) == 0 || type[0] == 0) {
|
|
|
|
retval = IsClipboardFormatAvailable(CF_UNICODETEXT);
|
2017-12-19 15:52:57 +03:00
|
|
|
} else if (strcmp(type, Fl::clipboard_image) == 0) {
|
2014-05-23 20:47:21 +04:00
|
|
|
retval = IsClipboardFormatAvailable(CF_DIB) || IsClipboardFormatAvailable(CF_ENHMETAFILE);
|
2002-03-07 22:22:58 +03:00
|
|
|
}
|
2014-05-23 20:47:21 +04:00
|
|
|
CloseClipboard();
|
|
|
|
return retval;
|
2002-03-07 22:22:58 +03:00
|
|
|
}
|
|
|
|
|
2014-10-08 16:47:20 +04:00
|
|
|
static void fl_clipboard_notify_target(HWND wnd) {
|
2013-09-11 16:54:40 +04:00
|
|
|
if (clipboard_wnd)
|
|
|
|
return;
|
|
|
|
|
|
|
|
// We get one fake WM_DRAWCLIPBOARD immediately, which we therefore
|
|
|
|
// need to ignore.
|
|
|
|
initial_clipboard = true;
|
|
|
|
|
|
|
|
clipboard_wnd = wnd;
|
|
|
|
next_clipboard_wnd = SetClipboardViewer(wnd);
|
|
|
|
}
|
|
|
|
|
2014-10-08 16:47:20 +04:00
|
|
|
static void fl_clipboard_notify_untarget(HWND wnd) {
|
2013-09-11 16:54:40 +04:00
|
|
|
if (wnd != clipboard_wnd)
|
|
|
|
return;
|
|
|
|
|
2014-10-09 16:52:05 +04:00
|
|
|
// We might be called late in the cleanup where Windows has already
|
|
|
|
// implicitly destroyed our clipboard window. At that point we need
|
|
|
|
// to do some extra work to manually repair the clipboard chain.
|
|
|
|
if (IsWindow(wnd))
|
|
|
|
ChangeClipboardChain(wnd, next_clipboard_wnd);
|
|
|
|
else {
|
|
|
|
HWND tmp, head;
|
|
|
|
|
2017-12-19 15:52:57 +03:00
|
|
|
tmp = CreateWindow("STATIC", "Temporary FLTK Clipboard Window", 0, 0, 0, 0, 0, HWND_MESSAGE, NULL, NULL, NULL);
|
2014-10-09 16:52:05 +04:00
|
|
|
if (tmp == NULL)
|
|
|
|
return;
|
|
|
|
|
|
|
|
head = SetClipboardViewer(tmp);
|
|
|
|
if (head == NULL)
|
|
|
|
ChangeClipboardChain(tmp, next_clipboard_wnd);
|
|
|
|
else {
|
|
|
|
SendMessage(head, WM_CHANGECBCHAIN, (WPARAM)wnd, (LPARAM)next_clipboard_wnd);
|
|
|
|
ChangeClipboardChain(tmp, head);
|
|
|
|
}
|
|
|
|
|
|
|
|
DestroyWindow(tmp);
|
|
|
|
}
|
|
|
|
|
2013-09-11 16:54:40 +04:00
|
|
|
clipboard_wnd = next_clipboard_wnd = 0;
|
2014-10-08 16:47:20 +04:00
|
|
|
}
|
|
|
|
|
|
|
|
void fl_clipboard_notify_retarget(HWND wnd) {
|
|
|
|
// The given window is getting destroyed. If it's part of the
|
|
|
|
// clipboard chain then we need to unregister it and find a
|
|
|
|
// replacement window.
|
|
|
|
if (wnd != clipboard_wnd)
|
|
|
|
return;
|
|
|
|
|
|
|
|
fl_clipboard_notify_untarget(wnd);
|
2013-09-11 16:54:40 +04:00
|
|
|
|
|
|
|
if (Fl::first_window())
|
|
|
|
fl_clipboard_notify_target(fl_xid(Fl::first_window()));
|
|
|
|
}
|
|
|
|
|
2022-02-03 09:03:26 +03:00
|
|
|
void Fl_WinAPI_Screen_Driver::clipboard_notify_change() {
|
2014-10-08 16:47:20 +04:00
|
|
|
// untarget clipboard monitor if no handlers are registered
|
|
|
|
if (clipboard_wnd != NULL && fl_clipboard_notify_empty()) {
|
|
|
|
fl_clipboard_notify_untarget(clipboard_wnd);
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
// if there are clipboard notify handlers but no window targeted
|
|
|
|
// target first window if available
|
|
|
|
if (clipboard_wnd == NULL && Fl::first_window())
|
|
|
|
fl_clipboard_notify_target(fl_xid(Fl::first_window()));
|
|
|
|
}
|
|
|
|
|
1998-10-06 23:14:55 +04:00
|
|
|
////////////////////////////////////////////////////////////////
|
2017-12-19 15:52:57 +03:00
|
|
|
void fl_get_codepage() {
|
2009-02-21 13:18:47 +03:00
|
|
|
HKL hkl = GetKeyboardLayout(0);
|
|
|
|
TCHAR ld[8];
|
|
|
|
|
2017-12-19 15:52:57 +03:00
|
|
|
GetLocaleInfo(LOWORD(hkl), LOCALE_IDEFAULTANSICODEPAGE, ld, 6);
|
2009-02-21 13:18:47 +03:00
|
|
|
DWORD ccp = atol(ld);
|
|
|
|
fl_codepage = ccp;
|
2008-09-11 03:56:49 +04:00
|
|
|
}
|
1998-10-06 23:14:55 +04:00
|
|
|
|
1999-02-03 11:43:35 +03:00
|
|
|
HWND fl_capture;
|
1998-10-06 23:14:55 +04:00
|
|
|
|
|
|
|
static int mouse_event(Fl_Window *window, int what, int button,
|
2020-07-01 19:03:10 +03:00
|
|
|
WPARAM wParam, LPARAM lParam) {
|
1998-10-06 23:14:55 +04:00
|
|
|
static int px, py, pmx, pmy;
|
|
|
|
POINT pt;
|
2021-02-10 12:18:55 +03:00
|
|
|
float scale = Fl::screen_driver()->scale(window->screen_num());
|
1998-10-06 23:14:55 +04:00
|
|
|
Fl::e_x = pt.x = (signed short)LOWORD(lParam);
|
|
|
|
Fl::e_y = pt.y = (signed short)HIWORD(lParam);
|
2021-02-13 23:12:52 +03:00
|
|
|
Fl::e_x = int(Fl::e_x / scale);
|
|
|
|
Fl::e_y = int(Fl::e_y / scale);
|
1998-10-06 23:14:55 +04:00
|
|
|
ClientToScreen(fl_xid(window), &pt);
|
2021-02-13 23:12:52 +03:00
|
|
|
Fl::e_x_root = int(pt.x / scale);
|
|
|
|
Fl::e_y_root = int(pt.y / scale);
|
2008-12-07 13:53:07 +03:00
|
|
|
#ifdef USE_CAPTURE_MOUSE_WIN
|
2017-12-19 15:52:57 +03:00
|
|
|
Fl_Window *mouse_window = window; // save "mouse window"
|
2008-12-07 13:53:07 +03:00
|
|
|
#endif
|
1998-10-06 23:14:55 +04:00
|
|
|
while (window->parent()) {
|
|
|
|
Fl::e_x += window->x();
|
|
|
|
Fl::e_y += window->y();
|
|
|
|
window = window->window();
|
|
|
|
}
|
|
|
|
|
|
|
|
ulong state = Fl::e_state & 0xff0000; // keep shift key states
|
|
|
|
#if 0
|
|
|
|
// mouse event reports some shift flags, perhaps save them?
|
|
|
|
if (wParam & MK_SHIFT) state |= FL_SHIFT;
|
|
|
|
if (wParam & MK_CONTROL) state |= FL_CTRL;
|
|
|
|
#endif
|
|
|
|
if (wParam & MK_LBUTTON) state |= FL_BUTTON1;
|
|
|
|
if (wParam & MK_MBUTTON) state |= FL_BUTTON2;
|
|
|
|
if (wParam & MK_RBUTTON) state |= FL_BUTTON3;
|
|
|
|
Fl::e_state = state;
|
|
|
|
|
|
|
|
switch (what) {
|
2017-12-19 15:52:57 +03:00
|
|
|
case 1: // double-click
|
|
|
|
if (Fl::e_is_click) {
|
2020-07-01 19:03:10 +03:00
|
|
|
Fl::e_clicks++;
|
|
|
|
goto J1;
|
2017-12-19 15:52:57 +03:00
|
|
|
}
|
|
|
|
case 0: // single-click
|
|
|
|
Fl::e_clicks = 0;
|
|
|
|
J1:
|
2008-12-07 13:53:07 +03:00
|
|
|
#ifdef USE_CAPTURE_MOUSE_WIN
|
2017-12-19 15:52:57 +03:00
|
|
|
if (!fl_capture)
|
2020-07-01 19:03:10 +03:00
|
|
|
SetCapture(fl_xid(mouse_window)); // use mouse window
|
2008-12-07 13:53:07 +03:00
|
|
|
#else
|
2017-12-19 15:52:57 +03:00
|
|
|
if (!fl_capture)
|
2020-07-01 19:03:10 +03:00
|
|
|
SetCapture(fl_xid(window)); // use main window
|
2008-12-07 13:53:07 +03:00
|
|
|
#endif
|
2017-12-19 15:52:57 +03:00
|
|
|
Fl::e_keysym = FL_Button + button;
|
|
|
|
Fl::e_is_click = 1;
|
|
|
|
px = pmx = Fl::e_x_root;
|
|
|
|
py = pmy = Fl::e_y_root;
|
|
|
|
return Fl::handle(FL_PUSH, window);
|
|
|
|
|
|
|
|
case 2: // release:
|
|
|
|
if (!fl_capture)
|
2020-07-01 19:03:10 +03:00
|
|
|
ReleaseCapture();
|
2017-12-19 15:52:57 +03:00
|
|
|
Fl::e_keysym = FL_Button + button;
|
|
|
|
return Fl::handle(FL_RELEASE, window);
|
|
|
|
|
|
|
|
case 3: // move:
|
|
|
|
default: // avoid compiler warning
|
2018-02-09 17:39:42 +03:00
|
|
|
// Windows produces extra events even if the mouse does not move, ignore em:
|
2017-12-19 15:52:57 +03:00
|
|
|
if (Fl::e_x_root == pmx && Fl::e_y_root == pmy)
|
2020-07-01 19:03:10 +03:00
|
|
|
return 1;
|
2017-12-19 15:52:57 +03:00
|
|
|
pmx = Fl::e_x_root;
|
|
|
|
pmy = Fl::e_y_root;
|
|
|
|
if (abs(Fl::e_x_root - px) > 5 || abs(Fl::e_y_root - py) > 5)
|
2020-07-01 19:03:10 +03:00
|
|
|
Fl::e_is_click = 0;
|
2017-12-19 15:52:57 +03:00
|
|
|
return Fl::handle(FL_MOVE, window);
|
1998-10-06 23:14:55 +04:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2018-02-09 17:39:42 +03:00
|
|
|
// Convert a Windows VK_x to an FLTK (X) Keysym:
|
2001-11-22 18:35:02 +03:00
|
|
|
// See also the inverse converter in Fl_get_key_win32.cxx
|
1998-10-06 23:14:55 +04:00
|
|
|
// This table is in numeric order by VK:
|
2017-12-19 15:52:57 +03:00
|
|
|
static const struct {
|
|
|
|
unsigned short vk, fltk, extended;
|
|
|
|
} vktab[] = {
|
2020-07-01 19:03:10 +03:00
|
|
|
{VK_BACK, FL_BackSpace},
|
|
|
|
{VK_TAB, FL_Tab},
|
|
|
|
{VK_CLEAR, FL_KP+'5', 0xff0b/*XK_Clear*/},
|
|
|
|
{VK_RETURN, FL_Enter, FL_KP_Enter},
|
|
|
|
{VK_SHIFT, FL_Shift_L, FL_Shift_R},
|
|
|
|
{VK_CONTROL, FL_Control_L, FL_Control_R},
|
|
|
|
{VK_MENU, FL_Alt_L, FL_Alt_R},
|
|
|
|
{VK_PAUSE, FL_Pause},
|
|
|
|
{VK_CAPITAL, FL_Caps_Lock},
|
|
|
|
{VK_ESCAPE, FL_Escape},
|
|
|
|
{VK_SPACE, ' '},
|
|
|
|
{VK_PRIOR, FL_KP+'9', FL_Page_Up},
|
|
|
|
{VK_NEXT, FL_KP+'3', FL_Page_Down},
|
|
|
|
{VK_END, FL_KP+'1', FL_End},
|
|
|
|
{VK_HOME, FL_KP+'7', FL_Home},
|
|
|
|
{VK_LEFT, FL_KP+'4', FL_Left},
|
|
|
|
{VK_UP, FL_KP+'8', FL_Up},
|
|
|
|
{VK_RIGHT, FL_KP+'6', FL_Right},
|
|
|
|
{VK_DOWN, FL_KP+'2', FL_Down},
|
|
|
|
{VK_SNAPSHOT, FL_Print}, // does not work on NT
|
|
|
|
{VK_INSERT, FL_KP+'0', FL_Insert},
|
|
|
|
{VK_DELETE, FL_KP+'.', FL_Delete},
|
|
|
|
{VK_LWIN, FL_Meta_L},
|
|
|
|
{VK_RWIN, FL_Meta_R},
|
|
|
|
{VK_APPS, FL_Menu},
|
2011-05-22 01:55:59 +04:00
|
|
|
{VK_SLEEP, FL_Sleep},
|
2020-07-01 19:03:10 +03:00
|
|
|
{VK_MULTIPLY, FL_KP+'*'},
|
|
|
|
{VK_ADD, FL_KP+'+'},
|
|
|
|
{VK_SUBTRACT, FL_KP+'-'},
|
|
|
|
{VK_DECIMAL, FL_KP+'.'},
|
|
|
|
{VK_DIVIDE, FL_KP+'/'},
|
|
|
|
{VK_NUMLOCK, FL_Num_Lock},
|
|
|
|
{VK_SCROLL, FL_Scroll_Lock},
|
2017-12-19 15:52:57 +03:00
|
|
|
#if defined(_WIN32_WINNT) && (_WIN32_WINNT >= 0x0500)
|
2020-07-01 19:03:10 +03:00
|
|
|
{VK_BROWSER_BACK, FL_Back},
|
|
|
|
{VK_BROWSER_FORWARD, FL_Forward},
|
|
|
|
{VK_BROWSER_REFRESH, FL_Refresh},
|
|
|
|
{VK_BROWSER_STOP, FL_Stop},
|
|
|
|
{VK_BROWSER_SEARCH, FL_Search},
|
2011-05-22 01:55:59 +04:00
|
|
|
{VK_BROWSER_FAVORITES, FL_Favorites},
|
2020-07-01 19:03:10 +03:00
|
|
|
{VK_BROWSER_HOME, FL_Home_Page},
|
|
|
|
{VK_VOLUME_MUTE, FL_Volume_Mute},
|
|
|
|
{VK_VOLUME_DOWN, FL_Volume_Down},
|
|
|
|
{VK_VOLUME_UP, FL_Volume_Up},
|
|
|
|
{VK_MEDIA_NEXT_TRACK, FL_Media_Next},
|
|
|
|
{VK_MEDIA_PREV_TRACK, FL_Media_Prev},
|
|
|
|
{VK_MEDIA_STOP, FL_Media_Stop},
|
|
|
|
{VK_MEDIA_PLAY_PAUSE, FL_Media_Play},
|
|
|
|
{VK_LAUNCH_MAIL, FL_Mail},
|
2011-05-22 01:55:59 +04:00
|
|
|
#endif
|
2020-07-01 19:03:10 +03:00
|
|
|
{0xba, ';'},
|
|
|
|
{0xbb, '='},
|
|
|
|
{0xbc, ','},
|
|
|
|
{0xbd, '-'},
|
|
|
|
{0xbe, '.'},
|
|
|
|
{0xbf, '/'},
|
|
|
|
{0xc0, '`'},
|
|
|
|
{0xdb, '['},
|
|
|
|
{0xdc, '\\'},
|
|
|
|
{0xdd, ']'},
|
|
|
|
{0xde, '\''},
|
|
|
|
{VK_OEM_102, FL_Iso_Key}
|
1998-10-06 23:14:55 +04:00
|
|
|
};
|
2012-04-05 09:12:30 +04:00
|
|
|
static int ms2fltk(WPARAM vk, int extended) {
|
1998-10-06 23:14:55 +04:00
|
|
|
static unsigned short vklut[256];
|
1998-10-20 01:00:26 +04:00
|
|
|
static unsigned short extendedlut[256];
|
1998-10-06 23:14:55 +04:00
|
|
|
if (!vklut[1]) { // init the table
|
|
|
|
unsigned int i;
|
2017-12-19 15:52:57 +03:00
|
|
|
for (i = 0; i < 256; i++)
|
|
|
|
vklut[i] = tolower(i);
|
|
|
|
for (i = VK_F1; i <= VK_F16; i++)
|
|
|
|
vklut[i] = i + (FL_F - (VK_F1 - 1));
|
|
|
|
for (i = VK_NUMPAD0; i <= VK_NUMPAD9; i++)
|
|
|
|
vklut[i] = i + (FL_KP + '0' - VK_NUMPAD0);
|
|
|
|
for (i = 0; i < sizeof(vktab) / sizeof(*vktab); i++) {
|
1998-10-06 23:14:55 +04:00
|
|
|
vklut[vktab[i].vk] = vktab[i].fltk;
|
1998-10-20 01:00:26 +04:00
|
|
|
extendedlut[vktab[i].vk] = vktab[i].extended;
|
1998-11-08 17:36:56 +03:00
|
|
|
}
|
2017-12-19 15:52:57 +03:00
|
|
|
for (i = 0; i < 256; i++)
|
|
|
|
if (!extendedlut[i])
|
2020-07-01 19:03:10 +03:00
|
|
|
extendedlut[i] = vklut[i];
|
1998-12-02 18:47:30 +03:00
|
|
|
}
|
1998-10-20 01:00:26 +04:00
|
|
|
return extended ? extendedlut[vk] : vklut[vk];
|
1998-10-06 23:14:55 +04:00
|
|
|
}
|
|
|
|
|
|
|
|
#if USE_COLORMAP
|
2001-11-22 18:35:02 +03:00
|
|
|
extern HPALETTE fl_select_palette(void); // in fl_color_win32.cxx
|
1998-10-06 23:14:55 +04:00
|
|
|
#endif
|
|
|
|
|
2005-10-13 00:19:30 +04:00
|
|
|
|
2017-12-19 15:52:57 +03:00
|
|
|
static Fl_Window *resize_bug_fix;
|
1998-10-06 23:14:55 +04:00
|
|
|
|
2001-09-30 16:42:33 +04:00
|
|
|
extern void fl_save_pen(void);
|
|
|
|
extern void fl_restore_pen(void);
|
|
|
|
|
2017-12-19 15:52:57 +03:00
|
|
|
static LRESULT CALLBACK WndProc(HWND hWnd, UINT uMsg, WPARAM wParam, LPARAM lParam) {
|
|
|
|
|
|
|
|
// Copy the message to fl_msg so add_handler code can see it.
|
|
|
|
// It is already there if this is called by DispatchMessage,
|
|
|
|
// but not if Windows calls this directly.
|
|
|
|
|
2002-04-16 11:47:31 +04:00
|
|
|
fl_msg.hwnd = hWnd;
|
1998-10-06 23:14:55 +04:00
|
|
|
fl_msg.message = uMsg;
|
2002-04-16 11:47:31 +04:00
|
|
|
fl_msg.wParam = wParam;
|
|
|
|
fl_msg.lParam = lParam;
|
2017-12-19 15:52:57 +03:00
|
|
|
// fl_msg.time = ???
|
|
|
|
// fl_msg.pt = ???
|
|
|
|
// fl_msg.lPrivate = ???
|
1998-10-06 23:14:55 +04:00
|
|
|
|
|
|
|
Fl_Window *window = fl_find(hWnd);
|
2018-05-12 12:36:36 +03:00
|
|
|
float scale = (window ? Fl::screen_driver()->scale(Fl_Window_Driver::driver(window)->screen_num()) : 1);
|
1998-10-06 23:14:55 +04:00
|
|
|
|
2017-12-19 15:52:57 +03:00
|
|
|
if (window) {
|
|
|
|
switch (uMsg) {
|
|
|
|
|
|
|
|
case WM_DPICHANGED: { // 0x02E0
|
2020-07-01 19:03:10 +03:00
|
|
|
if (is_dpi_aware && !Fl_WinAPI_Window_Driver::data_for_resize_window_between_screens_.busy) {
|
|
|
|
RECT r;
|
2019-06-16 13:00:38 +03:00
|
|
|
Fl_WinAPI_Screen_Driver *sd = (Fl_WinAPI_Screen_Driver*)Fl::screen_driver();
|
|
|
|
int ns = Fl_Window_Driver::driver(window)->screen_num();
|
|
|
|
sd->dpi[ns][0] = sd->dpi[ns][1] = HIWORD(wParam);
|
2021-02-13 23:12:52 +03:00
|
|
|
float f = HIWORD(wParam) / 96.f;
|
2020-07-01 19:03:10 +03:00
|
|
|
GetClientRect(hWnd, &r);
|
|
|
|
float old_f = float(r.right) / window->w();
|
|
|
|
Fl::screen_driver()->scale(ns, f);
|
|
|
|
Fl_Window_Driver::driver(window)->resize_after_scale_change(ns, old_f, f);
|
|
|
|
}
|
|
|
|
return 0;
|
2017-05-17 14:54:18 +03:00
|
|
|
}
|
1998-10-06 23:14:55 +04:00
|
|
|
|
2017-12-19 15:52:57 +03:00
|
|
|
case WM_QUIT: // this should not happen?
|
2020-07-01 19:03:10 +03:00
|
|
|
Fl::fatal("WM_QUIT message");
|
1998-10-06 23:14:55 +04:00
|
|
|
|
2017-12-19 15:52:57 +03:00
|
|
|
case WM_CLOSE: // user clicked close box
|
2020-07-01 19:03:10 +03:00
|
|
|
Fl::handle(FL_CLOSE, window);
|
|
|
|
return 0;
|
2005-05-19 20:22:29 +04:00
|
|
|
|
2017-12-19 15:52:57 +03:00
|
|
|
case WM_SYNCPAINT:
|
|
|
|
case WM_NCPAINT:
|
|
|
|
case WM_ERASEBKGND:
|
2020-07-01 19:03:10 +03:00
|
|
|
// Andreas Weitl - WM_SYNCPAINT needs to be passed to DefWindowProc
|
|
|
|
// so that Windows can generate the proper paint messages...
|
|
|
|
// Similarly, WM_NCPAINT and WM_ERASEBKGND need this, too...
|
|
|
|
break;
|
2005-05-19 20:22:29 +04:00
|
|
|
|
2017-12-19 15:52:57 +03:00
|
|
|
case WM_PAINT: {
|
2022-03-15 08:42:06 +03:00
|
|
|
HRGN R, R2;
|
2020-07-01 19:03:10 +03:00
|
|
|
Fl_X *i = Fl_X::i(window);
|
|
|
|
Fl_Window_Driver::driver(window)->wait_for_expose_value = 0;
|
|
|
|
char redraw_whole_window = false;
|
|
|
|
if (!i->region && window->damage()) {
|
|
|
|
// Redraw the whole window...
|
|
|
|
i->region = CreateRectRgn(0, 0, window->w(), window->h());
|
|
|
|
redraw_whole_window = true;
|
|
|
|
}
|
|
|
|
|
|
|
|
// We need to merge Windows' damage into FLTK's damage.
|
|
|
|
R = CreateRectRgn(0, 0, 0, 0);
|
|
|
|
int r = GetUpdateRgn(hWnd, R, 0);
|
|
|
|
if (r == NULLREGION && !redraw_whole_window) {
|
|
|
|
DeleteObject(R);
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
|
|
|
// convert i->region in FLTK units to R2 in drawing units
|
2022-03-15 08:42:06 +03:00
|
|
|
R2 = Fl_GDI_Graphics_Driver::scale_region((HRGN)i->region, scale, NULL);
|
2020-07-01 19:03:10 +03:00
|
|
|
|
2020-12-03 17:08:44 +03:00
|
|
|
RECT r_box;
|
|
|
|
if (scale != 1 && GetRgnBox(R, &r_box) != NULLREGION) {
|
|
|
|
// add de-scaled update region to i->region in FLTK units
|
2021-02-13 23:12:52 +03:00
|
|
|
r_box.left = LONG(r_box.left / scale);
|
|
|
|
r_box.right = LONG(r_box.right / scale);
|
|
|
|
r_box.top = LONG(r_box.top / scale);
|
|
|
|
r_box.bottom = LONG(r_box.bottom / scale);
|
2022-03-15 08:42:06 +03:00
|
|
|
HRGN R3 = CreateRectRgn(r_box.left, r_box.top, r_box.right + 1, r_box.bottom + 1);
|
2020-12-03 17:08:44 +03:00
|
|
|
if (!i->region) i->region = R3;
|
|
|
|
else {
|
2022-03-15 08:42:06 +03:00
|
|
|
CombineRgn((HRGN)i->region, (HRGN)i->region, R3, RGN_OR);
|
2020-12-03 17:08:44 +03:00
|
|
|
DeleteObject(R3);
|
|
|
|
}
|
|
|
|
}
|
2020-07-01 19:03:10 +03:00
|
|
|
if (R2) {
|
|
|
|
// Also tell Windows that we are drawing someplace else as well...
|
|
|
|
CombineRgn(R2, R2, R, RGN_OR);
|
|
|
|
DeleteObject(R);
|
|
|
|
} else {
|
|
|
|
R2 = R;
|
|
|
|
}
|
|
|
|
if (window->type() == FL_DOUBLE_WINDOW)
|
|
|
|
ValidateRgn(hWnd, 0);
|
|
|
|
else {
|
|
|
|
ValidateRgn(hWnd, R2);
|
|
|
|
}
|
|
|
|
|
2020-11-29 11:14:54 +03:00
|
|
|
if (scale != 1) DeleteObject(R2);
|
2020-07-01 19:03:10 +03:00
|
|
|
|
|
|
|
window->clear_damage((uchar)(window->damage() | FL_DAMAGE_EXPOSE));
|
|
|
|
// These next two statements should not be here, so that all update
|
|
|
|
// is deferred until Fl::flush() is called during idle. However Windows
|
|
|
|
// apparently is very unhappy if we don't obey it and draw right now.
|
|
|
|
// Very annoying!
|
|
|
|
fl_GetDC(hWnd); // Make sure we have a DC for this window...
|
|
|
|
fl_save_pen();
|
|
|
|
Fl_Window_Driver::driver(window)->flush();
|
|
|
|
fl_restore_pen();
|
|
|
|
window->clear_damage();
|
|
|
|
return 0;
|
2017-12-19 15:52:57 +03:00
|
|
|
} // case WM_PAINT
|
|
|
|
|
|
|
|
case WM_LBUTTONDOWN:
|
2020-07-01 19:03:10 +03:00
|
|
|
mouse_event(window, 0, 1, wParam, lParam);
|
|
|
|
return 0;
|
2017-12-19 15:52:57 +03:00
|
|
|
case WM_LBUTTONDBLCLK:
|
2020-07-01 19:03:10 +03:00
|
|
|
mouse_event(window, 1, 1, wParam, lParam);
|
|
|
|
return 0;
|
2017-12-19 15:52:57 +03:00
|
|
|
case WM_LBUTTONUP:
|
2020-07-01 19:03:10 +03:00
|
|
|
mouse_event(window, 2, 1, wParam, lParam);
|
|
|
|
return 0;
|
2017-12-19 15:52:57 +03:00
|
|
|
case WM_MBUTTONDOWN:
|
2020-07-01 19:03:10 +03:00
|
|
|
mouse_event(window, 0, 2, wParam, lParam);
|
|
|
|
return 0;
|
2017-12-19 15:52:57 +03:00
|
|
|
case WM_MBUTTONDBLCLK:
|
2020-07-01 19:03:10 +03:00
|
|
|
mouse_event(window, 1, 2, wParam, lParam);
|
|
|
|
return 0;
|
2017-12-19 15:52:57 +03:00
|
|
|
case WM_MBUTTONUP:
|
2020-07-01 19:03:10 +03:00
|
|
|
mouse_event(window, 2, 2, wParam, lParam);
|
|
|
|
return 0;
|
2017-12-19 15:52:57 +03:00
|
|
|
case WM_RBUTTONDOWN:
|
2020-07-01 19:03:10 +03:00
|
|
|
mouse_event(window, 0, 3, wParam, lParam);
|
|
|
|
return 0;
|
2017-12-19 15:52:57 +03:00
|
|
|
case WM_RBUTTONDBLCLK:
|
2020-07-01 19:03:10 +03:00
|
|
|
mouse_event(window, 1, 3, wParam, lParam);
|
|
|
|
return 0;
|
2017-12-19 15:52:57 +03:00
|
|
|
case WM_RBUTTONUP:
|
2020-07-01 19:03:10 +03:00
|
|
|
mouse_event(window, 2, 3, wParam, lParam);
|
|
|
|
return 0;
|
2017-12-19 15:52:57 +03:00
|
|
|
|
|
|
|
case WM_MOUSEMOVE:
|
2002-02-20 22:29:57 +03:00
|
|
|
#ifdef USE_TRACK_MOUSE
|
2020-07-01 19:03:10 +03:00
|
|
|
if (track_mouse_win != window) {
|
|
|
|
TRACKMOUSEEVENT tme;
|
|
|
|
tme.cbSize = sizeof(TRACKMOUSEEVENT);
|
|
|
|
tme.dwFlags = TME_LEAVE;
|
|
|
|
tme.hwndTrack = hWnd;
|
|
|
|
_TrackMouseEvent(&tme);
|
|
|
|
track_mouse_win = window;
|
|
|
|
}
|
|
|
|
#endif // USE_TRACK_MOUSE
|
|
|
|
mouse_event(window, 3, 0, wParam, lParam);
|
|
|
|
return 0;
|
2017-12-19 15:52:57 +03:00
|
|
|
|
|
|
|
case WM_MOUSELEAVE:
|
2020-07-01 19:03:10 +03:00
|
|
|
if (track_mouse_win == window) { // we left the top level window !
|
|
|
|
Fl_Window *tw = window;
|
|
|
|
while (tw->parent()) // find top level window
|
|
|
|
tw = tw->window();
|
|
|
|
Fl::belowmouse(0);
|
|
|
|
Fl::handle(FL_LEAVE, tw);
|
|
|
|
}
|
|
|
|
track_mouse_win = 0; // force TrackMouseEvent() restart
|
|
|
|
break;
|
2002-01-07 23:40:02 +03:00
|
|
|
|
2017-12-19 15:52:57 +03:00
|
|
|
case WM_SETFOCUS:
|
2020-07-01 19:03:10 +03:00
|
|
|
if ((Fl::modal_) && (Fl::modal_ != window)) {
|
|
|
|
SetFocus(fl_xid(Fl::modal_));
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
Fl::handle(FL_FOCUS, window);
|
|
|
|
break;
|
1999-07-22 11:27:12 +04:00
|
|
|
|
2017-12-19 15:52:57 +03:00
|
|
|
case WM_KILLFOCUS:
|
2020-07-01 19:03:10 +03:00
|
|
|
Fl::handle(FL_UNFOCUS, window);
|
|
|
|
Fl::flush(); // it never returns to main loop when deactivated...
|
|
|
|
break;
|
1998-10-06 23:14:55 +04:00
|
|
|
|
2017-12-19 15:52:57 +03:00
|
|
|
case WM_SHOWWINDOW:
|
2020-07-01 19:03:10 +03:00
|
|
|
if (!window->parent()) {
|
|
|
|
Fl::handle(wParam ? FL_SHOW : FL_HIDE, window);
|
|
|
|
}
|
|
|
|
break;
|
1998-10-06 23:14:55 +04:00
|
|
|
|
2017-12-19 15:52:57 +03:00
|
|
|
case WM_ACTIVATEAPP:
|
2020-07-01 19:03:10 +03:00
|
|
|
// From eric@vfx.sel.sony.com, we should process WM_ACTIVATEAPP
|
|
|
|
// messages to restore the correct state of the shift/ctrl/alt/lock
|
|
|
|
// keys... Added control, shift, alt, and meta keys, and changed
|
|
|
|
// to use GetAsyncKeyState and do it when wParam is 1
|
|
|
|
// (that means we have focus...)
|
|
|
|
if (wParam) {
|
|
|
|
ulong state = 0;
|
|
|
|
if (GetAsyncKeyState(VK_CAPITAL))
|
|
|
|
state |= FL_CAPS_LOCK;
|
|
|
|
if (GetAsyncKeyState(VK_NUMLOCK))
|
|
|
|
state |= FL_NUM_LOCK;
|
|
|
|
if (GetAsyncKeyState(VK_SCROLL))
|
|
|
|
state |= FL_SCROLL_LOCK;
|
|
|
|
if (GetAsyncKeyState(VK_CONTROL) & ~1)
|
|
|
|
state |= FL_CTRL;
|
|
|
|
if (GetAsyncKeyState(VK_SHIFT) & ~1)
|
|
|
|
state |= FL_SHIFT;
|
|
|
|
if (GetAsyncKeyState(VK_MENU))
|
|
|
|
state |= FL_ALT;
|
|
|
|
if ((GetAsyncKeyState(VK_LWIN) | GetAsyncKeyState(VK_RWIN)) & ~1)
|
|
|
|
state |= FL_META;
|
|
|
|
Fl::e_state = state;
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
break;
|
2001-04-27 18:39:27 +04:00
|
|
|
|
2017-12-19 15:52:57 +03:00
|
|
|
case WM_INPUTLANGCHANGE:
|
2020-07-01 19:03:10 +03:00
|
|
|
fl_get_codepage();
|
|
|
|
break;
|
2017-12-19 15:52:57 +03:00
|
|
|
case WM_IME_COMPOSITION:
|
2020-07-01 19:03:10 +03:00
|
|
|
// if (!fl_is_nt4() && lParam & GCS_RESULTCLAUSE) {
|
|
|
|
// HIMC himc = ImmGetContext(hWnd);
|
|
|
|
// wlen = ImmGetCompositionStringW(himc, GCS_RESULTSTR,
|
|
|
|
// wbuf, sizeof(wbuf)) / sizeof(short);
|
|
|
|
// if (wlen < 0) wlen = 0;
|
|
|
|
// wbuf[wlen] = 0;
|
|
|
|
// ImmReleaseContext(hWnd, himc);
|
|
|
|
// }
|
|
|
|
break;
|
2017-12-19 15:52:57 +03:00
|
|
|
|
|
|
|
case WM_KEYDOWN:
|
|
|
|
case WM_SYSKEYDOWN:
|
|
|
|
case WM_KEYUP:
|
|
|
|
case WM_SYSKEYUP:
|
2020-07-01 19:03:10 +03:00
|
|
|
// save the keysym until we figure out the characters:
|
|
|
|
Fl::e_keysym = Fl::e_original_keysym = ms2fltk(wParam, lParam & (1 << 24));
|
|
|
|
// See if TranslateMessage turned it into a WM_*CHAR message:
|
|
|
|
if (PeekMessageW(&fl_msg, hWnd, WM_CHAR, WM_SYSDEADCHAR, PM_REMOVE)) {
|
|
|
|
uMsg = fl_msg.message;
|
|
|
|
wParam = fl_msg.wParam;
|
|
|
|
lParam = fl_msg.lParam;
|
|
|
|
}
|
|
|
|
// FALLTHROUGH ...
|
2017-12-19 15:52:57 +03:00
|
|
|
|
|
|
|
case WM_DEADCHAR:
|
|
|
|
case WM_SYSDEADCHAR:
|
|
|
|
case WM_CHAR:
|
|
|
|
case WM_SYSCHAR: {
|
2020-07-01 19:03:10 +03:00
|
|
|
ulong state = Fl::e_state & 0xff000000; // keep the mouse button state
|
|
|
|
// if GetKeyState is expensive we might want to comment some of these out:
|
|
|
|
if (GetKeyState(VK_SHIFT) & ~1)
|
|
|
|
state |= FL_SHIFT;
|
|
|
|
if (GetKeyState(VK_CAPITAL))
|
|
|
|
state |= FL_CAPS_LOCK;
|
|
|
|
if (GetKeyState(VK_CONTROL) & ~1)
|
|
|
|
state |= FL_CTRL;
|
|
|
|
// Alt gets reported for the Alt-GR switch on non-English keyboards.
|
|
|
|
// so we need to check the event as well to get it right:
|
|
|
|
if ((lParam & (1 << 29)) // same as GetKeyState(VK_MENU)
|
|
|
|
&& uMsg != WM_CHAR)
|
|
|
|
state |= FL_ALT;
|
|
|
|
if (GetKeyState(VK_NUMLOCK))
|
|
|
|
state |= FL_NUM_LOCK;
|
|
|
|
if ((GetKeyState(VK_LWIN) | GetKeyState(VK_RWIN)) & ~1) {
|
|
|
|
// Windows bug? GetKeyState returns garbage if the user hit the
|
|
|
|
// meta key to pop up start menu. Sigh.
|
|
|
|
if ((GetAsyncKeyState(VK_LWIN) | GetAsyncKeyState(VK_RWIN)) & ~1)
|
|
|
|
state |= FL_META;
|
|
|
|
}
|
|
|
|
if (GetKeyState(VK_SCROLL))
|
|
|
|
state |= FL_SCROLL_LOCK;
|
|
|
|
Fl::e_state = state;
|
|
|
|
static char buffer[1024];
|
|
|
|
if (uMsg == WM_CHAR || uMsg == WM_SYSCHAR) {
|
|
|
|
wchar_t u = (wchar_t)wParam;
|
|
|
|
Fl::e_length = fl_utf8fromwc(buffer, 1024, &u, 1);
|
|
|
|
buffer[Fl::e_length] = 0;
|
|
|
|
} else if (Fl::e_keysym >= FL_KP && Fl::e_keysym <= FL_KP_Last) {
|
|
|
|
if (state & FL_NUM_LOCK) {
|
|
|
|
// Convert to regular keypress...
|
|
|
|
buffer[0] = Fl::e_keysym - FL_KP;
|
|
|
|
Fl::e_length = 1;
|
|
|
|
} else {
|
|
|
|
// Convert to special keypress...
|
|
|
|
buffer[0] = 0;
|
|
|
|
Fl::e_length = 0;
|
|
|
|
switch (Fl::e_keysym) {
|
|
|
|
case FL_KP + '0':
|
|
|
|
Fl::e_keysym = FL_Insert;
|
|
|
|
break;
|
|
|
|
case FL_KP + '1':
|
|
|
|
Fl::e_keysym = FL_End;
|
|
|
|
break;
|
|
|
|
case FL_KP + '2':
|
|
|
|
Fl::e_keysym = FL_Down;
|
|
|
|
break;
|
|
|
|
case FL_KP + '3':
|
|
|
|
Fl::e_keysym = FL_Page_Down;
|
|
|
|
break;
|
|
|
|
case FL_KP + '4':
|
|
|
|
Fl::e_keysym = FL_Left;
|
|
|
|
break;
|
|
|
|
case FL_KP + '6':
|
|
|
|
Fl::e_keysym = FL_Right;
|
|
|
|
break;
|
|
|
|
case FL_KP + '7':
|
|
|
|
Fl::e_keysym = FL_Home;
|
|
|
|
break;
|
|
|
|
case FL_KP + '8':
|
|
|
|
Fl::e_keysym = FL_Up;
|
|
|
|
break;
|
|
|
|
case FL_KP + '9':
|
|
|
|
Fl::e_keysym = FL_Page_Up;
|
|
|
|
break;
|
|
|
|
case FL_KP + '.':
|
|
|
|
Fl::e_keysym = FL_Delete;
|
|
|
|
break;
|
|
|
|
case FL_KP + '/':
|
|
|
|
case FL_KP + '*':
|
|
|
|
case FL_KP + '-':
|
|
|
|
case FL_KP + '+':
|
|
|
|
buffer[0] = Fl::e_keysym - FL_KP;
|
|
|
|
Fl::e_length = 1;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
} else if ((lParam & (1 << 31)) == 0) {
|
2011-01-11 23:50:36 +03:00
|
|
|
#ifdef FLTK_PREVIEW_DEAD_KEYS
|
2020-07-01 19:03:10 +03:00
|
|
|
if ((lParam & (1 << 24)) == 0) { // clear if dead key (always?)
|
|
|
|
wchar_t u = (wchar_t)wParam;
|
|
|
|
Fl::e_length = fl_utf8fromwc(buffer, 1024, &u, 1);
|
|
|
|
buffer[Fl::e_length] = 0;
|
|
|
|
} else { // set if "extended key" (never printable?)
|
|
|
|
buffer[0] = 0;
|
|
|
|
Fl::e_length = 0;
|
|
|
|
}
|
2011-01-11 23:50:36 +03:00
|
|
|
#else
|
2020-07-01 19:03:10 +03:00
|
|
|
buffer[0] = 0;
|
|
|
|
Fl::e_length = 0;
|
2011-01-11 23:50:36 +03:00
|
|
|
#endif
|
2020-07-01 19:03:10 +03:00
|
|
|
}
|
|
|
|
Fl::e_text = buffer;
|
|
|
|
if (lParam & (1 << 31)) { // key up events.
|
|
|
|
if (Fl::handle(FL_KEYUP, window))
|
|
|
|
return 0;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
while (window->parent())
|
|
|
|
window = window->window();
|
|
|
|
if (Fl::handle(FL_KEYBOARD, window)) {
|
|
|
|
if (uMsg == WM_DEADCHAR || uMsg == WM_SYSDEADCHAR)
|
|
|
|
Fl::compose_state = 1;
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
break; // WM_KEYDOWN ... WM_SYSKEYUP, WM_DEADCHAR ... WM_SYSCHAR
|
2017-12-19 15:52:57 +03:00
|
|
|
} // case WM_DEADCHAR ... WM_SYSCHAR
|
|
|
|
|
|
|
|
case WM_MOUSEWHEEL: {
|
2020-07-01 19:03:10 +03:00
|
|
|
static int delta = 0; // running total of all motion
|
|
|
|
delta += (SHORT)(HIWORD(wParam));
|
|
|
|
Fl::e_dx = 0;
|
|
|
|
Fl::e_dy = -delta / WHEEL_DELTA;
|
|
|
|
delta += Fl::e_dy * WHEEL_DELTA;
|
|
|
|
if (Fl::e_dy)
|
|
|
|
Fl::handle(FL_MOUSEWHEEL, window);
|
|
|
|
return 0;
|
1998-10-06 23:14:55 +04:00
|
|
|
}
|
|
|
|
|
2017-12-19 15:52:57 +03:00
|
|
|
case WM_MOUSEHWHEEL: {
|
2020-07-01 19:03:10 +03:00
|
|
|
static int delta = 0; // running total of all motion
|
|
|
|
delta += (SHORT)(HIWORD(wParam));
|
|
|
|
Fl::e_dy = 0;
|
|
|
|
Fl::e_dx = delta / WHEEL_DELTA;
|
|
|
|
delta -= Fl::e_dx * WHEEL_DELTA;
|
|
|
|
if (Fl::e_dx)
|
|
|
|
Fl::handle(FL_MOUSEWHEEL, window);
|
|
|
|
return 0;
|
2017-07-03 20:31:57 +03:00
|
|
|
}
|
1998-10-06 23:14:55 +04:00
|
|
|
|
2017-12-19 15:52:57 +03:00
|
|
|
case WM_GETMINMAXINFO:
|
2020-07-01 19:03:10 +03:00
|
|
|
Fl_WinAPI_Window_Driver::driver(window)->set_minmax((LPMINMAXINFO)lParam);
|
|
|
|
break;
|
2002-03-07 22:22:58 +03:00
|
|
|
|
2017-12-19 15:52:57 +03:00
|
|
|
case WM_SIZE:
|
2020-07-01 19:03:10 +03:00
|
|
|
if (!window->parent()) {
|
|
|
|
if (wParam == SIZE_MINIMIZED || wParam == SIZE_MAXHIDE) {
|
|
|
|
Fl::handle(FL_HIDE, window);
|
|
|
|
} else {
|
|
|
|
Fl::handle(FL_SHOW, window);
|
|
|
|
resize_bug_fix = window;
|
2021-02-13 23:12:52 +03:00
|
|
|
window->size(int(ceil(LOWORD(lParam) / scale)), int(ceil(HIWORD(lParam) / scale)));
|
2020-07-01 19:03:10 +03:00
|
|
|
// fprintf(LOG,"WM_SIZE size(%.0f,%.0f) graph(%d,%d) s=%.2f\n",
|
|
|
|
// ceil(LOWORD(lParam)/scale),ceil(HIWORD(lParam)/scale),
|
|
|
|
// LOWORD(lParam),HIWORD(lParam),scale);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
break;
|
2013-09-11 16:54:40 +04:00
|
|
|
|
2017-12-19 15:52:57 +03:00
|
|
|
case WM_MOVE: {
|
2020-07-01 19:03:10 +03:00
|
|
|
if (IsIconic(hWnd)) {
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
resize_bug_fix = window;
|
|
|
|
int nx = LOWORD(lParam);
|
|
|
|
int ny = HIWORD(lParam);
|
|
|
|
if (nx & 0x8000) nx -= 65536;
|
|
|
|
if (ny & 0x8000) ny -= 65536;
|
|
|
|
// fprintf(LOG,"WM_MOVE position(%d,%d) s=%.2f\n",int(nx/scale),int(ny/scale),scale);
|
|
|
|
// detect when window centre changes screen
|
|
|
|
Fl_WinAPI_Screen_Driver *sd = (Fl_WinAPI_Screen_Driver *)Fl::screen_driver();
|
|
|
|
Fl_WinAPI_Window_Driver *wd = Fl_WinAPI_Window_Driver::driver(window);
|
|
|
|
int olds = wd->screen_num();
|
2021-02-13 23:12:52 +03:00
|
|
|
int news = sd->screen_num_unscaled(nx + int(window->w() * scale / 2), ny + int(window->h() * scale / 2));
|
2020-07-01 19:03:10 +03:00
|
|
|
if (news == -1)
|
|
|
|
news = olds;
|
|
|
|
float s = sd->scale(news);
|
|
|
|
// fprintf(LOG,"WM_MOVE olds=%d(%.2f) news=%d(%.2f) busy=%d\n",olds,
|
|
|
|
// sd->scale(olds),news, s,
|
|
|
|
// Fl_WinAPI_Window_Driver::data_for_resize_window_between_screens_.busy);
|
|
|
|
// fflush(LOG);
|
2021-02-10 12:18:55 +03:00
|
|
|
if (olds != news && !window->parent()) {
|
2020-07-01 19:03:10 +03:00
|
|
|
if (s != sd->scale(olds) &&
|
|
|
|
!Fl_WinAPI_Window_Driver::data_for_resize_window_between_screens_.busy &&
|
|
|
|
window->user_data() != &Fl_WinAPI_Screen_Driver::transient_scale_display) {
|
|
|
|
Fl_WinAPI_Window_Driver::data_for_resize_window_between_screens_.busy = true;
|
|
|
|
Fl_WinAPI_Window_Driver::data_for_resize_window_between_screens_.screen = news;
|
|
|
|
Fl::add_timeout(1, Fl_WinAPI_Window_Driver::resize_after_screen_change, window);
|
|
|
|
}
|
|
|
|
else if (!Fl_WinAPI_Window_Driver::data_for_resize_window_between_screens_.busy)
|
|
|
|
wd->screen_num(news);
|
|
|
|
}
|
2021-02-13 23:12:52 +03:00
|
|
|
window->position(int(round(nx/scale)), int(round(ny/scale)));
|
2020-07-01 19:03:10 +03:00
|
|
|
break;
|
2017-12-19 15:52:57 +03:00
|
|
|
} // case WM_MOVE
|
2013-09-11 16:54:40 +04:00
|
|
|
|
2017-12-19 15:52:57 +03:00
|
|
|
case WM_SETCURSOR:
|
2020-07-01 19:03:10 +03:00
|
|
|
if (LOWORD(lParam) == HTCLIENT) {
|
|
|
|
while (window->parent())
|
|
|
|
window = window->window();
|
|
|
|
SetCursor(Fl_WinAPI_Window_Driver::driver(window)->cursor);
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
break;
|
2013-09-11 16:54:40 +04:00
|
|
|
|
2017-12-19 15:52:57 +03:00
|
|
|
#if USE_COLORMAP
|
|
|
|
case WM_QUERYNEWPALETTE:
|
2020-07-01 19:03:10 +03:00
|
|
|
fl_GetDC(hWnd);
|
|
|
|
if (fl_select_palette())
|
|
|
|
InvalidateRect(hWnd, NULL, FALSE);
|
|
|
|
break;
|
2013-09-11 16:54:40 +04:00
|
|
|
|
2017-12-19 15:52:57 +03:00
|
|
|
case WM_PALETTECHANGED:
|
2020-07-01 19:03:10 +03:00
|
|
|
if ((HWND)wParam != hWnd && fl_select_palette())
|
|
|
|
UpdateColors(fl_GetDC(hWnd));
|
|
|
|
break;
|
1998-10-06 23:14:55 +04:00
|
|
|
|
2017-12-19 15:52:57 +03:00
|
|
|
case WM_CREATE:
|
2020-07-01 19:03:10 +03:00
|
|
|
fl_GetDC(hWnd);
|
|
|
|
fl_select_palette();
|
|
|
|
break;
|
2017-12-19 15:52:57 +03:00
|
|
|
#endif
|
2008-09-11 03:56:49 +04:00
|
|
|
|
2017-12-19 15:52:57 +03:00
|
|
|
case WM_DESTROYCLIPBOARD:
|
2020-07-01 19:03:10 +03:00
|
|
|
fl_i_own_selection[1] = 0;
|
|
|
|
return 1;
|
2017-12-19 15:52:57 +03:00
|
|
|
|
2019-06-17 00:41:51 +03:00
|
|
|
case WM_DISPLAYCHANGE: {// occurs when screen configuration (number, size, position) changes
|
|
|
|
Fl::call_screen_init();
|
|
|
|
Fl_WinAPI_Screen_Driver *sd = (Fl_WinAPI_Screen_Driver*)Fl::screen_driver();
|
|
|
|
for (int ns = 0; ns < sd->screen_count(); ns++) {
|
|
|
|
sd->rescale_all_windows_from_screen(ns, sd->dpi[ns][0]/96);
|
|
|
|
}
|
|
|
|
Fl::handle(FL_SCREEN_CONFIGURATION_CHANGED, NULL);
|
|
|
|
return 0;
|
|
|
|
}
|
2017-12-19 15:52:57 +03:00
|
|
|
case WM_CHANGECBCHAIN:
|
2020-07-01 19:03:10 +03:00
|
|
|
if ((hWnd == clipboard_wnd) && (next_clipboard_wnd == (HWND)wParam))
|
|
|
|
next_clipboard_wnd = (HWND)lParam;
|
|
|
|
else
|
|
|
|
SendMessage(next_clipboard_wnd, WM_CHANGECBCHAIN, wParam, lParam);
|
|
|
|
return 0;
|
2017-12-19 15:52:57 +03:00
|
|
|
|
|
|
|
case WM_DRAWCLIPBOARD:
|
2020-07-01 19:03:10 +03:00
|
|
|
// When the clipboard moves between two FLTK windows,
|
|
|
|
// fl_i_own_selection will temporarily be false as we are
|
|
|
|
// processing this message. Hence the need to use fl_find().
|
|
|
|
if (!initial_clipboard && !fl_find(GetClipboardOwner()))
|
|
|
|
fl_trigger_clipboard_notify(1);
|
|
|
|
initial_clipboard = false;
|
2017-12-19 15:52:57 +03:00
|
|
|
|
2020-07-01 19:03:10 +03:00
|
|
|
if (next_clipboard_wnd)
|
|
|
|
SendMessage(next_clipboard_wnd, WM_DRAWCLIPBOARD, wParam, lParam);
|
2017-12-19 15:52:57 +03:00
|
|
|
|
2020-07-01 19:03:10 +03:00
|
|
|
return 0;
|
2017-12-19 15:52:57 +03:00
|
|
|
|
|
|
|
default:
|
2020-07-01 19:03:10 +03:00
|
|
|
if (Fl::handle(0, 0))
|
|
|
|
return 0;
|
|
|
|
break;
|
2017-12-19 15:52:57 +03:00
|
|
|
} // switch (uMsg)
|
|
|
|
} // if (window)
|
2009-02-21 13:18:47 +03:00
|
|
|
return DefWindowProcW(hWnd, uMsg, wParam, lParam);
|
1998-10-06 23:14:55 +04:00
|
|
|
}
|
|
|
|
|
2019-06-16 13:00:38 +03:00
|
|
|
/* Implementation note about the API to get the dimensions of the top/left borders and the title bar
|
2020-07-01 19:03:10 +03:00
|
|
|
|
2022-02-27 22:45:07 +03:00
|
|
|
Function fake_X_wm() below is used before calling CreateWindowExW() to create
|
2019-06-16 13:00:38 +03:00
|
|
|
a window and before calling SetWindowPos(). Both of these Windows functions need the window size
|
2022-02-27 22:45:07 +03:00
|
|
|
including borders and title bar. Function fake_X_wm() uses AdjustWindowRectExForDpi() or
|
2019-06-16 13:00:38 +03:00
|
|
|
AdjustWindowRectEx() to get the sizes of borders and title bar. The gotten values don't always match
|
|
|
|
what is seen on the display, but they are the **required** values so the subsequent calls to
|
|
|
|
CreateWindowExW() or SetWindowPos() correctly size the window.
|
|
|
|
The Windows doc of AdjustWindowRectExForDpi/AdjustWindowRectEx makes this very clear:
|
|
|
|
Calculates the required size of the window rectangle, based on the desired size of the client
|
|
|
|
rectangle [and the provided DPI]. This window rectangle can then be passed to the CreateWindowEx
|
|
|
|
function to create a window with a client area of the desired size.
|
2020-07-01 19:03:10 +03:00
|
|
|
|
2019-06-16 13:00:38 +03:00
|
|
|
Conversely, Fl_WinAPI_Window_Driver::border_width_title_bar_height() is used to get
|
|
|
|
the true sizes of borders and title bar of a mapped window. The correct API for that is
|
|
|
|
DwmGetWindowAttribute().
|
|
|
|
*/
|
|
|
|
|
2022-02-27 22:45:07 +03:00
|
|
|
// /////////////////////////////////////////////////////////////////
|
1998-11-05 19:04:53 +03:00
|
|
|
// This function gets the dimensions of the top/left borders and
|
|
|
|
// the title bar, if there is one, based on the FL_BORDER, FL_MODAL
|
1999-03-29 21:39:46 +04:00
|
|
|
// and FL_NONMODAL flags, and on the window's size range.
|
1998-11-05 19:04:53 +03:00
|
|
|
// It returns the following values:
|
|
|
|
//
|
|
|
|
// value | border | title bar
|
|
|
|
// 0 | none | no
|
1998-11-08 17:36:56 +03:00
|
|
|
// 1 | fix | yes
|
|
|
|
// 2 | size | yes
|
1998-11-05 19:04:53 +03:00
|
|
|
|
2022-02-27 22:45:07 +03:00
|
|
|
int Fl_WinAPI_Window_Driver::fake_X_wm(int &X, int &Y, int &bt, int &bx, int &by, DWORD style, DWORD styleEx) {
|
|
|
|
|
|
|
|
const Fl_Window *w = pWindow;
|
|
|
|
|
2016-04-06 00:15:45 +03:00
|
|
|
int W = 0, H = 0, xoff = 0, yoff = 0, dx = 0, dy = 0;
|
1998-11-08 17:36:56 +03:00
|
|
|
int ret = bx = by = bt = 0;
|
2005-05-30 02:36:25 +04:00
|
|
|
|
|
|
|
int fallback = 1;
|
2022-02-27 22:45:07 +03:00
|
|
|
float s = Fl::screen_driver()->scale(screen_num());
|
2005-05-30 02:36:25 +04:00
|
|
|
if (!w->parent()) {
|
2019-06-16 13:00:38 +03:00
|
|
|
if (fl_xid(w) || style) {
|
2005-05-30 02:36:25 +04:00
|
|
|
// The block below calculates the window borders by requesting the
|
|
|
|
// required decorated window rectangle for a desired client rectangle.
|
2016-01-28 20:38:11 +03:00
|
|
|
// If any part of the function above fails, we will drop to a
|
2005-05-30 02:36:25 +04:00
|
|
|
// fallback to get the best guess which is always available.
|
2016-01-28 20:38:11 +03:00
|
|
|
|
2017-12-19 15:52:57 +03:00
|
|
|
if (!style) {
|
2020-07-01 19:03:10 +03:00
|
|
|
HWND hwnd = fl_xid(w);
|
|
|
|
// request the style flags of this window, as Windows sees them
|
|
|
|
style = GetWindowLong(hwnd, GWL_STYLE);
|
|
|
|
styleEx = GetWindowLong(hwnd, GWL_EXSTYLE);
|
2017-12-19 15:52:57 +03:00
|
|
|
}
|
2015-04-07 09:28:34 +03:00
|
|
|
|
2005-05-30 02:36:25 +04:00
|
|
|
RECT r;
|
2020-11-29 11:48:23 +03:00
|
|
|
int drawingX, drawingY; // drawing coordinates of window top-left
|
2021-02-13 23:12:52 +03:00
|
|
|
r.left = drawingX = int(round(w->x() * s));
|
|
|
|
r.top = drawingY = int(round(w->y() * s));
|
|
|
|
r.right = drawingX + int(w->w() * s);
|
|
|
|
r.bottom = drawingY + int(w->h() * s);
|
2005-05-30 02:36:25 +04:00
|
|
|
// get the decoration rectangle for the desired client rectangle
|
2020-07-01 19:03:10 +03:00
|
|
|
|
2019-06-16 13:00:38 +03:00
|
|
|
typedef BOOL(WINAPI* AdjustWindowRectExForDpi_type)(LPRECT, DWORD, BOOL, DWORD, UINT);
|
|
|
|
static AdjustWindowRectExForDpi_type fl_AdjustWindowRectExForDpi =
|
|
|
|
(AdjustWindowRectExForDpi_type)GetProcAddress(LoadLibrary("User32.DLL"), "AdjustWindowRectExForDpi");
|
|
|
|
BOOL ok;
|
2021-12-11 13:39:48 +03:00
|
|
|
if (is_dpi_aware && fl_AdjustWindowRectExForDpi) {
|
2019-06-16 13:00:38 +03:00
|
|
|
Fl_WinAPI_Screen_Driver *sd = (Fl_WinAPI_Screen_Driver*)Fl::screen_driver();
|
2022-02-27 22:45:07 +03:00
|
|
|
UINT dpi = UINT(sd->dpi[screen_num()][0]);
|
2019-06-16 13:00:38 +03:00
|
|
|
ok = fl_AdjustWindowRectExForDpi(&r, style, FALSE, styleEx, dpi);
|
|
|
|
} else
|
|
|
|
ok = AdjustWindowRectEx(&r, style, FALSE, styleEx);
|
2005-05-30 02:36:25 +04:00
|
|
|
if (ok) {
|
2020-07-01 19:03:10 +03:00
|
|
|
X = r.left;
|
|
|
|
Y = r.top;
|
|
|
|
W = r.right - r.left;
|
|
|
|
H = r.bottom - r.top;
|
2020-11-29 11:48:23 +03:00
|
|
|
bx = drawingX - r.left;
|
2020-12-01 18:57:55 +03:00
|
|
|
by = r.bottom - int(drawingY + w->h() * s); // height of the bottom frame
|
2022-02-27 22:45:07 +03:00
|
|
|
bt = drawingY - r.top - by; // height of top caption bar
|
2020-07-01 19:03:10 +03:00
|
|
|
xoff = bx;
|
|
|
|
yoff = by + bt;
|
2020-12-01 18:57:55 +03:00
|
|
|
dx = W - int(w->w() * s);
|
|
|
|
dy = H - int(w->h() * s);
|
2022-02-27 22:45:07 +03:00
|
|
|
if (maxw() != minw() || maxh() != minh())
|
2020-07-01 19:03:10 +03:00
|
|
|
ret = 2;
|
|
|
|
else
|
|
|
|
ret = 1;
|
|
|
|
fallback = 0;
|
2005-05-30 02:36:25 +04:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
// This is the original (pre 1.1.7) routine to calculate window border sizes.
|
|
|
|
if (fallback) {
|
|
|
|
if (w->border() && !w->parent()) {
|
2022-02-27 22:45:07 +03:00
|
|
|
if (maxw() != minw() || maxh() != minh()) {
|
2020-07-01 19:03:10 +03:00
|
|
|
ret = 2;
|
|
|
|
bx = GetSystemMetrics(SM_CXSIZEFRAME);
|
|
|
|
by = GetSystemMetrics(SM_CYSIZEFRAME);
|
2005-05-30 02:36:25 +04:00
|
|
|
} else {
|
2020-07-01 19:03:10 +03:00
|
|
|
ret = 1;
|
|
|
|
int padding = GetSystemMetrics(SM_CXPADDEDBORDER);
|
|
|
|
NONCLIENTMETRICS ncm;
|
|
|
|
ncm.cbSize = sizeof(NONCLIENTMETRICS);
|
|
|
|
SystemParametersInfo(SPI_GETNONCLIENTMETRICS, 0, &ncm, 0);
|
|
|
|
bx = GetSystemMetrics(SM_CXFIXEDFRAME) + (padding ? padding + ncm.iBorderWidth : 0);
|
|
|
|
by = GetSystemMetrics(SM_CYFIXEDFRAME) + (padding ? padding + ncm.iBorderWidth : 0);
|
2005-05-30 02:36:25 +04:00
|
|
|
}
|
|
|
|
bt = GetSystemMetrics(SM_CYCAPTION);
|
1998-11-08 17:36:56 +03:00
|
|
|
}
|
2017-12-19 15:52:57 +03:00
|
|
|
// The coordinates of the whole window, including non-client area
|
2005-05-30 02:36:25 +04:00
|
|
|
xoff = bx;
|
|
|
|
yoff = by + bt;
|
2017-12-19 15:52:57 +03:00
|
|
|
dx = 2 * bx;
|
|
|
|
dy = 2 * by + bt;
|
|
|
|
X = w->x() - xoff;
|
|
|
|
Y = w->y() - yoff;
|
|
|
|
W = w->w() + dx;
|
|
|
|
H = w->h() + dy;
|
1998-11-05 19:04:53 +03:00
|
|
|
}
|
1998-11-08 17:36:56 +03:00
|
|
|
|
2017-12-19 15:52:57 +03:00
|
|
|
// Proceed to positioning the window fully inside the screen, if possible
|
|
|
|
// Find screen that contains most of the window
|
|
|
|
// FIXME: this ought to be the "work area" instead of the entire screen !
|
2016-04-06 00:15:45 +03:00
|
|
|
int scr_x = 0, scr_y = 0, scr_w = 0, scr_h = 0;
|
2021-02-13 23:12:52 +03:00
|
|
|
int ns = Fl::screen_num(int(round(X / s)), int(round(Y / s)), int(W / s), int(H / s));
|
2020-11-29 11:48:23 +03:00
|
|
|
((Fl_WinAPI_Screen_Driver*)Fl::screen_driver())->screen_xywh_unscaled(scr_x, scr_y, scr_w, scr_h, ns);
|
2017-12-19 15:52:57 +03:00
|
|
|
// Make border's lower right corner visible
|
|
|
|
if (scr_x + scr_w < X + W)
|
|
|
|
X = scr_x + scr_w - W;
|
|
|
|
if (scr_y + scr_h < Y + H)
|
|
|
|
Y = scr_y + scr_h - H;
|
|
|
|
// Make border's upper left corner visible
|
|
|
|
if (X < scr_x)
|
|
|
|
X = scr_x;
|
|
|
|
if (Y < scr_y)
|
|
|
|
Y = scr_y;
|
|
|
|
// Make client area's lower right corner visible
|
|
|
|
if (scr_x + scr_w < X + dx + w->w())
|
2020-12-01 18:57:55 +03:00
|
|
|
X = scr_x + scr_w - int(w->w() * s) - dx;
|
2017-12-19 15:52:57 +03:00
|
|
|
if (scr_y + scr_h < Y + dy + w->h())
|
2020-12-01 18:57:55 +03:00
|
|
|
Y = scr_y + scr_h - int(w->h() * s) - dy;
|
2017-12-19 15:52:57 +03:00
|
|
|
// Make client area's upper left corner visible
|
|
|
|
if (X + xoff < scr_x)
|
|
|
|
X = scr_x - xoff;
|
|
|
|
if (Y + yoff < scr_y)
|
|
|
|
Y = scr_y - yoff;
|
|
|
|
// Return the client area's top left corner in (X,Y)
|
|
|
|
X += xoff;
|
|
|
|
Y += yoff;
|
1998-11-08 17:36:56 +03:00
|
|
|
|
2012-04-09 13:12:34 +04:00
|
|
|
if (w->fullscreen_active()) {
|
2012-03-23 20:47:53 +04:00
|
|
|
bx = by = bt = 0;
|
|
|
|
}
|
|
|
|
|
1998-11-05 19:04:53 +03:00
|
|
|
return ret;
|
|
|
|
}
|
|
|
|
|
1998-10-06 23:14:55 +04:00
|
|
|
////////////////////////////////////////////////////////////////
|
|
|
|
|
2017-12-19 15:52:57 +03:00
|
|
|
void Fl_WinAPI_Window_Driver::resize(int X, int Y, int W, int H) {
|
2019-06-16 13:00:38 +03:00
|
|
|
//fprintf(stderr, "resize w()=%d W=%d h()=%d H=%d\n",pWindow->w(), W,pWindow->h(), H);
|
2017-12-19 15:52:57 +03:00
|
|
|
UINT flags = SWP_NOSENDCHANGING | SWP_NOZORDER | SWP_NOACTIVATE | SWP_NOOWNERZORDER;
|
2020-05-08 18:08:20 +03:00
|
|
|
int is_a_resize = (W != w() || H != h() || Fl_Window::is_a_rescale());
|
2016-03-23 00:21:08 +03:00
|
|
|
int resize_from_program = (pWindow != resize_bug_fix);
|
2017-12-19 15:52:57 +03:00
|
|
|
if (!resize_from_program)
|
|
|
|
resize_bug_fix = 0;
|
2020-05-08 18:08:20 +03:00
|
|
|
if (X != x() || Y != y() || Fl_Window::is_a_rescale()) {
|
2009-12-24 14:40:26 +03:00
|
|
|
force_position(1);
|
2002-04-10 01:17:01 +04:00
|
|
|
} else {
|
2017-12-19 15:52:57 +03:00
|
|
|
if (!is_a_resize)
|
|
|
|
return;
|
2002-04-10 01:17:01 +04:00
|
|
|
flags |= SWP_NOMOVE;
|
|
|
|
}
|
1998-10-20 01:00:26 +04:00
|
|
|
if (is_a_resize) {
|
2020-03-25 14:15:44 +03:00
|
|
|
if (resize_from_program && shown()) {
|
|
|
|
// don't obey "resize from program" when window is maximized
|
|
|
|
WINDOWPLACEMENT wplace;
|
|
|
|
wplace.length = sizeof(WINDOWPLACEMENT);
|
|
|
|
BOOL ok = GetWindowPlacement(fl_xid(pWindow), &wplace);
|
|
|
|
if (ok && wplace.showCmd == SW_SHOWMAXIMIZED) return;
|
|
|
|
}
|
2017-12-19 15:52:57 +03:00
|
|
|
pWindow->Fl_Group::resize(X, Y, W, H);
|
2016-03-24 04:20:08 +03:00
|
|
|
if (visible_r()) {
|
2016-03-23 00:21:08 +03:00
|
|
|
pWindow->redraw();
|
2016-01-28 20:38:11 +03:00
|
|
|
// only wait for exposure if this window has a size - a window
|
2007-12-20 19:22:53 +03:00
|
|
|
// with no width or height will never get an exposure event
|
2016-03-23 00:21:08 +03:00
|
|
|
Fl_X *i = Fl_X::i(pWindow);
|
2017-12-19 15:52:57 +03:00
|
|
|
if (i && W > 0 && H > 0)
|
2020-07-01 19:03:10 +03:00
|
|
|
wait_for_expose_value = 1;
|
2007-12-20 19:22:53 +03:00
|
|
|
}
|
1998-10-20 01:00:26 +04:00
|
|
|
} else {
|
2017-12-19 15:52:57 +03:00
|
|
|
x(X);
|
|
|
|
y(Y);
|
1998-11-08 17:36:56 +03:00
|
|
|
flags |= SWP_NOSIZE;
|
1998-10-20 01:00:26 +04:00
|
|
|
}
|
2017-12-19 15:52:57 +03:00
|
|
|
if (!border())
|
|
|
|
flags |= SWP_NOACTIVATE;
|
2016-03-24 04:20:08 +03:00
|
|
|
if (resize_from_program && shown()) {
|
2005-05-30 02:36:25 +04:00
|
|
|
int dummy_x, dummy_y, bt, bx, by;
|
2017-06-19 20:30:03 +03:00
|
|
|
// compute window position and size in scaled units
|
2017-06-18 19:01:53 +03:00
|
|
|
float s = Fl::screen_driver()->scale(screen_num());
|
2021-02-13 23:12:52 +03:00
|
|
|
int scaledX = int(round(X * s)), scaledY = int(round(Y * s)), scaledW = int(W * s), scaledH = int(H * s);
|
2017-12-19 15:52:57 +03:00
|
|
|
// Ignore window managing when resizing, so that windows (and more
|
|
|
|
// specifically menus) can be moved offscreen.
|
2016-04-19 18:33:58 +03:00
|
|
|
if (fake_X_wm(dummy_x, dummy_y, bt, bx, by)) {
|
2017-06-19 20:30:03 +03:00
|
|
|
scaledX -= bx;
|
2017-12-19 15:52:57 +03:00
|
|
|
scaledY -= by + bt;
|
|
|
|
scaledW += 2 * bx;
|
|
|
|
scaledH += 2 * by + bt;
|
1998-11-08 17:36:56 +03:00
|
|
|
}
|
2006-08-23 15:47:58 +04:00
|
|
|
// avoid zero size windows. A zero sized window on Win32
|
|
|
|
// will cause continouly new redraw events.
|
2017-12-19 15:52:57 +03:00
|
|
|
if (scaledW <= 0)
|
|
|
|
scaledW = 1;
|
|
|
|
if (scaledH <= 0)
|
|
|
|
scaledH = 1;
|
2017-06-19 20:30:03 +03:00
|
|
|
SetWindowPos(fl_xid(pWindow), 0, scaledX, scaledY, scaledW, scaledH, flags);
|
1998-10-06 23:14:55 +04:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2012-03-23 20:47:53 +04:00
|
|
|
|
1998-10-06 23:14:55 +04:00
|
|
|
////////////////////////////////////////////////////////////////
|
|
|
|
|
2005-09-14 11:30:32 +04:00
|
|
|
/*
|
2018-06-23 23:50:22 +03:00
|
|
|
This silly little class remembers the name of all window classes
|
|
|
|
we register to avoid double registration. It has the added bonus
|
|
|
|
of freeing everything on application close as well.
|
2005-09-14 11:30:32 +04:00
|
|
|
*/
|
|
|
|
class NameList {
|
|
|
|
public:
|
2017-12-19 15:52:57 +03:00
|
|
|
NameList() {
|
|
|
|
name = (char **)malloc(sizeof(char **));
|
|
|
|
NName = 1;
|
|
|
|
nName = 0;
|
|
|
|
}
|
2016-01-28 20:38:11 +03:00
|
|
|
~NameList() {
|
2005-09-14 11:30:32 +04:00
|
|
|
int i;
|
2017-12-19 15:52:57 +03:00
|
|
|
for (i = 0; i < nName; i++)
|
|
|
|
free(name[i]);
|
|
|
|
if (name)
|
|
|
|
free(name);
|
2005-09-14 11:30:32 +04:00
|
|
|
}
|
|
|
|
void add_name(const char *n) {
|
2017-12-19 15:52:57 +03:00
|
|
|
if (NName == nName) {
|
2005-09-14 11:30:32 +04:00
|
|
|
NName += 5;
|
2017-12-19 15:52:57 +03:00
|
|
|
name = (char **)realloc(name, NName * sizeof(char *));
|
2005-09-14 11:30:32 +04:00
|
|
|
}
|
2020-07-22 06:15:41 +03:00
|
|
|
name[nName++] = fl_strdup(n);
|
2005-09-14 11:30:32 +04:00
|
|
|
}
|
|
|
|
char has_name(const char *n) {
|
|
|
|
int i;
|
2017-12-19 15:52:57 +03:00
|
|
|
for (i = 0; i < nName; i++) {
|
|
|
|
if (strcmp(name[i], n) == 0)
|
2020-07-01 19:03:10 +03:00
|
|
|
return 1;
|
2005-09-14 11:30:32 +04:00
|
|
|
}
|
|
|
|
return 0;
|
|
|
|
}
|
2017-12-19 15:52:57 +03:00
|
|
|
|
2005-09-14 11:30:32 +04:00
|
|
|
private:
|
|
|
|
char **name;
|
|
|
|
int nName, NName;
|
|
|
|
};
|
|
|
|
|
2001-11-22 18:35:02 +03:00
|
|
|
void fl_fix_focus(); // in Fl.cxx
|
1999-03-03 10:40:18 +03:00
|
|
|
|
2002-07-02 00:14:08 +04:00
|
|
|
UINT fl_wake_msg = 0;
|
1998-10-06 23:14:55 +04:00
|
|
|
int fl_disable_transient_for; // secret method of removing TRANSIENT_FOR
|
|
|
|
|
2017-12-19 15:52:57 +03:00
|
|
|
Fl_X *Fl_WinAPI_Window_Driver::makeWindow() {
|
1998-10-06 23:14:55 +04:00
|
|
|
Fl_Group::current(0); // get rid of very common user bug: forgot end()
|
|
|
|
|
2014-09-15 13:35:05 +04:00
|
|
|
fl_open_display();
|
|
|
|
|
2007-06-18 17:08:57 +04:00
|
|
|
// if the window is a subwindow and our parent is not mapped yet, we
|
|
|
|
// mark this window visible, so that mapping the parent at a later
|
|
|
|
// point in time will call this function again to finally map the subwindow.
|
2017-12-19 15:52:57 +03:00
|
|
|
Fl_Window *w = pWindow;
|
2007-06-18 17:08:57 +04:00
|
|
|
if (w->parent() && !Fl_X::i(w->window())) {
|
|
|
|
w->set_visible();
|
|
|
|
return 0L;
|
|
|
|
}
|
|
|
|
|
2005-09-14 11:30:32 +04:00
|
|
|
static NameList class_name_list;
|
2005-07-24 23:08:31 +04:00
|
|
|
static const char *first_class_name = 0L;
|
|
|
|
const char *class_name = w->xclass();
|
2017-12-19 15:52:57 +03:00
|
|
|
if (!class_name)
|
|
|
|
class_name = first_class_name; // reuse first class name used
|
|
|
|
if (!class_name)
|
|
|
|
class_name = "FLTK"; // default to create a "FLTK" WNDCLASS
|
2005-07-24 23:08:31 +04:00
|
|
|
if (!first_class_name) {
|
|
|
|
first_class_name = class_name;
|
|
|
|
}
|
1999-01-04 22:25:40 +03:00
|
|
|
|
2010-09-09 19:59:20 +04:00
|
|
|
wchar_t class_namew[100]; // (limited) buffer for Windows class name
|
|
|
|
|
|
|
|
// convert UTF-8 class_name to wchar_t for RegisterClassExW and CreateWindowExW
|
|
|
|
|
2012-04-05 09:12:30 +04:00
|
|
|
fl_utf8toUtf16(class_name,
|
2020-07-01 19:03:10 +03:00
|
|
|
(unsigned)strlen(class_name), // in
|
|
|
|
(unsigned short *)class_namew, // out
|
|
|
|
(unsigned)sizeof(class_namew) / sizeof(wchar_t)); // max. size
|
2010-09-09 19:59:20 +04:00
|
|
|
|
2005-09-14 11:30:32 +04:00
|
|
|
if (!class_name_list.has_name(class_name)) {
|
2009-02-21 13:01:57 +03:00
|
|
|
WNDCLASSEXW wcw;
|
2008-09-11 03:56:49 +04:00
|
|
|
memset(&wcw, 0, sizeof(wcw));
|
|
|
|
wcw.cbSize = sizeof(WNDCLASSEXW);
|
|
|
|
|
2005-09-13 03:03:34 +04:00
|
|
|
// Documentation states a device context consumes about 800 bytes
|
|
|
|
// of memory... so who cares? If 800 bytes per window is what it
|
|
|
|
// takes to speed things up, I'm game.
|
2008-09-11 03:56:49 +04:00
|
|
|
wcw.style = CS_HREDRAW | CS_VREDRAW | CS_OWNDC | CS_DBLCLKS;
|
|
|
|
wcw.lpfnWndProc = (WNDPROC)WndProc;
|
|
|
|
wcw.cbClsExtra = wcw.cbWndExtra = 0;
|
|
|
|
wcw.hInstance = fl_display;
|
2016-04-19 18:33:58 +03:00
|
|
|
if (!w->icon() && !icon_->count)
|
2005-09-13 03:03:34 +04:00
|
|
|
w->icon((void *)LoadIcon(NULL, IDI_APPLICATION));
|
2008-09-11 03:56:49 +04:00
|
|
|
wcw.hIcon = wcw.hIconSm = (HICON)w->icon();
|
2014-06-16 15:17:57 +04:00
|
|
|
wcw.hCursor = LoadCursor(NULL, IDC_ARROW);
|
2008-09-11 03:56:49 +04:00
|
|
|
wcw.hbrBackground = NULL;
|
|
|
|
wcw.lpszMenuName = NULL;
|
|
|
|
wcw.lpszClassName = class_namew;
|
|
|
|
RegisterClassExW(&wcw);
|
2010-09-09 19:59:20 +04:00
|
|
|
class_name_list.add_name(class_name);
|
2009-02-21 13:01:57 +03:00
|
|
|
}
|
2005-09-14 11:30:32 +04:00
|
|
|
|
2017-12-19 15:52:57 +03:00
|
|
|
const wchar_t *message_namew = L"FLTK::ThreadWakeup";
|
|
|
|
if (!fl_wake_msg)
|
|
|
|
fl_wake_msg = RegisterWindowMessageW(message_namew);
|
1998-10-06 23:14:55 +04:00
|
|
|
|
|
|
|
HWND parent;
|
1998-11-05 19:04:53 +03:00
|
|
|
DWORD style = WS_CLIPCHILDREN | WS_CLIPSIBLINGS;
|
|
|
|
DWORD styleEx = WS_EX_LEFT;
|
|
|
|
|
2017-12-19 15:52:57 +03:00
|
|
|
// compute adequate screen where to put the window
|
2017-06-29 12:44:35 +03:00
|
|
|
int nscreen = 0;
|
|
|
|
if (w->parent()) {
|
2018-05-12 12:36:36 +03:00
|
|
|
nscreen = Fl_Window_Driver::driver(w->top_window())->screen_num();
|
|
|
|
} else if (Fl_Window_Driver::driver(w)->force_position() && Fl_WinAPI_Window_Driver::driver(w)->screen_num_ >= 0) {
|
|
|
|
nscreen = Fl_Window_Driver::driver(w)->screen_num();
|
2017-06-29 12:44:35 +03:00
|
|
|
} else {
|
|
|
|
Fl_Window *hint = Fl::first_window();
|
|
|
|
if (hint) {
|
2018-05-12 12:36:36 +03:00
|
|
|
nscreen = Fl_Window_Driver::driver(hint->top_window())->screen_num();
|
2017-07-03 20:31:57 +03:00
|
|
|
} else {
|
|
|
|
int mx, my;
|
|
|
|
nscreen = Fl::screen_driver()->get_mouse(mx, my);
|
2017-06-29 12:44:35 +03:00
|
|
|
}
|
|
|
|
}
|
2018-05-12 12:36:36 +03:00
|
|
|
Fl_Window_Driver::driver(w)->screen_num(nscreen);
|
2017-06-29 12:44:35 +03:00
|
|
|
float s = Fl::screen_driver()->scale(nscreen);
|
2021-02-13 23:12:52 +03:00
|
|
|
int xp = int(round(w->x() * s)); // these are in graphical units
|
|
|
|
int yp = int(round(w->y() * s));
|
|
|
|
int wp = int(w->w() * s);
|
|
|
|
int hp = int(w->h() * s);
|
1998-10-06 23:14:55 +04:00
|
|
|
|
2000-04-25 11:48:07 +04:00
|
|
|
int showit = 1;
|
|
|
|
|
1998-10-06 23:14:55 +04:00
|
|
|
if (w->parent()) {
|
2000-02-04 09:35:22 +03:00
|
|
|
style |= WS_CHILD;
|
|
|
|
styleEx |= WS_EX_WINDOWEDGE | WS_EX_CONTROLPARENT;
|
1998-10-06 23:14:55 +04:00
|
|
|
parent = fl_xid(w->window());
|
2022-02-23 01:28:04 +03:00
|
|
|
} else { // top level window
|
1998-11-05 19:04:53 +03:00
|
|
|
styleEx |= WS_EX_WINDOWEDGE | WS_EX_CONTROLPARENT;
|
2015-04-07 09:28:34 +03:00
|
|
|
|
|
|
|
int wintype = 0;
|
2022-02-23 01:28:04 +03:00
|
|
|
if (w->border()) {
|
|
|
|
if (is_resizable())
|
2020-07-01 19:03:10 +03:00
|
|
|
wintype = 2;
|
2017-12-19 15:52:57 +03:00
|
|
|
else
|
2020-07-01 19:03:10 +03:00
|
|
|
wintype = 1;
|
2015-04-07 09:28:34 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
switch (wintype) {
|
2002-04-30 00:18:01 +04:00
|
|
|
// No border (used for menus)
|
2012-03-23 20:47:53 +04:00
|
|
|
case 0:
|
2020-07-01 19:03:10 +03:00
|
|
|
style |= WS_POPUP;
|
|
|
|
styleEx |= WS_EX_TOOLWINDOW;
|
|
|
|
break;
|
1998-11-05 19:04:53 +03:00
|
|
|
|
|
|
|
// Thin border and title bar
|
2012-03-23 20:47:53 +04:00
|
|
|
case 1:
|
2020-07-01 19:03:10 +03:00
|
|
|
style |= WS_DLGFRAME | WS_CAPTION;
|
|
|
|
if (!w->modal())
|
|
|
|
style |= WS_SYSMENU | WS_MINIMIZEBOX;
|
|
|
|
break;
|
1998-11-05 19:04:53 +03:00
|
|
|
|
|
|
|
// Thick, resizable border and title bar, with maximize button
|
2012-03-23 20:47:53 +04:00
|
|
|
case 2:
|
2020-07-01 19:03:10 +03:00
|
|
|
style |= WS_THICKFRAME | WS_SYSMENU | WS_MAXIMIZEBOX | WS_CAPTION;
|
|
|
|
if (!w->modal())
|
|
|
|
style |= WS_MINIMIZEBOX;
|
|
|
|
break;
|
1998-11-08 17:36:56 +03:00
|
|
|
}
|
2015-04-07 09:28:34 +03:00
|
|
|
|
2017-12-19 15:52:57 +03:00
|
|
|
int xwm = xp, ywm = yp, bt, bx, by; // these are in graphical units
|
2022-02-27 22:45:07 +03:00
|
|
|
|
|
|
|
fake_X_wm(xwm, ywm, bt, bx, by, style, styleEx);
|
|
|
|
|
2017-12-19 15:52:57 +03:00
|
|
|
if (by + bt) {
|
|
|
|
wp += 2 * bx;
|
|
|
|
hp += 2 * by + bt;
|
1998-10-06 23:14:55 +04:00
|
|
|
}
|
2016-04-19 18:33:58 +03:00
|
|
|
if (!force_position()) {
|
1998-10-06 23:14:55 +04:00
|
|
|
xp = yp = CW_USEDEFAULT;
|
1998-11-05 19:04:53 +03:00
|
|
|
} else {
|
1998-11-08 17:36:56 +03:00
|
|
|
if (!Fl::grab()) {
|
2020-07-01 19:03:10 +03:00
|
|
|
xp = xwm;
|
|
|
|
yp = ywm;
|
2021-02-13 23:12:52 +03:00
|
|
|
x(int(round(xp / s)));
|
|
|
|
y(int(round(yp / s)));
|
1998-11-08 17:36:56 +03:00
|
|
|
}
|
1998-11-05 19:04:53 +03:00
|
|
|
xp -= bx;
|
2017-12-19 15:52:57 +03:00
|
|
|
yp -= by + bt;
|
1998-10-06 23:14:55 +04:00
|
|
|
}
|
1998-11-05 19:04:53 +03:00
|
|
|
|
1998-10-06 23:14:55 +04:00
|
|
|
parent = 0;
|
1999-01-07 19:43:04 +03:00
|
|
|
if (w->non_modal() && Fl_X::first && !fl_disable_transient_for) {
|
1998-10-06 23:14:55 +04:00
|
|
|
// find some other window to be "transient for":
|
2017-12-19 15:52:57 +03:00
|
|
|
Fl_Window *w = Fl_X::first->w;
|
|
|
|
while (w->parent())
|
2020-07-01 19:03:10 +03:00
|
|
|
w = w->window();
|
1999-01-07 19:43:04 +03:00
|
|
|
parent = fl_xid(w);
|
2017-12-19 15:52:57 +03:00
|
|
|
if (!w->visible())
|
2020-07-01 19:03:10 +03:00
|
|
|
showit = 0;
|
2017-12-19 15:52:57 +03:00
|
|
|
} else if (Fl::grab())
|
|
|
|
parent = fl_xid(Fl::grab());
|
1998-10-06 23:14:55 +04:00
|
|
|
}
|
|
|
|
|
2016-03-08 00:56:12 +03:00
|
|
|
Fl_X *x = new Fl_X;
|
2016-04-19 18:33:58 +03:00
|
|
|
other_xid = 0;
|
|
|
|
x->w = w;
|
|
|
|
i(x);
|
1998-10-06 23:14:55 +04:00
|
|
|
x->region = 0;
|
2016-04-19 22:37:49 +03:00
|
|
|
Fl_WinAPI_Window_Driver::driver(w)->private_dc = 0;
|
2016-04-19 18:33:58 +03:00
|
|
|
cursor = LoadCursor(NULL, IDC_ARROW);
|
|
|
|
custom_cursor = 0;
|
2017-12-19 15:52:57 +03:00
|
|
|
if (!fl_codepage)
|
|
|
|
fl_get_codepage();
|
2008-09-11 03:56:49 +04:00
|
|
|
|
2009-02-21 13:01:57 +03:00
|
|
|
WCHAR *lab = NULL;
|
|
|
|
if (w->label()) {
|
2012-04-05 09:12:30 +04:00
|
|
|
size_t l = strlen(w->label());
|
2017-12-19 15:52:57 +03:00
|
|
|
unsigned wlen = fl_utf8toUtf16(w->label(), (unsigned)l, NULL, 0); // Pass NULL to query length
|
2009-02-21 13:01:57 +03:00
|
|
|
wlen++;
|
2017-12-19 15:52:57 +03:00
|
|
|
lab = (WCHAR *)malloc(sizeof(WCHAR) * wlen);
|
|
|
|
wlen = fl_utf8toUtf16(w->label(), (unsigned)l, (unsigned short *)lab, wlen);
|
2009-02-21 13:01:57 +03:00
|
|
|
lab[wlen] = 0;
|
|
|
|
}
|
2022-03-15 08:42:06 +03:00
|
|
|
x->xid = (fl_uintptr_t)CreateWindowExW(styleEx,
|
2020-07-01 19:03:10 +03:00
|
|
|
class_namew, lab, style,
|
|
|
|
xp, yp, wp, hp,
|
|
|
|
parent,
|
|
|
|
NULL, // menu
|
|
|
|
fl_display,
|
|
|
|
NULL // creation parameters
|
|
|
|
);
|
2017-12-19 15:52:57 +03:00
|
|
|
if (lab)
|
|
|
|
free(lab);
|
2008-09-11 03:56:49 +04:00
|
|
|
|
2014-10-20 19:14:12 +04:00
|
|
|
x->next = Fl_X::first;
|
|
|
|
Fl_X::first = x;
|
|
|
|
|
2016-04-19 18:33:58 +03:00
|
|
|
set_icons();
|
2014-06-16 15:39:32 +04:00
|
|
|
|
2012-04-09 13:12:34 +04:00
|
|
|
if (w->fullscreen_active()) {
|
2017-12-19 15:52:57 +03:00
|
|
|
/* We need to make sure that the fullscreen is created on the
|
|
|
|
default monitor, ie the desktop where the shortcut is located
|
|
|
|
etc. This requires that CreateWindow is called with CW_USEDEFAULT
|
|
|
|
for x and y. We can then use GetWindowRect to determine which
|
|
|
|
monitor the window was placed on. */
|
2012-03-23 20:47:53 +04:00
|
|
|
RECT rect;
|
2022-03-15 08:42:06 +03:00
|
|
|
GetWindowRect((HWND)x->xid, &rect);
|
2017-12-19 15:52:57 +03:00
|
|
|
make_fullscreen(rect.left, rect.top, rect.right - rect.left, rect.bottom - rect.top);
|
2012-03-23 20:47:53 +04:00
|
|
|
}
|
|
|
|
|
2014-06-10 18:23:46 +04:00
|
|
|
// Setup clipboard monitor target if there are registered handlers and
|
|
|
|
// no window is targeted.
|
|
|
|
if (!fl_clipboard_notify_empty() && clipboard_wnd == NULL)
|
2022-03-15 08:42:06 +03:00
|
|
|
fl_clipboard_notify_target((HWND)x->xid);
|
2013-09-11 16:54:40 +04:00
|
|
|
|
2016-04-19 18:33:58 +03:00
|
|
|
wait_for_expose_value = 1;
|
2017-12-19 15:52:57 +03:00
|
|
|
if (show_iconic()) {
|
|
|
|
showit = 0;
|
|
|
|
show_iconic(0);
|
|
|
|
}
|
2000-04-25 11:48:07 +04:00
|
|
|
if (showit) {
|
|
|
|
w->set_visible();
|
2004-12-03 06:14:17 +03:00
|
|
|
int old_event = Fl::e_number;
|
|
|
|
w->handle(Fl::e_number = FL_SHOW); // get child windows to appear
|
|
|
|
Fl::e_number = old_event;
|
2000-04-25 11:48:07 +04:00
|
|
|
w->redraw(); // force draw to happen
|
|
|
|
}
|
2014-06-11 18:09:28 +04:00
|
|
|
|
|
|
|
// Needs to be done before ShowWindow() to get the correct behaviour
|
|
|
|
// when we get WM_SETFOCUS.
|
2017-12-19 15:52:57 +03:00
|
|
|
if (w->modal()) {
|
|
|
|
Fl::modal_ = w;
|
|
|
|
fl_fix_focus();
|
|
|
|
}
|
2014-06-11 18:09:28 +04:00
|
|
|
|
2006-06-28 14:23:33 +04:00
|
|
|
// If we've captured the mouse, we dont want to activate any
|
2011-04-24 21:09:41 +04:00
|
|
|
// other windows from the code, or we lose the capture.
|
2022-03-15 08:42:06 +03:00
|
|
|
ShowWindow((HWND)x->xid, !showit ? SW_SHOWMINNOACTIVE :
|
2020-07-01 19:03:10 +03:00
|
|
|
(Fl::grab() || (styleEx & WS_EX_TOOLWINDOW)) ? SW_SHOWNOACTIVATE : SW_SHOWNORMAL);
|
2002-04-10 19:01:22 +04:00
|
|
|
|
|
|
|
// Register all windows for potential drag'n'drop operations
|
2022-03-15 08:42:06 +03:00
|
|
|
RegisterDragDrop((HWND)x->xid, flIDropTarget);
|
2010-09-27 18:57:53 +04:00
|
|
|
|
2014-09-15 13:44:35 +04:00
|
|
|
if (!im_enabled)
|
2022-03-15 08:42:06 +03:00
|
|
|
flImmAssociateContextEx((HWND)x->xid, 0, 0);
|
2014-09-15 13:44:35 +04:00
|
|
|
|
1998-10-06 23:14:55 +04:00
|
|
|
return x;
|
|
|
|
}
|
|
|
|
|
2005-10-13 00:19:30 +04:00
|
|
|
|
1998-10-06 23:14:55 +04:00
|
|
|
////////////////////////////////////////////////////////////////
|
|
|
|
|
1999-05-24 18:03:47 +04:00
|
|
|
HINSTANCE fl_display = GetModuleHandle(NULL);
|
1999-01-04 22:25:40 +03:00
|
|
|
|
2022-03-15 08:42:06 +03:00
|
|
|
HINSTANCE fl_win32_display() { return fl_display; }
|
|
|
|
|
2017-12-19 15:52:57 +03:00
|
|
|
void Fl_WinAPI_Window_Driver::set_minmax(LPMINMAXINFO minmax) {
|
2005-05-30 02:36:25 +04:00
|
|
|
int td, wd, hd, dummy_x, dummy_y;
|
1998-11-05 19:04:53 +03:00
|
|
|
|
2016-04-19 18:33:58 +03:00
|
|
|
fake_X_wm(dummy_x, dummy_y, td, wd, hd);
|
1998-11-05 19:04:53 +03:00
|
|
|
wd *= 2;
|
|
|
|
hd *= 2;
|
|
|
|
hd += td;
|
|
|
|
|
2017-06-29 12:44:35 +03:00
|
|
|
float s = Fl::screen_driver()->scale(screen_num());
|
2021-02-13 23:12:52 +03:00
|
|
|
minmax->ptMinTrackSize.x = LONG(s * minw()) + wd;
|
|
|
|
minmax->ptMinTrackSize.y = LONG(s * minh()) + hd;
|
2016-04-19 18:33:58 +03:00
|
|
|
if (maxw()) {
|
2021-02-13 23:12:52 +03:00
|
|
|
minmax->ptMaxTrackSize.x = LONG(s * maxw()) + wd;
|
|
|
|
minmax->ptMaxSize.x = LONG(s * maxw()) + wd;
|
1998-10-06 23:14:55 +04:00
|
|
|
}
|
2016-04-19 18:33:58 +03:00
|
|
|
if (maxh()) {
|
2021-02-13 23:12:52 +03:00
|
|
|
minmax->ptMaxTrackSize.y = LONG(s * maxh()) + hd;
|
|
|
|
minmax->ptMaxSize.y = LONG(s * maxh()) + hd;
|
1998-10-06 23:14:55 +04:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2016-04-15 17:18:37 +03:00
|
|
|
////////////////////////////////////////////////////////////////
|
1999-05-11 13:39:31 +04:00
|
|
|
|
1998-10-06 23:14:55 +04:00
|
|
|
// returns pointer to the filename, or null if name ends with '/'
|
2016-04-15 17:18:37 +03:00
|
|
|
const char *Fl_WinAPI_System_Driver::filename_name(const char *name) {
|
2017-12-19 15:52:57 +03:00
|
|
|
const char *p, *q;
|
|
|
|
if (!name)
|
|
|
|
return (0);
|
1998-10-06 23:14:55 +04:00
|
|
|
q = name;
|
2017-12-19 15:52:57 +03:00
|
|
|
if (q[0] && q[1] == ':')
|
|
|
|
q += 2; // skip leading drive letter
|
|
|
|
for (p = q; *p; p++) {
|
|
|
|
if (*p == '/' || *p == '\\')
|
|
|
|
q = p + 1;
|
|
|
|
}
|
1998-10-06 23:14:55 +04:00
|
|
|
return q;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2014-06-16 15:17:57 +04:00
|
|
|
////////////////////////////////////////////////////////////////
|
|
|
|
|
2017-12-19 15:52:57 +03:00
|
|
|
static HICON image_to_icon(const Fl_RGB_Image *image, bool is_icon, int hotx, int hoty) {
|
2014-06-16 15:17:57 +04:00
|
|
|
BITMAPV5HEADER bi;
|
|
|
|
HBITMAP bitmap, mask;
|
|
|
|
DWORD *bits;
|
2014-06-16 15:39:32 +04:00
|
|
|
HICON icon;
|
2014-06-16 15:17:57 +04:00
|
|
|
|
2014-06-16 15:39:32 +04:00
|
|
|
if (!is_icon) {
|
2022-09-12 12:07:03 +03:00
|
|
|
if ((hotx < 0) || (hotx >= image->data_w()))
|
2014-06-16 15:39:32 +04:00
|
|
|
return NULL;
|
2022-09-12 12:07:03 +03:00
|
|
|
if ((hoty < 0) || (hoty >= image->data_h()))
|
2014-06-16 15:39:32 +04:00
|
|
|
return NULL;
|
|
|
|
}
|
2014-06-16 15:17:57 +04:00
|
|
|
|
|
|
|
memset(&bi, 0, sizeof(BITMAPV5HEADER));
|
|
|
|
|
|
|
|
bi.bV5Size = sizeof(BITMAPV5HEADER);
|
2022-09-12 12:07:03 +03:00
|
|
|
bi.bV5Width = image->data_w();
|
|
|
|
bi.bV5Height = -image->data_h(); // Negative for top-down
|
2014-06-16 15:17:57 +04:00
|
|
|
bi.bV5Planes = 1;
|
|
|
|
bi.bV5BitCount = 32;
|
|
|
|
bi.bV5Compression = BI_BITFIELDS;
|
|
|
|
bi.bV5RedMask = 0x00FF0000;
|
|
|
|
bi.bV5GreenMask = 0x0000FF00;
|
|
|
|
bi.bV5BlueMask = 0x000000FF;
|
|
|
|
bi.bV5AlphaMask = 0xFF000000;
|
|
|
|
|
|
|
|
HDC hdc;
|
|
|
|
|
|
|
|
hdc = GetDC(NULL);
|
2017-12-19 15:52:57 +03:00
|
|
|
bitmap = CreateDIBSection(hdc, (BITMAPINFO *)&bi, DIB_RGB_COLORS, (void **)&bits, NULL, 0);
|
2014-06-16 15:17:57 +04:00
|
|
|
ReleaseDC(NULL, hdc);
|
|
|
|
|
|
|
|
if (bits == NULL)
|
2014-06-16 15:39:32 +04:00
|
|
|
return NULL;
|
2014-06-16 15:17:57 +04:00
|
|
|
|
2017-12-19 15:52:57 +03:00
|
|
|
const uchar *i = (const uchar *)*image->data();
|
2022-09-12 12:07:03 +03:00
|
|
|
const int extra_data = image->ld() ? (image->ld() - image->data_w() * image->d()) : 0;
|
2016-10-14 19:35:52 +03:00
|
|
|
|
2022-09-12 12:07:03 +03:00
|
|
|
for (int y = 0; y < image->data_h(); y++) {
|
|
|
|
for (int x = 0; x < image->data_w(); x++) {
|
2014-06-16 15:17:57 +04:00
|
|
|
switch (image->d()) {
|
2020-07-01 19:03:10 +03:00
|
|
|
case 1:
|
|
|
|
*bits = (0xff << 24) | (i[0] << 16) | (i[0] << 8) | i[0];
|
|
|
|
break;
|
|
|
|
case 2:
|
|
|
|
*bits = (i[1] << 24) | (i[0] << 16) | (i[0] << 8) | i[0];
|
|
|
|
break;
|
|
|
|
case 3:
|
|
|
|
*bits = (0xff << 24) | (i[0] << 16) | (i[1] << 8) | i[2];
|
|
|
|
break;
|
|
|
|
case 4:
|
|
|
|
*bits = (i[3] << 24) | (i[0] << 16) | (i[1] << 8) | i[2];
|
|
|
|
break;
|
2014-06-16 15:17:57 +04:00
|
|
|
}
|
|
|
|
i += image->d();
|
|
|
|
bits++;
|
|
|
|
}
|
2016-10-14 19:35:52 +03:00
|
|
|
i += extra_data;
|
2014-06-16 15:17:57 +04:00
|
|
|
}
|
|
|
|
|
|
|
|
// A mask bitmap is still needed even though it isn't used
|
2022-09-12 12:07:03 +03:00
|
|
|
mask = CreateBitmap(image->data_w(), image->data_h(), 1, 1, NULL);
|
2014-06-16 15:17:57 +04:00
|
|
|
if (mask == NULL) {
|
|
|
|
DeleteObject(bitmap);
|
2014-06-16 15:39:32 +04:00
|
|
|
return NULL;
|
2014-06-16 15:17:57 +04:00
|
|
|
}
|
|
|
|
|
|
|
|
ICONINFO ii;
|
|
|
|
|
2014-06-16 15:39:32 +04:00
|
|
|
ii.fIcon = is_icon;
|
2014-06-16 15:17:57 +04:00
|
|
|
ii.xHotspot = hotx;
|
|
|
|
ii.yHotspot = hoty;
|
|
|
|
ii.hbmMask = mask;
|
|
|
|
ii.hbmColor = bitmap;
|
|
|
|
|
2014-06-16 15:39:32 +04:00
|
|
|
icon = CreateIconIndirect(&ii);
|
2014-06-16 15:17:57 +04:00
|
|
|
|
|
|
|
DeleteObject(bitmap);
|
|
|
|
DeleteObject(mask);
|
|
|
|
|
2014-06-16 15:39:32 +04:00
|
|
|
return icon;
|
|
|
|
}
|
|
|
|
|
|
|
|
////////////////////////////////////////////////////////////////
|
|
|
|
|
|
|
|
static HICON default_big_icon = NULL;
|
|
|
|
static HICON default_small_icon = NULL;
|
|
|
|
|
2017-12-19 15:52:57 +03:00
|
|
|
static const Fl_RGB_Image *find_best_icon(int ideal_width, const Fl_RGB_Image *icons[], int count) {
|
2014-06-16 15:39:32 +04:00
|
|
|
const Fl_RGB_Image *best;
|
|
|
|
|
|
|
|
best = NULL;
|
|
|
|
|
2017-12-19 15:52:57 +03:00
|
|
|
for (int i = 0; i < count; i++) {
|
2014-06-16 15:39:32 +04:00
|
|
|
if (best == NULL)
|
|
|
|
best = icons[i];
|
|
|
|
else {
|
2022-09-17 10:03:34 +03:00
|
|
|
if (best->w() < ideal_width) {
|
|
|
|
if (icons[i]->w() > best->w())
|
2020-07-01 19:03:10 +03:00
|
|
|
best = icons[i];
|
2014-06-16 15:39:32 +04:00
|
|
|
} else {
|
2022-09-17 10:03:34 +03:00
|
|
|
if ((icons[i]->w() >= ideal_width) && (icons[i]->w() < best->w()))
|
2020-07-01 19:03:10 +03:00
|
|
|
best = icons[i];
|
2014-06-16 15:39:32 +04:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return best;
|
|
|
|
}
|
|
|
|
|
2019-03-25 20:47:29 +03:00
|
|
|
void Fl_WinAPI_Screen_Driver::default_icons(const Fl_RGB_Image *icons[], int count) {
|
2014-06-16 15:39:32 +04:00
|
|
|
const Fl_RGB_Image *best_big, *best_small;
|
|
|
|
|
|
|
|
if (default_big_icon != NULL)
|
|
|
|
DestroyIcon(default_big_icon);
|
|
|
|
if (default_small_icon != NULL)
|
|
|
|
DestroyIcon(default_small_icon);
|
|
|
|
|
|
|
|
default_big_icon = NULL;
|
|
|
|
default_small_icon = NULL;
|
|
|
|
|
|
|
|
best_big = find_best_icon(GetSystemMetrics(SM_CXICON), icons, count);
|
|
|
|
best_small = find_best_icon(GetSystemMetrics(SM_CXSMICON), icons, count);
|
|
|
|
|
2022-09-17 10:03:34 +03:00
|
|
|
bool need_delete;
|
|
|
|
if (best_big != NULL) {
|
|
|
|
need_delete = false;
|
|
|
|
if (best_big->w() != best_big->data_w() || best_big->h() != best_big->data_h()) {
|
|
|
|
best_big = (Fl_RGB_Image *)best_big->copy();
|
|
|
|
need_delete = true;
|
|
|
|
}
|
2014-06-16 15:39:32 +04:00
|
|
|
default_big_icon = image_to_icon(best_big, true, 0, 0);
|
2022-09-17 10:03:34 +03:00
|
|
|
if (need_delete) delete best_big;
|
|
|
|
}
|
2014-06-16 15:39:32 +04:00
|
|
|
|
2022-09-17 10:03:34 +03:00
|
|
|
if (best_small != NULL) {
|
|
|
|
need_delete = false;
|
|
|
|
if (best_small->w() != best_small->data_w() ||
|
|
|
|
best_small->h() != best_small->data_h()) {
|
|
|
|
best_small = (Fl_RGB_Image *)best_small->copy();
|
|
|
|
need_delete = true;
|
|
|
|
}
|
2014-06-16 15:39:32 +04:00
|
|
|
default_small_icon = image_to_icon(best_small, true, 0, 0);
|
2022-09-17 10:03:34 +03:00
|
|
|
if (need_delete) delete best_small;
|
|
|
|
}
|
2014-06-16 15:39:32 +04:00
|
|
|
}
|
|
|
|
|
2017-12-19 15:52:57 +03:00
|
|
|
|
|
|
|
void Fl_Window::icons(HICON big_icon, HICON small_icon) {
|
2016-04-16 15:28:50 +03:00
|
|
|
free_icons();
|
|
|
|
if (big_icon != NULL)
|
2016-04-19 20:34:15 +03:00
|
|
|
Fl_WinAPI_Window_Driver::driver(this)->icon_->big_icon = CopyIcon(big_icon);
|
2016-04-16 15:28:50 +03:00
|
|
|
if (small_icon != NULL)
|
2016-04-19 20:34:15 +03:00
|
|
|
Fl_WinAPI_Window_Driver::driver(this)->icon_->small_icon = CopyIcon(small_icon);
|
2016-04-16 15:28:50 +03:00
|
|
|
if (Fl_X::i(this))
|
2016-04-19 20:34:15 +03:00
|
|
|
Fl_WinAPI_Window_Driver::driver(this)->set_icons();
|
2016-04-16 15:28:50 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
void Fl_Window::default_icons(HICON big_icon, HICON small_icon) {
|
2014-06-16 15:39:32 +04:00
|
|
|
if (default_big_icon != NULL)
|
|
|
|
DestroyIcon(default_big_icon);
|
|
|
|
if (default_small_icon != NULL)
|
|
|
|
DestroyIcon(default_small_icon);
|
|
|
|
|
|
|
|
default_big_icon = NULL;
|
|
|
|
default_small_icon = NULL;
|
|
|
|
|
|
|
|
if (big_icon != NULL)
|
|
|
|
default_big_icon = CopyIcon(big_icon);
|
|
|
|
if (small_icon != NULL)
|
|
|
|
default_small_icon = CopyIcon(small_icon);
|
|
|
|
}
|
|
|
|
|
2016-04-16 16:15:49 +03:00
|
|
|
void Fl_WinAPI_Window_Driver::set_icons() {
|
2014-06-16 15:39:32 +04:00
|
|
|
HICON big_icon, small_icon;
|
|
|
|
|
|
|
|
// Windows doesn't copy the icons, so we have to "leak" them when
|
|
|
|
// setting, and clean up when we change to some other icons.
|
2016-04-16 16:15:49 +03:00
|
|
|
big_icon = (HICON)SendMessage(fl_xid(pWindow), WM_GETICON, ICON_BIG, 0);
|
2014-06-16 15:39:32 +04:00
|
|
|
if ((big_icon != NULL) && (big_icon != default_big_icon))
|
|
|
|
DestroyIcon(big_icon);
|
2016-04-16 16:15:49 +03:00
|
|
|
small_icon = (HICON)SendMessage(fl_xid(pWindow), WM_GETICON, ICON_SMALL, 0);
|
2014-06-16 15:39:32 +04:00
|
|
|
if ((small_icon != NULL) && (small_icon != default_small_icon))
|
|
|
|
DestroyIcon(small_icon);
|
|
|
|
|
|
|
|
big_icon = NULL;
|
|
|
|
small_icon = NULL;
|
|
|
|
|
2016-04-16 16:15:49 +03:00
|
|
|
if (icon_->count) {
|
2014-06-16 15:39:32 +04:00
|
|
|
const Fl_RGB_Image *best_big, *best_small;
|
|
|
|
|
|
|
|
best_big = find_best_icon(GetSystemMetrics(SM_CXICON),
|
2020-07-01 19:03:10 +03:00
|
|
|
(const Fl_RGB_Image **)icon_->icons,
|
|
|
|
icon_->count);
|
2014-06-16 15:39:32 +04:00
|
|
|
best_small = find_best_icon(GetSystemMetrics(SM_CXSMICON),
|
2020-07-01 19:03:10 +03:00
|
|
|
(const Fl_RGB_Image **)icon_->icons,
|
|
|
|
icon_->count);
|
2014-06-16 15:39:32 +04:00
|
|
|
|
|
|
|
if (best_big != NULL)
|
|
|
|
big_icon = image_to_icon(best_big, true, 0, 0);
|
|
|
|
if (best_small != NULL)
|
|
|
|
small_icon = image_to_icon(best_small, true, 0, 0);
|
|
|
|
} else {
|
2016-04-16 16:15:49 +03:00
|
|
|
if ((icon_->big_icon != NULL) || (icon_->small_icon != NULL)) {
|
|
|
|
big_icon = icon_->big_icon;
|
|
|
|
small_icon = icon_->small_icon;
|
2014-06-16 15:39:32 +04:00
|
|
|
} else {
|
|
|
|
big_icon = default_big_icon;
|
|
|
|
small_icon = default_small_icon;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2016-04-16 16:15:49 +03:00
|
|
|
SendMessage(fl_xid(pWindow), WM_SETICON, ICON_BIG, (LPARAM)big_icon);
|
|
|
|
SendMessage(fl_xid(pWindow), WM_SETICON, ICON_SMALL, (LPARAM)small_icon);
|
2014-06-16 15:39:32 +04:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
////////////////////////////////////////////////////////////////
|
|
|
|
|
|
|
|
#ifndef IDC_HAND
|
2017-12-19 15:52:57 +03:00
|
|
|
#define IDC_HAND MAKEINTRESOURCE(32649)
|
2014-06-16 15:39:32 +04:00
|
|
|
#endif // !IDC_HAND
|
|
|
|
|
2016-04-18 17:31:07 +03:00
|
|
|
int Fl_WinAPI_Window_Driver::set_cursor(Fl_Cursor c) {
|
2014-06-16 15:39:32 +04:00
|
|
|
LPSTR n;
|
|
|
|
HCURSOR new_cursor;
|
|
|
|
|
|
|
|
if (c == FL_CURSOR_NONE)
|
|
|
|
new_cursor = NULL;
|
|
|
|
else {
|
|
|
|
switch (c) {
|
2017-12-19 15:52:57 +03:00
|
|
|
case FL_CURSOR_ARROW:
|
2020-07-01 19:03:10 +03:00
|
|
|
n = IDC_ARROW;
|
|
|
|
break;
|
2017-12-19 15:52:57 +03:00
|
|
|
case FL_CURSOR_CROSS:
|
2020-07-01 19:03:10 +03:00
|
|
|
n = IDC_CROSS;
|
|
|
|
break;
|
2017-12-19 15:52:57 +03:00
|
|
|
case FL_CURSOR_WAIT:
|
2020-07-01 19:03:10 +03:00
|
|
|
n = IDC_WAIT;
|
|
|
|
break;
|
2017-12-19 15:52:57 +03:00
|
|
|
case FL_CURSOR_INSERT:
|
2020-07-01 19:03:10 +03:00
|
|
|
n = IDC_IBEAM;
|
|
|
|
break;
|
2017-12-19 15:52:57 +03:00
|
|
|
case FL_CURSOR_HAND:
|
2020-07-01 19:03:10 +03:00
|
|
|
n = IDC_HAND;
|
|
|
|
break;
|
2017-12-19 15:52:57 +03:00
|
|
|
case FL_CURSOR_HELP:
|
2020-07-01 19:03:10 +03:00
|
|
|
n = IDC_HELP;
|
|
|
|
break;
|
2017-12-19 15:52:57 +03:00
|
|
|
case FL_CURSOR_MOVE:
|
2020-07-01 19:03:10 +03:00
|
|
|
n = IDC_SIZEALL;
|
|
|
|
break;
|
2017-12-19 15:52:57 +03:00
|
|
|
case FL_CURSOR_N:
|
|
|
|
case FL_CURSOR_S:
|
2014-06-16 15:39:32 +04:00
|
|
|
// FIXME: Should probably have fallbacks for these instead
|
2017-12-19 15:52:57 +03:00
|
|
|
case FL_CURSOR_NS:
|
2020-07-01 19:03:10 +03:00
|
|
|
n = IDC_SIZENS;
|
|
|
|
break;
|
2017-12-19 15:52:57 +03:00
|
|
|
case FL_CURSOR_NE:
|
|
|
|
case FL_CURSOR_SW:
|
2014-06-16 15:39:32 +04:00
|
|
|
// FIXME: Dito.
|
2017-12-19 15:52:57 +03:00
|
|
|
case FL_CURSOR_NESW:
|
2020-07-01 19:03:10 +03:00
|
|
|
n = IDC_SIZENESW;
|
|
|
|
break;
|
2017-12-19 15:52:57 +03:00
|
|
|
case FL_CURSOR_E:
|
|
|
|
case FL_CURSOR_W:
|
2014-06-16 15:39:32 +04:00
|
|
|
// FIXME: Dito.
|
2017-12-19 15:52:57 +03:00
|
|
|
case FL_CURSOR_WE:
|
2020-07-01 19:03:10 +03:00
|
|
|
n = IDC_SIZEWE;
|
|
|
|
break;
|
2017-12-19 15:52:57 +03:00
|
|
|
case FL_CURSOR_SE:
|
|
|
|
case FL_CURSOR_NW:
|
2014-06-16 15:39:32 +04:00
|
|
|
// FIXME: Dito.
|
2017-12-19 15:52:57 +03:00
|
|
|
case FL_CURSOR_NWSE:
|
2020-07-01 19:03:10 +03:00
|
|
|
n = IDC_SIZENWSE;
|
|
|
|
break;
|
2017-12-19 15:52:57 +03:00
|
|
|
default:
|
2020-07-01 19:03:10 +03:00
|
|
|
return 0;
|
2014-06-16 15:39:32 +04:00
|
|
|
}
|
|
|
|
|
|
|
|
new_cursor = LoadCursor(NULL, n);
|
|
|
|
if (new_cursor == NULL)
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
if ((cursor != NULL) && custom_cursor)
|
|
|
|
DestroyIcon(cursor);
|
|
|
|
|
|
|
|
cursor = new_cursor;
|
|
|
|
custom_cursor = 0;
|
|
|
|
|
|
|
|
SetCursor(cursor);
|
|
|
|
|
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
|
2016-04-18 17:31:07 +03:00
|
|
|
int Fl_WinAPI_Window_Driver::set_cursor(const Fl_RGB_Image *image, int hotx, int hoty) {
|
2014-06-16 15:39:32 +04:00
|
|
|
HCURSOR new_cursor;
|
|
|
|
|
|
|
|
new_cursor = image_to_icon(image, false, hotx, hoty);
|
2014-06-16 15:17:57 +04:00
|
|
|
if (new_cursor == NULL)
|
|
|
|
return 0;
|
|
|
|
|
|
|
|
if ((cursor != NULL) && custom_cursor)
|
|
|
|
DestroyIcon(cursor);
|
|
|
|
|
|
|
|
cursor = new_cursor;
|
|
|
|
custom_cursor = 1;
|
|
|
|
|
|
|
|
SetCursor(cursor);
|
|
|
|
|
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
|
2017-06-28 16:33:53 +03:00
|
|
|
|
1998-10-06 23:14:55 +04:00
|
|
|
////////////////////////////////////////////////////////////////
|
|
|
|
// Implement the virtual functions for the base Fl_Window class:
|
|
|
|
|
2016-03-22 20:47:44 +03:00
|
|
|
void Fl_WinAPI_Window_Driver::show() {
|
2016-03-24 04:20:08 +03:00
|
|
|
if (!shown()) {
|
2016-04-19 18:33:58 +03:00
|
|
|
makeWindow();
|
1998-10-06 23:14:55 +04:00
|
|
|
} else {
|
1998-10-15 18:06:16 +04:00
|
|
|
// Once again, we would lose the capture if we activated the window.
|
2016-03-22 20:47:44 +03:00
|
|
|
Fl_X *i = Fl_X::i(pWindow);
|
2022-03-15 08:42:06 +03:00
|
|
|
if (IsIconic((HWND)i->xid))
|
|
|
|
OpenIcon((HWND)i->xid);
|
2017-12-19 15:52:57 +03:00
|
|
|
if (!fl_capture)
|
2022-03-15 08:42:06 +03:00
|
|
|
BringWindowToTop((HWND)i->xid);
|
2017-12-19 15:52:57 +03:00
|
|
|
// ShowWindow(i->xid,fl_capture?SW_SHOWNOACTIVATE:SW_RESTORE);
|
1998-10-06 23:14:55 +04:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// the current context
|
|
|
|
// the current window handle, initially set to -1 so we can correctly
|
|
|
|
// allocate fl_GetDC(0)
|
2005-05-20 06:39:39 +04:00
|
|
|
HWND fl_window = NULL;
|
1998-10-06 23:14:55 +04:00
|
|
|
|
1998-10-15 18:06:16 +04:00
|
|
|
// Here we ensure only one GetDC is ever in place.
|
1998-10-06 23:14:55 +04:00
|
|
|
HDC fl_GetDC(HWND w) {
|
2016-11-09 12:49:48 +03:00
|
|
|
HDC gc = (HDC)Fl_Graphics_Driver::default_driver().gc();
|
2016-02-18 19:21:51 +03:00
|
|
|
if (gc) {
|
2017-12-19 15:52:57 +03:00
|
|
|
if (w == fl_window && fl_window != NULL)
|
|
|
|
return gc;
|
|
|
|
if (fl_window)
|
|
|
|
fl_release_dc(fl_window, gc); // ReleaseDC
|
2016-02-18 19:21:51 +03:00
|
|
|
}
|
|
|
|
gc = GetDC(w);
|
2016-11-09 12:49:48 +03:00
|
|
|
Fl_Graphics_Driver::default_driver().gc(gc);
|
2016-02-18 19:21:51 +03:00
|
|
|
fl_save_dc(w, gc);
|
1998-10-06 23:14:55 +04:00
|
|
|
fl_window = w;
|
|
|
|
// calling GetDC seems to always reset these: (?)
|
2017-12-19 15:52:57 +03:00
|
|
|
SetTextAlign(gc, TA_BASELINE | TA_LEFT);
|
2016-02-18 19:21:51 +03:00
|
|
|
SetBkMode(gc, TRANSPARENT);
|
2008-09-25 22:26:33 +04:00
|
|
|
|
2016-02-18 19:21:51 +03:00
|
|
|
return gc;
|
1998-10-06 23:14:55 +04:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2016-01-28 20:38:11 +03:00
|
|
|
/* Make sure that all allocated fonts are released. This works only if
|
2005-09-13 03:03:34 +04:00
|
|
|
Fl::run() is allowed to exit by closing all windows. Calling 'exit(int)'
|
|
|
|
will not automatically free any fonts. */
|
2017-12-19 15:52:57 +03:00
|
|
|
void fl_free_fonts(void) {
|
|
|
|
// remove the Fl_Font_Descriptor chains
|
2005-09-13 03:03:34 +04:00
|
|
|
int i;
|
2017-12-19 15:52:57 +03:00
|
|
|
Fl_Fontdesc *s;
|
|
|
|
Fl_Font_Descriptor *f;
|
|
|
|
Fl_Font_Descriptor *ff;
|
|
|
|
for (i = 0; i < FL_FREE_FONT; i++) {
|
2005-09-13 03:03:34 +04:00
|
|
|
s = fl_fonts + i;
|
2017-12-19 15:52:57 +03:00
|
|
|
for (f = s->first; f; f = ff) {
|
2005-09-13 03:03:34 +04:00
|
|
|
ff = f->next;
|
2021-12-19 21:49:39 +03:00
|
|
|
delete (Fl_GDI_Font_Descriptor*)f;
|
2005-09-13 03:03:34 +04:00
|
|
|
s->first = ff;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
///////////////////////////////////////////////////////////////////////
|
|
|
|
//
|
|
|
|
// The following routines help fix a problem with the leaking of Windows
|
|
|
|
// Device Context (DC) objects. The 'proper' protocol is for a program to
|
|
|
|
// acquire a DC, save its state, do the modifications needed for drawing,
|
|
|
|
// perform the drawing, restore the initial state, and release the DC. In
|
|
|
|
// FLTK, the save and restore steps have previously been omitted and DCs are
|
|
|
|
// not properly released, leading to a great number of DC leaks. As some
|
|
|
|
// Windows "OSs" will hang when any process exceeds roughly 10,000 GDI objects,
|
|
|
|
// it is important to control GDI leaks, which are much more important than memory
|
|
|
|
// leaks. The following struct, global variable, and routines help implement
|
|
|
|
// the above protocol for those cases where the GetDC and RestoreDC are not in
|
2016-01-28 20:38:11 +03:00
|
|
|
// the same routine. For each GetDC, fl_save_dc is used to create an entry in
|
2005-09-13 03:03:34 +04:00
|
|
|
// a linked list that saves the window handle, the DC handle, and the initial
|
|
|
|
// state. When the DC is to be released, 'fl_release_dc' is called. It restores
|
|
|
|
// the initial state and releases the DC. When the program exits, 'fl_cleanup_dc_list'
|
|
|
|
// frees any remaining nodes in the list.
|
|
|
|
|
2017-12-19 15:52:57 +03:00
|
|
|
struct Win_DC_List { // linked list
|
|
|
|
HWND window; // window handle
|
|
|
|
HDC dc; // device context handle
|
|
|
|
int saved_dc; // initial state of DC
|
|
|
|
Win_DC_List *next; // pointer to next item
|
2005-09-13 03:03:34 +04:00
|
|
|
};
|
|
|
|
|
2017-12-19 15:52:57 +03:00
|
|
|
static Win_DC_List *win_DC_list = 0;
|
2005-09-13 03:03:34 +04:00
|
|
|
|
2017-12-19 15:52:57 +03:00
|
|
|
void fl_save_dc(HWND w, HDC dc) {
|
|
|
|
Win_DC_List *t;
|
2005-09-13 03:03:34 +04:00
|
|
|
t = new Win_DC_List;
|
|
|
|
t->window = w;
|
|
|
|
t->dc = dc;
|
|
|
|
t->saved_dc = SaveDC(dc);
|
|
|
|
if (win_DC_list)
|
|
|
|
t->next = win_DC_list;
|
|
|
|
else
|
|
|
|
t->next = NULL;
|
|
|
|
win_DC_list = t;
|
|
|
|
}
|
|
|
|
|
|
|
|
void fl_release_dc(HWND w, HDC dc) {
|
2017-12-19 15:52:57 +03:00
|
|
|
Win_DC_List *t = win_DC_list;
|
|
|
|
Win_DC_List *prev = 0;
|
2005-09-13 03:03:34 +04:00
|
|
|
if (!t)
|
|
|
|
return;
|
|
|
|
do {
|
|
|
|
if (t->dc == dc) {
|
|
|
|
RestoreDC(dc, t->saved_dc);
|
|
|
|
ReleaseDC(w, dc);
|
|
|
|
if (!prev) {
|
2020-07-01 19:03:10 +03:00
|
|
|
win_DC_list = t->next; // delete first item
|
2005-09-13 03:03:34 +04:00
|
|
|
} else {
|
2020-07-01 19:03:10 +03:00
|
|
|
prev->next = t->next; // one in the middle
|
2005-09-13 03:03:34 +04:00
|
|
|
}
|
|
|
|
delete (t);
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
prev = t;
|
|
|
|
t = t->next;
|
|
|
|
} while (t);
|
|
|
|
}
|
|
|
|
|
2017-12-19 15:52:57 +03:00
|
|
|
void fl_cleanup_dc_list(void) { // clean up the list
|
|
|
|
Win_DC_List *t = win_DC_list;
|
|
|
|
if (!t)
|
|
|
|
return;
|
2005-09-13 03:03:34 +04:00
|
|
|
do {
|
|
|
|
RestoreDC(t->dc, t->saved_dc);
|
|
|
|
ReleaseDC(t->window, t->dc);
|
|
|
|
win_DC_list = t->next;
|
|
|
|
delete (t);
|
|
|
|
t = win_DC_list;
|
2017-12-19 15:52:57 +03:00
|
|
|
} while (t);
|
2005-09-13 03:03:34 +04:00
|
|
|
}
|
2010-03-14 21:07:24 +03:00
|
|
|
|
2016-01-10 22:08:16 +03:00
|
|
|
/* Returns images of the captures of the window title-bar, and the left, bottom and right window borders.
|
2016-04-03 11:36:19 +03:00
|
|
|
This function exploits a feature of Fl_WinAPI_Screen_Driver::read_win_rectangle() which,
|
|
|
|
when fl_gc is set to the screen device context, captures the window decoration.
|
2016-01-10 22:08:16 +03:00
|
|
|
*/
|
2018-05-06 10:14:13 +03:00
|
|
|
void Fl_WinAPI_Window_Driver::capture_titlebar_and_borders(Fl_RGB_Image *&top, Fl_RGB_Image *&left,
|
|
|
|
Fl_RGB_Image *&bottom, Fl_RGB_Image *&right) {
|
2016-01-10 22:08:16 +03:00
|
|
|
top = left = bottom = right = NULL;
|
2017-12-19 15:52:57 +03:00
|
|
|
if (!shown() || parent() || !border() || !visible())
|
|
|
|
return;
|
2016-01-10 22:08:16 +03:00
|
|
|
int wsides, hbottom, bt;
|
2017-06-18 19:01:53 +03:00
|
|
|
float scaling = Fl::screen_driver()->scale(screen_num());
|
|
|
|
RECT r = border_width_title_bar_height(wsides, hbottom, bt);
|
2016-01-10 22:08:16 +03:00
|
|
|
int htop = bt + hbottom;
|
2017-12-19 15:52:57 +03:00
|
|
|
Fl_Surface_Device::push_current(Fl_Display_Device::display_device());
|
2016-03-11 10:07:42 +03:00
|
|
|
pWindow->show();
|
2017-12-19 15:52:57 +03:00
|
|
|
while (Fl::ready())
|
|
|
|
Fl::check();
|
2018-04-25 18:52:53 +03:00
|
|
|
HDC save_gc = (HDC)fl_graphics_driver->gc();
|
2016-02-19 15:40:24 +03:00
|
|
|
fl_graphics_driver->gc(GetDC(NULL));
|
2021-02-13 23:12:52 +03:00
|
|
|
int ww = int(w() * scaling) + 2 * wsides;
|
|
|
|
wsides = int(wsides / scaling);
|
2017-12-19 15:52:57 +03:00
|
|
|
if (wsides < 1)
|
|
|
|
wsides = 1;
|
2021-02-13 23:12:52 +03:00
|
|
|
ww = int(ww / scaling);
|
2017-12-19 15:52:57 +03:00
|
|
|
if (wsides <= 1)
|
|
|
|
ww = w() + 2 * wsides;
|
2011-04-16 01:38:05 +04:00
|
|
|
// capture the 4 window sides from screen
|
2019-06-11 19:51:10 +03:00
|
|
|
int offset = r.left < 0 ? -r.left : 0;
|
2017-12-19 15:52:57 +03:00
|
|
|
Fl_WinAPI_Screen_Driver *dr = (Fl_WinAPI_Screen_Driver *)Fl::screen_driver();
|
2019-06-11 19:51:10 +03:00
|
|
|
if (htop && r.right - r.left > offset) {
|
|
|
|
top = dr->read_win_rectangle_unscaled(r.left+offset, r.top, r.right - r.left-offset, htop, 0);
|
|
|
|
if (scaling != 1 && top)
|
2021-02-13 23:12:52 +03:00
|
|
|
top->scale(ww, int(htop / scaling), 0, 1);
|
2016-01-10 22:08:16 +03:00
|
|
|
}
|
|
|
|
if (wsides) {
|
2021-02-13 23:12:52 +03:00
|
|
|
left = dr->read_win_rectangle_unscaled(r.left + offset, r.top + htop, wsides, int(h() * scaling), 0);
|
|
|
|
right = dr->read_win_rectangle_unscaled(r.right - wsides, r.top + htop, wsides, int(h() * scaling), 0);
|
2019-06-11 19:51:10 +03:00
|
|
|
bottom = dr->read_win_rectangle_unscaled(r.left+offset, r.bottom - hbottom, ww, hbottom, 0);
|
2017-06-19 14:37:01 +03:00
|
|
|
if (scaling != 1) {
|
2019-06-11 19:51:10 +03:00
|
|
|
if (left) left->scale(wsides, h(), 0, 1);
|
|
|
|
if (right) right->scale(wsides, h(), 0, 1);
|
|
|
|
if (bottom) bottom->scale(ww, hbottom, 0, 1);
|
2017-06-18 19:01:53 +03:00
|
|
|
}
|
2016-01-10 22:08:16 +03:00
|
|
|
}
|
2016-02-19 15:40:24 +03:00
|
|
|
ReleaseDC(NULL, (HDC)fl_graphics_driver->gc());
|
2018-04-25 18:52:53 +03:00
|
|
|
fl_graphics_driver->gc(save_gc);
|
2016-12-07 18:09:52 +03:00
|
|
|
Fl_Surface_Device::pop_current();
|
2016-01-10 22:08:16 +03:00
|
|
|
}
|
2011-04-16 01:38:05 +04:00
|
|
|
|
2018-02-09 17:39:42 +03:00
|
|
|
#endif // defined(_WIN32) and !defined(FL_DOXYGEN)
|