diff options
author | culler <culler> | 2020-05-14 21:46:39 (GMT) |
---|---|---|
committer | culler <culler> | 2020-05-14 21:46:39 (GMT) |
commit | 41617cb3f6dc92eeb21c55eb776e0135bfa6e935 (patch) | |
tree | c5c158981c47137d2901fff593e90c7f4ceee674 /generic/tkInt.h | |
parent | 3936fed2e4bd2538177704d1624300aa7d8e52ef (diff) | |
download | tk-41617cb3f6dc92eeb21c55eb776e0135bfa6e935.zip tk-41617cb3f6dc92eeb21c55eb776e0135bfa6e935.tar.gz tk-41617cb3f6dc92eeb21c55eb776e0135bfa6e935.tar.bz2 |
Add the macOS support, using the TkWheelEvent but not the TkKeyEvent since macOS no longer needs trans_chars.
Diffstat (limited to 'generic/tkInt.h')
-rw-r--r-- | generic/tkInt.h | 28 |
1 files changed, 14 insertions, 14 deletions
diff --git a/generic/tkInt.h b/generic/tkInt.h index fd124d5..64e7947 100644 --- a/generic/tkInt.h +++ b/generic/tkInt.h @@ -854,7 +854,7 @@ typedef struct TkWindow { typedef struct { XKeyEvent keyEvent; /* The real event from X11. */ -#if defined(_WIN32) || defined(MAC_OSX_TK) +#if defined(_WIN32) char trans_chars[XMaxTransChars]; /* translated characters */ unsigned char nbytes; /* Length of trans_chars. */ @@ -872,19 +872,19 @@ typedef struct { } TkKeyEvent; typedef struct { - int type; /* of event */ - unsigned long serial; /* # of last request processed by server */ - Bool send_event; /* true if this came from a SendEvent request */ - Display *display; /* Display the event was read from */ - Window window; /* "event" window it is reported relative to */ - Window root; /* root window that the event occured on */ - Window subwindow; /* child window */ - Time time; /* milliseconds */ - int x, y; /* pointer x, y coordinates in event window */ - int x_root, y_root; /* coordinates relative to root */ - int delta; /* delta */ - unsigned int button; /* detail */ - Bool same_screen; /* same screen flag */ + int type; /* of event */ + unsigned long serial; /* # of last request processed by server */ + Bool send_event; /* true if this came from a SendEvent request */ + Display *display; /* Display the event was read from */ + Window window; /* "event" window it is reported relative to */ + Window root; /* root window that the event occured on */ + Window subwindow; /* child window */ + Time time; /* milliseconds */ + int x, y; /* pointer x, y coordinates in event window */ + int x_root, y_root; /* coordinates relative to root */ + int delta; /* delta */ + unsigned int state; /* detail */ + Bool same_screen; /* same screen flag */ } TkWheelEvent; /* |