<?xml version="1.0" encoding="utf-8" ?>
<?xml-stylesheet type="text/xsl" href="RSS_xslt_style.asp" version="1.0" ?>
<rss version="2.0" xmlns:WebWizForums="https://syndication.webwiz.net/rss_namespace/">
 <channel>
  <title>Codejock Developer Community : How arrange docking panes in &#111;nly 1 line?</title>
  <link>http://forum.codejock.com/</link>
  <description><![CDATA[This is an XML content feed of; Codejock Developer Community : Docking Pane : How arrange docking panes in &#111;nly 1 line?]]></description>
  <copyright>Copyright (c) 2006-2013 Web Wiz Forums - All Rights Reserved.</copyright>
  <pubDate>Wed, 13 May 2026 09:47:07 +0000</pubDate>
  <lastBuildDate>Mon, 19 Dec 2005 05:10:03 +0000</lastBuildDate>
  <docs>http://blogs.law.harvard.edu/tech/rss</docs>
  <generator>Web Wiz Forums 12.04</generator>
  <ttl>360</ttl>
  <WebWizForums:feedURL>forum.codejock.com/RSS_post_feed.asp?TID=3365</WebWizForums:feedURL>
  <image>
   <title><![CDATA[Codejock Developer Community]]></title>
   <url>http://forum.codejock.com/forum_images/codejock-logo.gif</url>
   <link>http://forum.codejock.com/</link>
  </image>
  <item>
   <title><![CDATA[How arrange docking panes in &#111;nly 1 line? : Didn&amp;#039;t you want it?  You...]]></title>
   <link>http://forum.codejock.com/forum_posts.asp?TID=3365&amp;PID=10256&amp;title=how-arrange-docking-panes-in-only-1-line#10256</link>
   <description>
    <![CDATA[<strong>Author:</strong> <a href="http://forum.codejock.com/member_profile.asp?PF=6851">Oleg</a><br /><strong>Subject:</strong> 3365<br /><strong>Posted:</strong> 19 December 2005 at 5:10am<br /><br /><P>Didn't you want it? </P><P>You asked to prevent dock to left if another panes was docked on left side...</P>]]>
   </description>
   <pubDate>Mon, 19 Dec 2005 05:10:03 +0000</pubDate>
   <guid isPermaLink="true">http://forum.codejock.com/forum_posts.asp?TID=3365&amp;PID=10256&amp;title=how-arrange-docking-panes-in-only-1-line#10256</guid>
  </item> 
  <item>
   <title><![CDATA[How arrange docking panes in &#111;nly 1 line? : thanks oleg. ^^* There is 1 problem. Only...]]></title>
   <link>http://forum.codejock.com/forum_posts.asp?TID=3365&amp;PID=10254&amp;title=how-arrange-docking-panes-in-only-1-line#10254</link>
   <description>
    <![CDATA[<strong>Author:</strong> <a href="http://forum.codejock.com/member_profile.asp?PF=1657">kangcorn</a><br /><strong>Subject:</strong> 3365<br /><strong>Posted:</strong> 19 December 2005 at 1:45am<br /><br /><P>thanks oleg. ^^*</P><P>There is 1 problem.</P><P>Only 1 pane docks in docking pane's case that several pane has attached.</P><P>Remainder panes do not dock again in situation that 1 pane has docked.</P><P>I am sorry, but ask reply again. <IMG src="http://forum.codejock.com/smileys/smiley19.gif" border="0"></P><P>Thank you.</P>]]>
   </description>
   <pubDate>Mon, 19 Dec 2005 01:45:01 +0000</pubDate>
   <guid isPermaLink="true">http://forum.codejock.com/forum_posts.asp?TID=3365&amp;PID=10254&amp;title=how-arrange-docking-panes-in-only-1-line#10254</guid>
  </item> 
  <item>
   <title><![CDATA[How arrange docking panes in &#111;nly 1 line? : Hi, Ok, I see now. You can catch...]]></title>
   <link>http://forum.codejock.com/forum_posts.asp?TID=3365&amp;PID=10199&amp;title=how-arrange-docking-panes-in-only-1-line#10199</link>
   <description>
    <![CDATA[<strong>Author:</strong> <a href="http://forum.codejock.com/member_profile.asp?PF=6851">Oleg</a><br /><strong>Subject:</strong> 3365<br /><strong>Posted:</strong> 14 December 2005 at 6:19am<br /><br /><P>Hi,</P><P>Ok, I see now.&nbsp; You can catch XTP_DPN_ACTIONevent in OnDockingPaneNotify handler and cancel soem actions:</P><P>&nbsp;</P><P>&nbsp;if (wParam == XTP_DPN_ACTION)<BR>&nbsp;{<BR>&nbsp;&nbsp;XTP_DOCKINGPANE_ACTION* pAction = (XTP_DOCKINGPANE_ACTION*)lParam;</P><P>&nbsp;&nbsp;if (pAction-&gt;action == xtpPaneActionDocking &amp;&amp; pAction-&gt;pDockContainer &amp;&amp; pAction-&gt;pDockContainer-&gt;GetType() == xtpPaneTypeTabbedContainer)<BR>&nbsp;&nbsp;{<BR>&nbsp;&nbsp;&nbsp;if  (((CXTPDockingPaneTabbedContainer*)pAction-&gt;pDockContaine r)-&gt;GetParentFrame() == this)<BR>&nbsp;&nbsp;&nbsp;{<BR>&nbsp;&nbsp;&nbsp;&nbsp;XTPDockingPaneDirection directionPane =  m_paneManager.GetPaneDirection(pAction-&gt;pDockContainer);& nbsp;&nbsp;&nbsp;&nbsp;</P><P>&nbsp;&nbsp;&nbsp;&nbsp;if (((directionPane == xtpPaneDockBottom) || (directionPane == xtpPaneDockTop)) &amp;&amp; <BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;((pAction-&gt;dockDirection == xtpPaneDockBottom) || (pAction-&gt;dockDirection == xtpPaneDockTop)))<BR>&nbsp;&nbsp;&nbsp;&nbsp;{<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;pAction-&gt;bCancel = TRUE;<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;return TRUE;<BR>&nbsp;&nbsp;&nbsp;&nbsp;}</P><P>&nbsp;&nbsp;&nbsp;&nbsp;if (((directionPane == xtpPaneDockLeft) || (directionPane == xtpPaneDockRight)) &amp;&amp; <BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;((pAction-&gt;dockDirection == xtpPaneDockLeft) || (pAction-&gt;dockDirection == xtpPaneDockRight)))<BR>&nbsp;&nbsp;&nbsp;&nbsp;{<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;pAction-&gt;bCancel = TRUE;<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;return TRUE;<BR>&nbsp;&nbsp;&nbsp;&nbsp;}<BR>&nbsp;&nbsp;&nbsp;}&nbsp;&nbsp;<BR>&nbsp;&nbsp;}</P><P>&nbsp;&nbsp;if (pAction-&gt;action == xtpPaneActionDocking &amp;&amp; (pAction-&gt;pDockContainer == m_paneManager.GetTopPane() || <BR>&nbsp;&nbsp;&nbsp;pAction-&gt;pDockContainer == m_paneManager.GetClientPane()))<BR>&nbsp;&nbsp;{<BR>&nbsp;&nbsp;&nbsp;POSITION pos = m_paneManager.GetPaneList().GetHeadPosition();<BR>&nbsp;&nbsp;&nbsp;while (pos)<BR>&nbsp;&nbsp;&nbsp;{<BR>&nbsp;&nbsp;&nbsp;&nbsp;CXTPDockingPane* pPane = m_paneManager.GetPaneList().GetNext(pos);<BR>&nbsp;&nbsp;&nbsp;&nbsp;if (!pPane-&gt;IsClosed() &amp;&amp; !pPane-&gt;IsFloating() &amp;&amp; pPane != pAction-&gt;pPane &amp;&amp; pAction-&gt;dockDirection == m_paneManager.GetPaneDirection(pPane))<BR>&nbsp;&nbsp;&nbsp;&nbsp;{<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;pAction-&gt;bCancel = TRUE;<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;return TRUE;<BR>&nbsp;&nbsp;&nbsp;&nbsp;}<BR>&nbsp;&nbsp;&nbsp;}</P><P>&nbsp;&nbsp;}</P><P>&nbsp;&nbsp;<BR>&nbsp;&nbsp;return TRUE;<BR>&nbsp;}<BR>&nbsp;</P>]]>
   </description>
   <pubDate>Wed, 14 Dec 2005 06:19:44 +0000</pubDate>
   <guid isPermaLink="true">http://forum.codejock.com/forum_posts.asp?TID=3365&amp;PID=10199&amp;title=how-arrange-docking-panes-in-only-1-line#10199</guid>
  </item> 
  <item>
   <title><![CDATA[How arrange docking panes in &#111;nly 1 line? : It sees and solved pane actions...]]></title>
   <link>http://forum.codejock.com/forum_posts.asp?TID=3365&amp;PID=10122&amp;title=how-arrange-docking-panes-in-only-1-line#10122</link>
   <description>
    <![CDATA[<strong>Author:</strong> <a href="http://forum.codejock.com/member_profile.asp?PF=1657">kangcorn</a><br /><strong>Subject:</strong> 3365<br /><strong>Posted:</strong> 08 December 2005 at 8:28pm<br /><br /><P>It sees and solved pane actions sample that dock only left. ^^~</P><P><IMG src="uploads/kangcorn/2005-12-08_202849_example_image2.jpg" border="0"></P>]]>
   </description>
   <pubDate>Thu, 08 Dec 2005 20:28:57 +0000</pubDate>
   <guid isPermaLink="true">http://forum.codejock.com/forum_posts.asp?TID=3365&amp;PID=10122&amp;title=how-arrange-docking-panes-in-only-1-line#10122</guid>
  </item> 
  <item>
   <title><![CDATA[How arrange docking panes in &#111;nly 1 line? : I don&amp;#039;t understand :(  You...]]></title>
   <link>http://forum.codejock.com/forum_posts.asp?TID=3365&amp;PID=10099&amp;title=how-arrange-docking-panes-in-only-1-line#10099</link>
   <description>
    <![CDATA[<strong>Author:</strong> <a href="http://forum.codejock.com/member_profile.asp?PF=6851">Oleg</a><br /><strong>Subject:</strong> 3365<br /><strong>Posted:</strong> 08 December 2005 at 3:09am<br /><br /><P>I don't understand :( </P><P>You want to prevent docking to top/right/bottom? and allow only to dock to left?</P>]]>
   </description>
   <pubDate>Thu, 08 Dec 2005 03:09:21 +0000</pubDate>
   <guid isPermaLink="true">http://forum.codejock.com/forum_posts.asp?TID=3365&amp;PID=10099&amp;title=how-arrange-docking-panes-in-only-1-line#10099</guid>
  </item> 
  <item>
   <title><![CDATA[How arrange docking panes in &#111;nly 1 line? : thank you. your reply. That I...]]></title>
   <link>http://forum.codejock.com/forum_posts.asp?TID=3365&amp;PID=10088&amp;title=how-arrange-docking-panes-in-only-1-line#10088</link>
   <description>
    <![CDATA[<strong>Author:</strong> <a href="http://forum.codejock.com/member_profile.asp?PF=1657">kangcorn</a><br /><strong>Subject:</strong> 3365<br /><strong>Posted:</strong> 07 December 2005 at 6:14pm<br /><br /><P>thank you. your reply.</P><P>That I wish is to limit docking by user.</P><P>When user does docking in floating state or drag and drop, it wants to become by one line.</P><P>Is there method?</P><P>&nbsp;</P>]]>
   </description>
   <pubDate>Wed, 07 Dec 2005 18:14:10 +0000</pubDate>
   <guid isPermaLink="true">http://forum.codejock.com/forum_posts.asp?TID=3365&amp;PID=10088&amp;title=how-arrange-docking-panes-in-only-1-line#10088</guid>
  </item> 
  <item>
   <title><![CDATA[How arrange docking panes in &#111;nly 1 line? :  CXTPDockingPane1* pPane= m_paneManager.FindPane(ID_1),...]]></title>
   <link>http://forum.codejock.com/forum_posts.asp?TID=3365&amp;PID=10073&amp;title=how-arrange-docking-panes-in-only-1-line#10073</link>
   <description>
    <![CDATA[<strong>Author:</strong> <a href="http://forum.codejock.com/member_profile.asp?PF=6851">Oleg</a><br /><strong>Subject:</strong> 3365<br /><strong>Posted:</strong> 07 December 2005 at 5:33am<br /><br /><P>&nbsp;</P><P>CXTPDockingPane1* pPane= m_paneManager.FindPane(ID_1), </P><P>m_paneManager.DockPane(pPane, xtpPamneDockLeft, NULL);</P><P>and for all other pane:</P><P>m_paneManager.DockPane(m_paneManager.FindPane(ID_2), xtpPaneDockTop, pPane);</P><P>m_paneManager.DockPane(m_paneManager.FindPane(ID_3), xtpPaneDockTop, pPane);</P><P>m_paneManager.DockPane(m_paneManager.FindPane(ID_4), xtpPaneDockTop, pPane);</P>]]>
   </description>
   <pubDate>Wed, 07 Dec 2005 05:33:18 +0000</pubDate>
   <guid isPermaLink="true">http://forum.codejock.com/forum_posts.asp?TID=3365&amp;PID=10073&amp;title=how-arrange-docking-panes-in-only-1-line#10073</guid>
  </item> 
  <item>
   <title><![CDATA[How arrange docking panes in &#111;nly 1 line? : How do you arrange docking panes...]]></title>
   <link>http://forum.codejock.com/forum_posts.asp?TID=3365&amp;PID=10072&amp;title=how-arrange-docking-panes-in-only-1-line#10072</link>
   <description>
    <![CDATA[<strong>Author:</strong> <a href="http://forum.codejock.com/member_profile.asp?PF=1657">kangcorn</a><br /><strong>Subject:</strong> 3365<br /><strong>Posted:</strong> 07 December 2005 at 4:21am<br /><br /><P><FONT face="Arial, Helvetica, sans-serif">How do you arrange docking panes in only 1 line?</FONT></P><P><FONT face=Arial>sorry.<BR>I do not well English. <IMG src="http://forum.codejock.com/smileys/smiley19.gif" border="0"><BR><BR>There is 5 docking panes.<BR><BR>condition 1:<BR>All pane becomes docking on left side.</FONT><FONT face=Arial><BR>condition 2:<BR>All pane must become docking all in 1 line.<BR><BR>How must you do if do with upside.<BR><BR>thank you.</FONT></P><P><FONT face=Arial>** Xtreme Toolkit Pro 9.8</P><P><IMG src="uploads/kangcorn/2005-12-07_042052_example_image.jpg" border="0"><BR></P></FONT>]]>
   </description>
   <pubDate>Wed, 07 Dec 2005 04:21:43 +0000</pubDate>
   <guid isPermaLink="true">http://forum.codejock.com/forum_posts.asp?TID=3365&amp;PID=10072&amp;title=how-arrange-docking-panes-in-only-1-line#10072</guid>
  </item> 
 </channel>
</rss>