summaryrefslogtreecommitdiff
path: root/src/gui_w32.c
AgeCommit message (Collapse)Author
2014-11-12updated for version 7.4.512Bram Moolenaar
Problem: Cannot generate prototypes for Win32 files and VMS. Solution: Add typedefs and #ifdef
2014-10-06updated for version 7.4.464Bram Moolenaar
Problem: Compiler warning. Solution: Add type cast. (Ken Takata)
2014-09-23updated for version 7.4.459Bram Moolenaar
Problem: Can't change the icon after building Vim. Solution: Load the icon from a file on startup. (Yasuhiro Matsumoto)
2014-09-19updated for version 7.4.448Bram Moolenaar
Problem: Using ETO_IGNORELANGUAGE causes problems. Solution: Remove this flag. (Paul Moore)
2014-08-06updated for version 7.4.394Bram Moolenaar
Problem: When using DirectX last italic character is incomplete. Solution: Add one to the number of cells. (Ken Takata)
2014-08-06updated for version 7.4.393Bram Moolenaar
Problem: Text drawing on newer MS-Windows systems is suboptimal. Some multi-byte characters are not displayed, even though the same font in Notepad can display them. (Srinath Avadhanula) Solution: Add the 'renderoptions' option to enable Direct-X drawing. (Taro Muraoka)
2013-08-07updated for version 7.4b.018Bram Moolenaar
Problem: Win32: Dialog can still be too big. Solution: Move the check for height further down. (Andrei Olsen)
2013-08-01updated for version 7.4b.001Bram Moolenaar
Problem: Win32: dialog may extend off-screen. Solution: Reduce the size, use correct borders. (Andrei Olsen)
2013-07-21updated for version 7.4a.038Bram Moolenaar
Problem: When using MSVC 2012 there are various issues, including GUI size computations. Solution: Use SM_CXPADDEDBORDER. (Mike Williams)
2013-07-21updated for version 7.4a.037Bram Moolenaar
Problem: Win32: When mouse is hidden and in the toolbar, moving it won't make it appear. (Sami Salonen) Solution: Add tabline_wndproc() and toolbar_wndproc(). (Ken Takata)
2013-06-27updated for version 7.3.1254Bram Moolenaar
Problem: Can't build without the multi-lang feature. (John Marriott) Solution: Add #ifdef.
2013-06-27updated for version 7.3.1252Bram Moolenaar
Problem: Gvim does not find the toolbar bitmap files in ~/vimfiles/bitmaps if the corresponding menu command contains additional characters like the shortcut marker '&' or if you use a non-english locale. Solution: Use menu->en_dname or menu->dname. (Martin Gieseking)
2013-06-26updated for version 7.3.1245Bram Moolenaar
Problem: MS-Windows: confirm() dialog text may still not fit. Solution: Use GetTextWidthEnc() instead of GetTextWidth() in two more places. (Yasuhiro Matsumoto)
2013-06-26updated for version 7.3.1244Bram Moolenaar
Problem: MS-Windows: confirm() dialog text may not fit. Solution: Use GetTextWidthEnc() instead of GetTextWidth(). (Yasuhiro Matsumoto)
2013-05-06updated for version 7.3.925Bram Moolenaar
Problem: Typos in source files. Solution: Fix the typos. (Ken Takata)
2013-03-19updated for version 7.3.870Bram Moolenaar
Problem: Compiler warnings when using MingW 4.5.3. Solution: Do not use MAKEINTRESOURCE. Adjust #if. (Ken Takata)
2012-11-20updated for version 7.3.719Bram Moolenaar
Problem: Cannot run new version of cproto, it fails on missing include files. Solution: Add lots of #ifndef PROTO
2012-01-04updated for version 7.3.393Bram Moolenaar
Problem: Win32: When resizing Vim it is always moved to the primary monitor if the secondary monitor is on the left. Solution: Use the nearest monitor. (Yukihiro Nakadaira)
2011-12-15updated for version 7.3.382Bram Moolenaar
Problem: IME characters are inserted twice. Solution: Do not call DefWindowProc() if the event was handled. (Yasuhiro Matsumoto)
2011-12-14updated for version 7.3.376Bram Moolenaar
Problem: Win32: Toolbar repainting does not work when the mouse pointer hovers over a button. Solution: Call DefWindowProc() when not hanlding an event. (Sergiu Dotenco)
2011-08-10updated for version 7.3.277Bram Moolenaar
Problem: MS-Windows: some characters do not show in dialogs. Solution: Use the wide methods when available. (Yanwei Jia)
2011-08-10updated for version 7.3.275Bram Moolenaar
Problem: MS-Windows: When using a black background some screen updates cause the window to flicker. Solution: Add WS_CLIPCHILDREN to CreateWindow(). (René Aguirre)
2011-07-07updated for version 7.3.244Bram Moolenaar
Problem: MS-Windows: Build problem with old compiler. (John Beckett) Solution: Only use HandleToLong() when available. (Mike Williams)
2011-05-25updated for version 7.3.206Bram Moolenaar
Problem: 64bit MS-Windows compiler warning. Solution: Use HandleToLong() instead of type cast. (Mike Williams)
2011-01-17updated for version 7.3.102Bram Moolenaar
Problem: When using ":make", typing the next command and then getting the "reload" prompt the next command is (partly) eaten by the reload prompt. Solution: Accept ':' as a special character at the reload prompt to accept the default choice and execute the command.
2010-10-27updated for version 7.3.038Bram Moolenaar
Problem: v:windowid isn't set on MS-Windows. Solution: Set it to the window handle. (Chris Sutcliffe)
2010-10-27updated for version 7.3.036Bram Moolenaar
Problem: Win32 GUI: When building without menus, the font for dialogs and tab page headers also changes. Solution: Define USE_SYSMENU_FONT always. (Harig G.)
2010-10-23updated for version 7.3.034Bram Moolenaar
Problem: Win32: may be loading .dll from the wrong directory. Solution: Go to the Vim executable directory when opening a library.
2010-08-08Remove unused code.Bram Moolenaar
2010-07-18Added strwidth() and strchars() functions.Bram Moolenaar
2010-07-14Support completion for ":find". (Nazri Ramliy)Bram Moolenaar
Cleanup white space.
2010-05-26Fix definition of UINT_PTR for 64 bit systems.Bram Moolenaar
2010-05-24Improve the MS-Windows installer.Bram Moolenaar
2010-05-22Add :nbstart and :nbclose.Bram Moolenaar
2010-02-17updated for version 7.2.362Bram Moolenaar
Problem: Win64: Vim doesn't work when cross-compiled with MingW libraries. Solution: Instead of handling WM_NCCREATE, create wide text area window class if the parent window iw side. (Sergey Khorev)
2009-12-24updated for version 7.2-323Bram Moolenaar
2009-01-28updated for version 7.2-093Bram Moolenaar
2008-11-20updated for version 7.2-049Bram Moolenaar
2008-06-24updated for version 7.2aBram Moolenaar
2008-01-05updated for version 7.1-204Bram Moolenaar
2008-01-03updated for version 7.1-196Bram Moolenaar
2007-08-30updated for version 7.1-091Bram Moolenaar
2007-08-14updated for version 7.1-070Bram Moolenaar
2007-06-19updated for version 7.1-003Bram Moolenaar
2007-05-10updated for version 7.1b-001Bram Moolenaar
2007-05-10updated for version 7.1bBram Moolenaar
2007-05-06updated for version 7.1aBram Moolenaar
2007-05-04updated for version 7.0-242Bram Moolenaar
2006-08-29updated for version 7.0-074Bram Moolenaar
2006-05-06updated for version 7.0g05Bram Moolenaar