Bugs that appeared after dropping wxScintilla for wxSTC
0. Platform - Win 7 x64 Home Premium, Russian
1. Black background in higlighted matching words (neither default colour settings nor deleting all settings from User/ApplicationData/Codelite has no effect):
2. Quick Code Navigation - Ctrl + Alt + Mouse left button - not only navigates, but select code:
(In this example I was looking for an implementation for ReplaceSelection from ReplaceSelection call in the same file)
The reason for this - 'alt' cursor:
3. Description page code font has wrong height:
4. Wrong height for hint tool tip (maybe this associated with a escription page code font wrong height):
Bugs that appeared after dropping wxScintilla for wxSTC
-
- CodeLite Enthusiast
- Posts: 34
- Joined: Fri Sep 14, 2012 1:01 pm
- Genuine User: Yes
- IDE Question: C++
- Contact:
- eranif
- CodeLite Plugin
- Posts: 6375
- Joined: Wed Feb 06, 2008 9:29 pm
- Genuine User: Yes
- IDE Question: C++
- Contact:
Re: Bugs that appeared after dropping wxScintilla for wxSTC
This is a bug in wxWidgets, I patched my local wxWidgets and sent a patch to wx (which I think was already applied) - you should apply the patch locally and build wx294NilC wrote: Higlight matching words - black background (neither default colour settings nor deleting all settings from User/ApplicationData/Codelite has no effect):
http://trac.wxwidgets.org/ticket/14680
not related to wxStyledTextCtrl. This is a new implementation I wrote. The font is using the correct font size. it is no longer suppose to use the font selected in the editor. the function signature will now use a monospaced font, while the description part is using the standard GUI font per OS. I will change the font to something less ugly than "Courier", but it general this will not changeDescription page code font wrong height:
This seems like a bug to me, thought I can't make it happen hereNilC wrote: Wrong height for hint tool tip (maybe this associated with a escription page code font wrong height):
Eran
Make sure you have read the HOW TO POST thread
-
- CodeLite Enthusiast
- Posts: 34
- Joined: Fri Sep 14, 2012 1:01 pm
- Genuine User: Yes
- IDE Question: C++
- Contact:
Re: Bugs that appeared after dropping wxScintilla for wxSTC
Thanks for patchThis is a bug in wxWidgets, I patched my local wxWidgets and sent a patch to wx (which I think was already applied) - you should apply the patch locally and build wx294
http://trac.wxwidgets.org/ticket/14680
I could change hotkey to Ctrl + Shift + Mouse left button. Is it right solution?Quick Code Navigation - Ctrl + Alt + Mouse left button - not only navigates, but select code:
- eranif
- CodeLite Plugin
- Posts: 6375
- Joined: Wed Feb 06, 2008 9:29 pm
- Genuine User: Yes
- IDE Question: C++
- Contact:
Re: Bugs that appeared after dropping wxScintilla for wxSTC
I am going to change this fucntionality a bit to be more like eclipse - when Ctrl-CLICK a word a small popup menu will show to offer decl or implNilC wrote:I could change hotkey to Ctrl + Shift + Mouse left button. Is it right solution?
Eran
Make sure you have read the HOW TO POST thread