XTPDockingPaneKeyboardNavigate and localization |
Post Reply |
Author | |
Kukis
Newbie Joined: 24 May 2006 Status: Offline Points: 11 |
Post Options
Thanks(0)
Posted: 28 December 2006 at 1:07pm |
Is there any way to translate Docking Pane Keyboard Navigation window without library changes ?
I've investigated code and cant find any place to intercept internal string members and substitute with my own.
Initial values are assigned in the ctor:
CXTPDockingPaneWindowSelect::CXTPDockingPaneWindowSelect(CXTPDockingPaneManager* pManager, BOOL bActivatePanes)
: m_pManager(pManager), m_bActivatePanes(bActivatePanes) { .............. m_strActiveTools = _T("Active Tool Windows"); m_strActiveFiles = _T("Active Files"); .............. } and window itself is created and shown without any additional notifications:
LRESULT CALLBACK CXTPDockingPaneKeyboardHook::KeyboardProc(int code, WPARAM wParam, LPARAM lParam)
{ ................... CXTPDockingPaneManager* pManager = pKeyboardManager->FindFocusedManager(); if (pManager && (pManager->IsKeyboardNavigateEnabled() & xtpPaneKeyboardUseCtrlTab)) { pWindowSelect = new CXTPDockingPaneWindowSelect(pManager, FALSE); BOOL bResult = pWindowSelect->DoModal(); delete pWindowSelect;
pWindowSelect = 0; if (bResult)
return TRUE; } .................... } |
|
Oleg
Admin Group Joined: 21 May 2003 Location: United States Status: Offline Points: 11234 |
Post Options
Thanks(0)
|
Hello,
I afraid not. We will move this strings to resources for next update release. Thank you
|
|
Oleg, Support Team
CODEJOCK SOFTWARE SOLUTIONS |
|
Post Reply | |
Tweet
|
Forum Jump | Forum Permissions You cannot post new topics in this forum You cannot reply to topics in this forum You cannot delete your posts in this forum You cannot edit your posts in this forum You cannot create polls in this forum You cannot vote in polls in this forum |