<?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 : xtpPaneThemeNativeWinXP</title>
  <link>http://forum.codejock.com/</link>
  <description><![CDATA[This is an XML content feed of; Codejock Developer Community : Docking Pane : xtpPaneThemeNativeWinXP]]></description>
  <copyright>Copyright (c) 2006-2013 Web Wiz Forums - All Rights Reserved.</copyright>
  <pubDate>Wed, 13 May 2026 04:27:15 +0000</pubDate>
  <lastBuildDate>Fri, 11 Mar 2005 02:37:38 +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=1915</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[xtpPaneThemeNativeWinXP : We reversed it too. Thank you....]]></title>
   <link>http://forum.codejock.com/forum_posts.asp?TID=1915&amp;PID=5687&amp;title=xtppanethemenativewinxp#5687</link>
   <description>
    <![CDATA[<strong>Author:</strong> <a href="http://forum.codejock.com/member_profile.asp?PF=6851">Oleg</a><br /><strong>Subject:</strong> 1915<br /><strong>Posted:</strong> 11 March 2005 at 2:37am<br /><br />We reversed it too. Thank you.]]>
   </description>
   <pubDate>Fri, 11 Mar 2005 02:37:38 +0000</pubDate>
   <guid isPermaLink="true">http://forum.codejock.com/forum_posts.asp?TID=1915&amp;PID=5687&amp;title=xtppanethemenativewinxp#5687</guid>
  </item> 
  <item>
   <title><![CDATA[xtpPaneThemeNativeWinXP :  I made some changes in CXTPD...]]></title>
   <link>http://forum.codejock.com/forum_posts.asp?TID=1915&amp;PID=5671&amp;title=xtppanethemenativewinxp#5671</link>
   <description>
    <![CDATA[<strong>Author:</strong> <a href="http://forum.codejock.com/member_profile.asp?PF=203">Ark42</a><br /><strong>Subject:</strong> 1915<br /><strong>Posted:</strong> 10 March 2005 at 1:51pm<br /><br />I made some changes in CXTPDockingPaneNativeXPTheme::DrawCaptionButton as follows:<br><br>&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; <span style="color: rgb(0, 0, 255);">if </span>(pButton-&gt;GetID() == XTP_IDS_DOCKINGPANE_CLOSE)<br>&nbsp;&nbsp;&nbsp; &nbsp;&nbsp; &nbsp;{<br><span style="color: rgb(0, 153, 0);">//&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;int nState = bActive? pButton-&gt;IsPressed()? EBHC_PRESSED: EBHC_HOT: EBHC_NORMAL;</span><br>&nbsp;&nbsp;&nbsp; &nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;<span style="color: rgb(0, 0, 255);">int </span>nState = pButton-&gt;IsPressed()? EBHC_PRESSED: bActive || pButton-&gt;IsSelected()? EBHC_HOT: EBHC_NORMAL;<br>&nbsp;&nbsp;&nbsp; &nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;m_themeExplorer.DrawThemeBackground(*pDC, EBP_HEADERCLOSE, nState, pButton-&gt;GetRect(), 0);<br>&nbsp;&nbsp;&nbsp; &nbsp;&nbsp; &nbsp;}<br>&nbsp;&nbsp;&nbsp; &nbsp;&nbsp; &nbsp;<span style="color: rgb(0, 0, 255);">else</span><br>&nbsp;&nbsp;&nbsp; &nbsp;&nbsp; &nbsp;{<br><span style="color: rgb(0, 153, 0);">//&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;int nState = bActive? pButton-&gt;IsPressed()? EBHP_PRESSED: pButton-&gt;IsSelected()? EBHP_HOT: EBHP_NORMAL: EBHP_NORMAL;</span><br style="color: rgb(0, 153, 0);"><span style="color: rgb(0, 153, 0);">//&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;m_themeExplorer.DrawThemeBackground(*pDC, EBP_HEADERPIN, (pButton-&gt;GetState() &amp; xtpPanePinPushed? 3: 0) + nState, pButton-&gt;GetRect(), 0);</span><br>&nbsp;&nbsp;&nbsp; &nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;<span style="color: rgb(0, 0, 255);">int </span>nState = pButton-&gt;IsPressed()? EBHP_PRESSED: pButton-&gt;IsSelected()? EBHP_HOT: EBHP_NORMAL;<br>&nbsp;&nbsp;&nbsp; &nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;m_themeExplorer.DrawThemeBackground(*pDC, EBP_HEADERPIN, (pButton-&gt;GetState() &amp; xtpPanePinPushed? 0: 3) + nState, pButton-&gt;GetRect(), 0);<br>&nbsp;&nbsp;&nbsp; &nbsp;&nbsp; &nbsp;} <br><br><br>For the close button, I don't think it should have to have focus to show the mouse-down effect when you are closing a non-focused pane.&nbsp; I also added showing the Hot state when you hover over a non-focused pane, which is better than nothing, since the XP theme manger only has 3 states (normal, hot, pressed).&nbsp; Microsoft should have put in 4 states (inactive, active, hot, pressed) like the main application's close button has.<br><br>For the pushpin button, again I don't think it should have to have focus to show the mouse-down effect, or the hover effect either. I also then reversed the effect of xtpPanePinPushed to use the "SELECTED" states when the pin is *not* pushed instead. It seems to draw properly that way I think.<br><br><span style="font-size:10px"><br /><br />Edited by Ark42</span>]]>
   </description>
   <pubDate>Thu, 10 Mar 2005 13:51:16 +0000</pubDate>
   <guid isPermaLink="true">http://forum.codejock.com/forum_posts.asp?TID=1915&amp;PID=5671&amp;title=xtppanethemenativewinxp#5671</guid>
  </item> 
  <item>
   <title><![CDATA[xtpPaneThemeNativeWinXP : Sorry, I should have specified...]]></title>
   <link>http://forum.codejock.com/forum_posts.asp?TID=1915&amp;PID=5670&amp;title=xtppanethemenativewinxp#5670</link>
   <description>
    <![CDATA[<strong>Author:</strong> <a href="http://forum.codejock.com/member_profile.asp?PF=864">JamesH</a><br /><strong>Subject:</strong> 1915<br /><strong>Posted:</strong> 10 March 2005 at 12:49pm<br /><br />Sorry, I should have specified I meant the pushpin.... ]]>
   </description>
   <pubDate>Thu, 10 Mar 2005 12:49:03 +0000</pubDate>
   <guid isPermaLink="true">http://forum.codejock.com/forum_posts.asp?TID=1915&amp;PID=5670&amp;title=xtppanethemenativewinxp#5670</guid>
  </item> 
  <item>
   <title><![CDATA[xtpPaneThemeNativeWinXP : JamesH - what same thing do you...]]></title>
   <link>http://forum.codejock.com/forum_posts.asp?TID=1915&amp;PID=5665&amp;title=xtppanethemenativewinxp#5665</link>
   <description>
    <![CDATA[<strong>Author:</strong> <a href="http://forum.codejock.com/member_profile.asp?PF=203">Ark42</a><br /><strong>Subject:</strong> 1915<br /><strong>Posted:</strong> 10 March 2005 at 11:42am<br /><br /><span style="font-weight: normal;" ="bold">JamesH - what same thing do you see? The pushpins, or the non-focused close button on the olive theme?&nbsp; The olive theme problem I show as fixed on WinXP Home SP2</span>, but only showed up on WinXP Pro (no SP).<br><br>]]>
   </description>
   <pubDate>Thu, 10 Mar 2005 11:42:39 +0000</pubDate>
   <guid isPermaLink="true">http://forum.codejock.com/forum_posts.asp?TID=1915&amp;PID=5665&amp;title=xtppanethemenativewinxp#5665</guid>
  </item> 
  <item>
   <title><![CDATA[xtpPaneThemeNativeWinXP : I see the same thing, and have...]]></title>
   <link>http://forum.codejock.com/forum_posts.asp?TID=1915&amp;PID=5664&amp;title=xtppanethemenativewinxp#5664</link>
   <description>
    <![CDATA[<strong>Author:</strong> <a href="http://forum.codejock.com/member_profile.asp?PF=864">JamesH</a><br /><strong>Subject:</strong> 1915<br /><strong>Posted:</strong> 10 March 2005 at 11:39am<br /><br />I see the same thing, and have sp2 installed.&nbsp; I just assumed it was a idiosyncrasy of the theme...]]>
   </description>
   <pubDate>Thu, 10 Mar 2005 11:39:34 +0000</pubDate>
   <guid isPermaLink="true">http://forum.codejock.com/forum_posts.asp?TID=1915&amp;PID=5664&amp;title=xtppanethemenativewinxp#5664</guid>
  </item> 
  <item>
   <title><![CDATA[xtpPaneThemeNativeWinXP : Ok, the Olive theme problem is...]]></title>
   <link>http://forum.codejock.com/forum_posts.asp?TID=1915&amp;PID=5663&amp;title=xtppanethemenativewinxp#5663</link>
   <description>
    <![CDATA[<strong>Author:</strong> <a href="http://forum.codejock.com/member_profile.asp?PF=203">Ark42</a><br /><strong>Subject:</strong> 1915<br /><strong>Posted:</strong> 10 March 2005 at 11:35am<br /><br /><br>Ok, the Olive theme problem is fixed in WinXP SP2 (didn't test SP1)<br>Here is from a WinXP SP2 box with the Microsoft Media Center Royale theme:<br><br><img src="uploads/Ark42/2005-03-10_113433_PanesMediaCenter.png" border="0"><br><br>The pushpin graphics still seem reversed to me.<br><br>]]>
   </description>
   <pubDate>Thu, 10 Mar 2005 11:35:42 +0000</pubDate>
   <guid isPermaLink="true">http://forum.codejock.com/forum_posts.asp?TID=1915&amp;PID=5663&amp;title=xtppanethemenativewinxp#5663</guid>
  </item> 
  <item>
   <title><![CDATA[xtpPaneThemeNativeWinXP : This is what I see, with WinXP...]]></title>
   <link>http://forum.codejock.com/forum_posts.asp?TID=1915&amp;PID=5661&amp;title=xtppanethemenativewinxp#5661</link>
   <description>
    <![CDATA[<strong>Author:</strong> <a href="http://forum.codejock.com/member_profile.asp?PF=203">Ark42</a><br /><strong>Subject:</strong> 1915<br /><strong>Posted:</strong> 10 March 2005 at 11:17am<br /><br /><br>This is what I see, with WinXP (no SP, clean install)<br><br><img src="uploads/Ark42/2005-03-10_111541_NativeXPPanes.png" border="0"><br><br>The first pane is floating, and rolled up, the second pane is docked and has focus as well.<br>I suppose it could be a WinXP bug then.<br><br>]]>
   </description>
   <pubDate>Thu, 10 Mar 2005 11:17:15 +0000</pubDate>
   <guid isPermaLink="true">http://forum.codejock.com/forum_posts.asp?TID=1915&amp;PID=5661&amp;title=xtppanethemenativewinxp#5661</guid>
  </item> 
  <item>
   <title><![CDATA[xtpPaneThemeNativeWinXP : 1. ... 2. We just call Theme...]]></title>
   <link>http://forum.codejock.com/forum_posts.asp?TID=1915&amp;PID=5658&amp;title=xtppanethemenativewinxp#5658</link>
   <description>
    <![CDATA[<strong>Author:</strong> <a href="http://forum.codejock.com/member_profile.asp?PF=6851">Oleg</a><br /><strong>Subject:</strong> 1915<br /><strong>Posted:</strong> 10 March 2005 at 10:38am<br /><br /><P>1. ...</P><P>2. We just call Theme routines to draw buttons... Strange.</P><P>people, do you have same problem?&nbsp;&nbsp; I see it normal. WinXP sp2.</P><P>&nbsp;</P><P>&nbsp;</P><P>&nbsp;</P>]]>
   </description>
   <pubDate>Thu, 10 Mar 2005 10:38:42 +0000</pubDate>
   <guid isPermaLink="true">http://forum.codejock.com/forum_posts.asp?TID=1915&amp;PID=5658&amp;title=xtppanethemenativewinxp#5658</guid>
  </item> 
  <item>
   <title><![CDATA[xtpPaneThemeNativeWinXP : The pushpins seem reversed (pushed...]]></title>
   <link>http://forum.codejock.com/forum_posts.asp?TID=1915&amp;PID=5559&amp;title=xtppanethemenativewinxp#5559</link>
   <description>
    <![CDATA[<strong>Author:</strong> <a href="http://forum.codejock.com/member_profile.asp?PF=203">Ark42</a><br /><strong>Subject:</strong> 1915<br /><strong>Posted:</strong> 05 March 2005 at 12:20am<br /><br /><br>The pushpins seem reversed (pushed when pane hidden, not pushed when pane docked/shown normally)<br><br>With the Olive XP theme, the non-focused pane's close button is blue, not green.<br><br>]]>
   </description>
   <pubDate>Sat, 05 Mar 2005 00:20:11 +0000</pubDate>
   <guid isPermaLink="true">http://forum.codejock.com/forum_posts.asp?TID=1915&amp;PID=5559&amp;title=xtppanethemenativewinxp#5559</guid>
  </item> 
 </channel>
</rss>