Print Page | Close Window

Command Routing to panes

Printed From: Codejock Forums
Category: Codejock Products
Forum Name: Docking Pane
Forum Description: Topics Related to Codejock Docking Pane
URL: http://forum.codejock.com/forum_posts.asp?TID=14259
Printed Date: 24 April 2024 at 9:45pm
Software Version: Web Wiz Forums 12.04 - http://www.webwizforums.com


Topic: Command Routing to panes
Posted By: Bart6
Subject: Command Routing to panes
Date Posted: 11 May 2009 at 4:59am
Hi all,

I have an application that uses Panes (copied from the Ribbon sample). I want the panes to be able to react to commands from the ribbon, so i put a OnCmdMsg handler in the mainframe that gives the panes a shot at the commands, before they are send through the regular handler. (see code below)

So here is the question: is this the right approach?

Thanks
Bart



BOOL CMainFrame::OnCmdMsg(UINT nID, int nCode, void* pExtra, AFX_CMDHANDLERINFO* pHandlerInfo)
{
   // We want to pane to also be able to react to commands.
   if (m_paneScenes.OnCmdMsg(nID, nCode, pExtra, pHandlerInfo))
      return TRUE;

   return __super::OnCmdMsg(nID, nCode, pExtra, pHandlerInfo);
}



Replies:
Posted By: Oleg
Date Posted: 12 May 2009 at 2:15am
Hi,
 
Check Samples\DockingPane\ActivePaneView  sample.


-------------
Oleg, Support Team
CODEJOCK SOFTWARE SOLUTIONS


Posted By: Albertb
Date Posted: 08 July 2009 at 9:59am
Can someone please point me to that sample in a clearer way.  Probably my stupidity but I can't find it anywhere!  Many thanks.

Yup!  True to form, it was my stupidity.  I've got it now thanks, no need to reply unless to be scalding and scathing


-------------
Xtreme Toolkit Pro 2007
Win 32
Visual C++


Posted By: Marcus
Date Posted: 28 April 2010 at 8:55am
Why isn't this build in?
DockingPaneManager should simply route to the active pane, if there is one,
and a pane should route to its child window, if there is one.
Then the frame window could just call panemanager.OnCmdMsg.



Print Page | Close Window

Forum Software by Web Wiz Forums® version 12.04 - http://www.webwizforums.com
Copyright ©2001-2021 Web Wiz Ltd. - https://www.webwiz.net