Codejock Forums Homepage
Forum Home Forum Home > Codejock Products > Visual C++ MFC > Docking Pane
  New Posts New Posts RSS Feed - OnDockingPaneNotify
  FAQ FAQ  Forum Search   Events   Register Register  Login Login

OnDockingPaneNotify

 Post Reply Post Reply
Author
Message
coldjoke View Drop Down
Newbie
Newbie


Joined: 07 June 2007
Status: Offline
Points: 8
Post Options Post Options   Thanks (0) Thanks(0)   Quote coldjoke Quote  Post ReplyReply Direct Link To This Post Topic: OnDockingPaneNotify
    Posted: 09 July 2007 at 5:16am
when wParam == XTP_DPN_ACTION
lParam carries XTP_DOCKINGPANE_ACTION
now, how do I know which pane is notifying me??
Back to Top
mgampi View Drop Down
Senior Member
Senior Member
Avatar

Joined: 14 July 2003
Status: Offline
Points: 1198
Post Options Post Options   Thanks (0) Thanks(0)   Quote mgampi Quote  Post ReplyReply Direct Link To This Post Posted: 09 July 2007 at 6:49am
Hi;
 
LPARAM actually contains a pointer to a XTP_DOCKINGPANE_ACTION structure. To get the pane check its pPane member like this:
 
if (wp==XTP_DPN_ACTION)
{
  
XTP_DOCKINGPANE_ACTION* pAction = (XTP_DOCKINGPANE_ACTION*)lp;
   if (pAction->pPane->GetID()==IDR_MYPANE)
   ...
 
Martin

Product: Xtreme Toolkit v 19.0.0, new Projects v 19.1.0
Platform: Windows 10 v 1909 (64bit)
Language: VC++ 2017
Back to Top
coldjoke View Drop Down
Newbie
Newbie


Joined: 07 June 2007
Status: Offline
Points: 8
Post Options Post Options   Thanks (0) Thanks(0)   Quote coldjoke Quote  Post ReplyReply Direct Link To This Post Posted: 09 July 2007 at 11:32pm

i see~

thanks for your help~   
Back to Top
 Post Reply Post Reply
  Share Topic   

Forum Jump Forum Permissions View Drop Down

Forum Software by Web Wiz Forums® version 12.04
Copyright ©2001-2021 Web Wiz Ltd.

This page was generated in 0.188 seconds.