From 645ec7d6e28c1039c8f8475bc8af2eaada3e90ac Mon Sep 17 00:00:00 2001 From: James Hawkins Date: Mon, 6 Jun 2005 10:03:03 +0000 Subject: [PATCH] Audit the Tab control. --- dlls/comctl32/tab.c | 30 ++++++++++++++++++++++++++++++ 1 file changed, 30 insertions(+) diff --git a/dlls/comctl32/tab.c b/dlls/comctl32/tab.c index d8dabc7440b..043db7e2092 100644 --- a/dlls/comctl32/tab.c +++ b/dlls/comctl32/tab.c @@ -20,17 +20,47 @@ * License along with this library; if not, write to the Free Software * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA * + * NOTES + * + * This code was audited for completeness against the documented features + * of Comctl32.dll version 6.0 on May. 20, 2005, by James Hawkins. + * + * Unless otherwise noted, we believe this code to be complete, as per + * the specification mentioned above. + * If you discover missing features, or bugs, please note them below. + * * TODO: * * Styles: + * TCS_MULTISELECT + * TCS_RIGHT + * TCS_RIGHTJUSTIFY + * TCS_SCROLLOPPOSITE + * TCS_SINGLELINE * TCIF_RTLREADING * + * Extended Styles: + * TCS_EX_FLATSEPARATORS + * TCS_EX_REGISTERDROP + * + * States: + * TCIS_BUTTONPRESSED + * + * Notifications: + * NM_RELEASEDCAPTURE + * TCN_FOCUSCHANGE + * TCN_GETOBJECT + * TCN_KEYDOWN + * * Messages: * TCM_REMOVEIMAGE * TCM_DESELECTALL * TCM_GETEXTENDEDSTYLE * TCM_SETEXTENDEDSTYLE * + * Macros: + * TabCtrl_AdjustRect + * */ #include -- 2.11.4.GIT