Developer forums (C::B DEVELOPMENT STRICTLY!) > Plugins development

BrowseTracker plugin

<< < (6/22) > >>

MortenMacFly:

--- Quote from: MortenMacFly on July 23, 2007, 03:34:55 pm ---Now the CTRL+PGUP/PGDOWN simply is ignored for CC. This very much deceases my productivity... :-(

--- End quote ---
Aaargh! I figured out why that was. I have switched from wx26 to wx28 today and (somehow) all the keybinder associations were broken. Thus suddenly the CTRL+P combination was assigned for both: Jump to previous and next method. I have deleted the keybinder config file and it works again. Anyway all the rest I mentioned is true.
BTW: Should we start a new thread on that topic? This has not very much to do with the BrowserPlugin meanwhile...
With regards, Morten.

eranif:
Try to add event.Skip() at the end of the OnNavigationKey() of wxFNB.

Eran

killerbot:

--- Quote from: eranif on July 23, 2007, 04:05:35 pm ---Try to add event.Skip() at the end of the OnNavigationKey() of wxFNB.

Eran

--- End quote ---
will do that.
I hope this week to upgrade to your latest version of wxFBN, Eranif.
Any special things to consider ?

eranif:

--- Quote from: Killerbot ---Any special things to consider ?
--- End quote ---
- If you mean in build process, you should try and built it with 2.8 & 2.6 - I myself uses 2.8 so I am not sure if I didn't break 2.6 builds (for example, wxRect::Contains() vs wxRect::Iside(), I attended theses issues, but still)
- The main reason to switch to the next version, is the new theme (wxFNB_FF2), the property dialog and couple of bug fixes.

Eran


killerbot:
@Eran :

2 changes I made to your sources (compile step) :

renderer.cpp : line 23 : regPts[9] is NOT used.  (I didn't touch th comment just above it )

wxFlatNotebook.cpp : line 127 : signed/unsigned comp warning

if(m_iActivePage > (int)page || (int)page >= m_pagesInfoVec.Count())

becomes

if(m_iActivePage > (int)page || (int)page >= (int)(m_pagesInfoVec.Count()))


CB builds fine (first testing on windows), now time for the tests


moving to another dedicated topic --> negative side effects


Navigation

[0] Message Index

[#] Next page

[*] Previous page

Go to full version