summaryrefslogtreecommitdiff
path: root/src/gui_w48.c
AgeCommit message (Collapse)Author
2015-09-25patch 7.4.874Bram Moolenaar
Problem: MS-Windows: When Vim runs inside another application, the size isn't right. Solution: When in child mode compute the size differently. (Agorgianitis Loukas)
2015-09-15patch 7.4.869Bram Moolenaar
Problem: MS-Windows: scrolling may cause text to disappear when using an Intel GPU. Solution: Call GetPixel(). (Yohei Endo)
2015-09-15patch 7.4.866Bram Moolenaar
Problem: Crash when changing the 'tags' option from a remote command. (Benjamin Fritz) Solution: Instead of executing messages immediately, use a queue, like for netbeans. (James Kolb)
2015-06-09patch 7.4.731Bram Moolenaar
Problem: The tab menu shows "Close tab" even when it doesn't work. Solution: Don't show "Close tab" for the last tab. (John Marriott)
2014-08-22updated for version 7.4.413Bram Moolenaar
Problem: MS-Windows: Using US international keyboard layout, inserting dead key by pressing space does not always work. Issue 250. Solution: Let MS-Windows translate the message. (John Wellesz)
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)
2014-03-23updated for version 7.4.212Bram Moolenaar
Problem: Now that the +visual feature is always enabled the #ifdefs for it are not useful. Solution: Remove the checks for FEAT_VISUAL.
2014-03-19updated for version 7.4.206Bram Moolenaar
Problem: Compiler warnings on 64 bit Windows. Solution: Add type casts. (Mike Williams)
2014-03-12updated for version 7.4.202Bram Moolenaar
Problem: MS-Windows: non-ASCII font names don't work. Solution: Convert between the current code page and 'encoding'. (Ken Takata)
2013-09-22updated for version 7.4.035Bram Moolenaar
Problem: MS-Windows: The mouse pointer flickers when going from command line mode to Normal mode. Solution: Check for WM_NCMOUSEMOVE. (Ken Takata)
2013-08-10release version 7.4Bram Moolenaar
2013-08-07updated for version 7.4b.019Bram Moolenaar
Problem: Tabline is not updated properly when closing a tab on Win32. Solution: Only reduce flickering when adding a tab. (Ken Takata)
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-07-17updated for version 7.4a.034Bram Moolenaar
Problem: The tabline may flicker when opening a new tab after 7.3.759 on Win32. Solution: Move call to TabCtrl_SetCurSel(). (Ken Takata)
2013-07-09updated for version 7.4a.009Bram Moolenaar
Problem: Compiler warnings for function prototypes. Solution: Add "void". Move list_features() prototype. (Ken Takata)
2013-06-17updated for version 7.3.1220Bram Moolenaar
Problem: MS-Windows: When using wide font italic and bold are not included. Solution: Support wide-bold, wide-italic and wide-bold-italic. (Ken Takata, Taro Muraoka)
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)
2013-01-25updated for version 7.3.784Bram Moolenaar
Problem: Error when 'guifontwide' has a comma. Solution: Use gui.wide_font. (Taro Muraoka)
2013-01-23updated for version 7.3.782Bram Moolenaar
Problem: Windows: IME composition may use a wrong font. Solution: Use 'guifontwide' for IME when it is set. (Taro Muraoka)
2012-12-16updated for version 7.3.762Bram Moolenaar
Problem: On some systems the tabline is not redrawn. Solution: Call RedrawWindow(). (Charles Peacech)
2012-12-12updated for version 7.3.759Bram Moolenaar
Problem: MS-Windows: Updating the tabline is slow when there are many tabs. Solution: Disable redrawing while performing the update. (Arseny Kapoulkine)
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-20updated for version 7.3.408Bram Moolenaar
Problem: Missing declaration. Solution: Add the declaration. (John Marriott)
2012-01-20updated for version 7.3.406Bram Moolenaar
Problem: Multi-byte characters in b:browsefilter are not handled correctly. Solution: First use convert_filter() normally and then convert to wide characters. (Taro Muraoka)
2011-09-07updated for version 7.3.298Bram Moolenaar
Problem: Built-in colors are different from rgb.txt. Solution: Adjust the color values. (Benjamin Haskell)
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)
2010-10-20updated for version 7.3.032Bram Moolenaar
Problem: maparg() doesn't return the flags, such as <buffer>, <script>, <silent>. These are needed to save and restore a mapping. Solution: Improve maparg(). (also by Christian Brabandt)
2010-07-27Fix build warnings and problems for tiny/small Win32 build. (Mike Williams)Bram Moolenaar
2010-07-14Support completion for ":find". (Nazri Ramliy)Bram Moolenaar
Cleanup white space.
2010-05-24Fix uninit memory read in undo code. Fix uint32_t in proto file.Bram Moolenaar
A few minor changes.
2010-05-22Add :nbstart and :nbclose.Bram Moolenaar
2010-05-22Included the patch to support netbeans in a terminal.Bram Moolenaar
2010-02-17updated for version 7.2.365Bram Moolenaar
Problem: MS-Windows with MingW: "File->Save As" does not work. (John Marriott) Solution: Correctly fill in structure size. (Andy Kittner)
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)
2010-02-03updated for version 7.2.352Bram Moolenaar
Problem: Win64: Vim doesn't work when cross-compiled with MingW libraries. Solution: Always return TRUE for the WM_NCCREATE message. (Andy Kittner)
2009-01-28updated for version 7.2-093Bram Moolenaar
2009-01-28updated for version 7.2-089Bram Moolenaar
2008-12-24updated for version 7.2-071Bram Moolenaar
2008-11-20updated for version 7.2-049Bram Moolenaar
2008-11-12updated for version 7.2-036Bram Moolenaar
2008-07-24updated for version 7.2b-019Bram Moolenaar
2007-12-03updated for version 7.1-168Bram Moolenaar
2007-11-20updated for version 7.1-158Bram Moolenaar
2007-09-30updated for version 7.1-126Bram Moolenaar
2007-05-10updated for version 7.1bBram Moolenaar
2006-11-28updated for version 7.0-170Bram Moolenaar
2006-11-07updated for version 7.0-161Bram Moolenaar
2006-08-29updated for version 7.0-074Bram Moolenaar