Mercurial > hg > xemacs-beta
diff src/console-msw.h @ 223:2c611d1463a6 r20-4b10
Import from CVS: tag r20-4b10
author | cvs |
---|---|
date | Mon, 13 Aug 2007 10:10:54 +0200 |
parents | 78f53ef88e17 |
children | 557eaa0339bf |
line wrap: on
line diff
--- a/src/console-msw.h Mon Aug 13 10:10:03 2007 +0200 +++ b/src/console-msw.h Mon Aug 13 10:10:54 2007 +0200 @@ -70,6 +70,20 @@ /* DC for this win32 window */ HDC hdc; + + /* Time of last click event, for button 2 emul */ + DWORD last_click_time; + + /* Coordinates of last click event, screen-relative */ + POINTS last_click_point; + + /* Misc flags */ + int button2_need_lbutton : 1; + int button2_need_rbutton : 1; + int button2_is_down : 1; + int ignore_next_lbutton_up : 1; + int ignore_next_rbutton_up : 1; + int sizing : 1; }; #define FRAME_MSWINDOWS_DATA(f) FRAME_TYPE_DATA (f, mswindows)