Click here to Skip to main content
15,885,278 members
Articles / Desktop Programming / WTL

Nice Custom Controls Library

Rate me:
Please Sign up or sign in to vote.
3.77/5 (21 votes)
6 Aug 2007CPOL7 min read 162.1K   2.3K   73   26
Custom Controls Library offers you a set of different custom controls and API functions.

Introduction

Custom Controls Library offers you a set of different custom controls and API functions.

Nice Custom Controls

Features

  • MFC wrapper classes for MFC applications
  • WTL wrapper classes for WTL applications
  • Tooltips
  • Color Scheming (customizable text and background colors)
  • Notification masks
  • Custom drawing
  • Nice Theme API
  • Nice Graphics API

Individual Custom Controls Included in Custom Controls Library

Nice ComboBoxA combobox control is a composite control that contains a list of items from which the user can choose.
Nice Histogram controlA histogram is a control window that shows the statistical graph.
Nice Hot Key controlA Hot Key control is a window that enables the user to enter a combination of keystrokes to be used as a hot key.
Nice Hyperlink controlA hyperlink control displays text as a hyperlink (like the ones in web browsers).
Nice Lookup IP AddressA Lookup IP Address control is a composite control that allows you to browse, enter, view and edit an address in Internet Protocol (IP) address format.
Nice Infobar controlAn Infobar control is a control that allows you to display application specific information with text and images.
Nice IP Address controlAn IP Address control is a control that allows you to enter, view and edit an address in Internet Protocol (IP) address format.
Nice ListBox controlA Listbox is a control window that contains a list of items from which the user can choose.
Nice Outbar controlThe outbar control acts like a container for child windows as seen in a Microsoft® Outlook.
Nice Page controlThe Page control provides a convenient way to present information in multipage-page format.
Nice ScrollbarA scrollbar control is a control that allows you to translate the value of the bar to the viewable contents of the other components.
Nice SheetTab controlThe sheettab control provides the functionality to easily switch between different views in a frame window.
Nice Static controlA static control is a noneditable control that contains text or a graphic that identifies a control or provides additional information about the control.
Nice SwitchBar controlA Switchbar control is a control that allows you to switch between different sources.
Nice ToggleA toggle control is a control that maintains a selected state.
Nice Tooltip controlA ToolTip control is a small pop-up window that contains a text and image describing a tool.

Implementation Details

Custom Controls

All custom controls are written from scratch.

Using Custom Controls Library

Integrating with Your Project

To integrate a nice custom control library with your program, you must include cuctrl.h in your source files and link with the cuctrl.lib library.
For MFC application, you must include cuctrl.hpp in your source files and link with the nicefc.lib library.
For WTL application, just include atlnicectrls.h in your source files and link with the cuctrl.lib library.

Linking sample (Debug Unicode) for Visual Studio 2005:

Linking in VS2005

Linking sample (Debug Unicode) for Visual Studio 6:

Linking in VS6

Library Naming Conventions

The DLLs and libraries included in this distribution follow a structured naming convention. This makes it easier to know which DLL or library you should be using for which purpose.
The import libraries needed to build applications or extension DLLs that use these DLLs have the same base name as the DLL but have a .lib file name extension.

The DLL and library names have the following form:

CuCtrl[d|][u|].lib (dll)

where the letters are placeholders for specifiers whose meanings are shown in the following table:

Library/DLL NameBuildCharset
CuCtrlReleaseAnsi
CuCtrldDebugAnsi
CuCtrluReleaseUnicode
CuCtrlduDebugUnicode

Using Custom Controls

You can create a nice custom control by calling the CreateWindowEx function, specifying the appropriate WC_NICE* window class. This window class is registered when the custom controls Dynamic Link Library (DLL) is loaded. To ensure that the DLL is loaded, use the CuCtrl_InitControls function.
You can send messages to a nice custom control to affect the control's appearance and behavior. Each message has a corresponding macro that you can use instead of sending the message explicitly.

The following samples create switchbar custom control.

Win32 Application

The following function creates a switchbar control and adds buttons:

C++
HWND WINAPI CreateControl(HWND hWndParent, HINSTANCE hInst)
{
    SWBUTTON    swb;
    HWND        hWndSwb;
    
    hWndSwb = CreateWindow(
                WC_SWITCHBAR, "",
                WS_CHILD | WS_CLIPSIBLINGS | WS_VISIBLE |
                SWS_RIGHTNAVBUTTONS | SWS_LISTBUTTON | SWS_LISTDIALOG | SWS_TOOLTIPS, 
                0, 0, 120, 18, 
                hWndParent, NULL, hInst, NULL);


    if (hWndSwb == NULL)
        return NULL; 

    swb.uiMask = SWIF_TEXT | SWIF_IMAGE | SWIF_ID;
    swb.lpszText = TEXT("Item number 1");
    swb.iImage = 0;
    swb.uiId   = 1000;
    
    SwitchBar_AddButton(hWndSwb, &swb);


    swb.lpszText = TEXT("Item number 2");
    swb.iImage = 1;
    swb.uiId   = 1001;
    
    SwitchBar_AddButton(hWndSwb, &swb);

    return hWndSwb; 
}

Dialog Template

Another way is to create a switchbar custom control in a dialog template, in this case the Microsoft Visual Studio 6 used.

  1. Select the custom control tool from toolbox:

    MS Visual Studio Toolbox

  2. Drop it onto dialog:

    MS Visual Studio Dialog

  3. Edit properties:

    Caption text is not used by switchbar control.
    Set Class to "NiceSwitchBar32" so windows can create switchbar control.
    Fill Style and ExStyle with WS_*, SWS_* and WS_EX_* values as you need.

    MS Visual Studio Properties

  4. The resulting dialog with a switchbar control:

    Dialog with switchbar controls

Using API Functions Provided by Custom Controls Library

Custom Controls Library implements a set of API functions you can use. The following section describes some of the most useful functions.

  1. CuCtrl_InitControls

    Registers given custom control classes and ensures that cuctrl.dll is loaded.

  2. NiceGraphics_GetCharDimensions and NiceGraphics_GetCharsInWidth

    These are for calculating average char dimensions and number of characters that will fit within a given width.

Using Nice Theme API

With Nice Theme API, you can add visual styles to your application. Nice Theme resources located in *.ntr files (ntr - nice theme resource) or in *.njr files (njr - nice join theme resource). The .ntr and .njr files are regular DLLs, that contains the bitmaps and data for the nice theming engine. Nice theme engine adds join theme resource to the nice theme resource, so you can create your own theme resource for the existing nice theme resource.

Nice Theme API also provides functionality to register and unregister nice theme resource for common use and for specific application use.

Dialog with switchbar controls
  1. The following XML file contents describes listbox visual theme.
    XML
    <class name="listbox">
        <parts items="2">
            <part name="Common" index="0">
                <property name="BackgroundType" value="BorderFill" />
                <property name="FillColor" value="RGB(0, 254, 254)" />
                <property name="BorderColor" value="RGB(255, 171, 63)" />
                <property name="BorderSize" value="1" />
                <property name="MinSize" value="5, 5" />
    
                <themetext>
                    <property name="TextColor" value="RGB(0, 0, 0)" />
                </themetext>
    
                <states items="5">
                    <state name="Active" index="0">
                    </state>
                    <state name="ActiveHot" index="1">
                    </state>
                    <state name="Inactive" index="2">
                        <property name="FillColor" value="RGB(240, 240, 240)" />
                    </state>
                    <state name="InactiveHot" index="3">
                        <property name="FillColor" value="RGB(240, 240, 240)" />
                    </state>
                    <state name="Disabled" index="4">
                        <themetext>
                            <property name="TextColor" value="RGB(161, 161, 146)" />
                        </themetext>
                    </state>
                </states>
            </part>
    
            <part name="List" index="1">
                <property name="FillColor" value="RGB(255, 255, 255)" />
                <property name="BorderColor" value="RGB(0, 60, 116)" />
                <property name="BackgroundType" value="ContentFill" />
    
                <themetext>
                    <property name="TextColor" value="RGB(0, 0, 0)" />
                </themetext>
    
                <gradients items="4">
                    <gradient name="Selected" items="3" index="0">
                        <gradientitem index="0">
                            <property name="StartColor" value="RGB(224, 224, 191)" />
                            <property name="EndColor" value="RGB(212, 212, 43)" />
                            <property name="Ratio" value="45" />
                        </gradientitem>
                        <gradientitem index="1">
                            <property name="StartColor" value="RGB(212, 212, 43)" />
                            <property name="EndColor" value="RGB(212, 212, 43)" />
                            <property name="Ratio" value="10" />
                        </gradientitem>
                        <gradientitem index="2">
                            <property name="StartColor" value="RGB(212, 212, 43)" />
                            <property name="EndColor" value="RGB(248, 248, 8)" />
                            <property name="Ratio" value="45" />
                        </gradientitem>
                    </gradient>
                    <gradient name="Selected" items="2" index="1">
                        <gradientitem index="0">
                            <property name="StartColor" value="RGB(255, 254, 226)" />
                            <property name="EndColor" value="RGB(255, 223, 124)" />
                            <property name="Ratio" value="38" />
                        </gradientitem>
                        <gradientitem index="1">
                            <property name="StartColor" value="RGB(255, 214, 96)" />
                            <property name="EndColor" value="RGB(255, 234, 169)" />
                            <property name="Ratio" value="62" />
                        </gradientitem>
                    </gradient>
                    <gradient name="Selected" items="2" index="2">
                        <gradientitem index="0">
                            <property name="StartColor" value="RGB(255, 217, 170)" />
                            <property name="EndColor" value="RGB(255, 187, 110)" />
                            <property name="Ratio" value="40" />
                        </gradientitem>
                        <gradientitem index="1">
                            <property name="StartColor" value="RGB(255, 171, 63)" />
                            <property name="EndColor" value="RGB(254, 225, 122)" />
                            <property name="Ratio" value="60" />
                        </gradientitem>
                    </gradient>
                    <gradient name="SelectedInactive" items="2" index="3">
                        <gradientitem index="0">
                            <property name="StartColor" value="RGB(255, 254, 228)" />
                            <property name="EndColor" value="RGB(255, 232, 167)" />
                            <property name="Ratio" value="45" />
                        </gradientitem>
                        <gradientitem index="1">
                            <property name="StartColor" value="RGB(255, 215, 103)" />
                            <property name="EndColor" value="RGB(255, 230, 158)" />
                            <property name="Ratio" value="55" />
                        </gradientitem>
                    </gradient>
                </gradients>
    
                <states items="11">
                    <state name="Active" index="0">
                    </state>
                    <state name="ActiveHot" index="1">
                    </state>
                    <state name="Inactive" index="2">
                        <property name="FillColor" value="RGB(240, 240, 240)" />
                        <themetext>
                            <property name="TextColor" value="RGB(100, 100, 100)" />
                        </themetext>
                    </state>
                    <state name="InactiveHot" index="3">
                        <property name="FillColor" value="RGB(240, 240, 240)" />
                    </state>
                    <state name="Disabled" index="4">
                        <themetext>
                            <property name="TextColor" value="RGB(161, 161, 146)" />
                        </themetext>
                    </state>
                    <state name="Selected" index="5">
                        <renderitems items="2">
                            <renderitem type="gradient" index="0">
                                <property name="GradientIndex" value="2" />
                                <property name="GradientType" value="VerticalGradient"/>
                            </renderitem>
                            <renderitem type="fill" index="1">
                                <property name="BackgroundType" value="BorderFill" />
                                <property name="BorderColor" 
    				value="RGB(255, 171, 63)" />
                            </renderitem>
                        </renderitems>
                    </state>
                    <state name="SelectedInactive" index="6">
                        <themetext>
                            <property name="TextColor" value="RGB(100, 100, 100)" />
                        </themetext>
                    </state>
                    <state name="SelectedDisabled" index="7">
                        <property name="FillColor" value="RGB(97, 104, 139)" />
                        <themetext>
                            <property name="TextColor" value="RGB(243, 244, 248)" />
                        </themetext>
                    </state>
                    <state name="Visited" index="8">
                        <property name="BackgroundType" value="BackgroundFill" />
                        <property name="FillColor" value="RGB(255, 244, 215)" />
                    </state>
                    <state name="VisitedInactive" index="9">
                        <property name="FillColor" value="RGB(221, 221, 221)" />
                    </state>
                    <state name="VisitedDisabled" index="10">
                        <property name="FillColor" value="RGB(230, 230, 230)" />
                    </state>
                </states>
            </part>
        </parts> 
    </class>
  2. The following function draws a selected listbox item:
    C++
    void DrawThemedSelectedListItem(HNICETHEME hTheme, HDC hdc)
    {
        RECT    rcItem = { 10, 10, 150, 45 };
    
        NiceTheme_DrawBackground(
            hTheme, 
            hdc,
            LBXPT_LIST,
            LBXLST_SELECTED,
            &rcItem,
            NULL);
    }
  3. The result looks like this:

    ListBox Item with Visual Style

Using Color Schemes

All custom controls drawings based on build in color scheming. Every custom control state (active, inactive, disabled, ...) has its own colors for text and background. You can change scheme colors by using *_SETCOLORCHEME message or *_Set*ColorScheme macros.

  1. The following function changes InfoBar active state color scheme.
    C++
    void SetInfoBarColorScheme(HWND hWndIb)
    {
        NICECOLORSCHEME ncs;
    
        ncs.uiMask = CLRSCHF_TEXTCOLOR | CLRSCHF_BACKCOLOR;
        ncs.crText = RGB(255, 128, 255);
        ncs.crBack = RGB(0, 128, 192);
    
        NiceInfoBar_SetActiveColorScheme(hWndIb, &ncs);
    }
  2. An InfoBar with default(system) color scheme and custom color scheme:

    InfoBar with Color Schemes

Using Notification Masks

Notification mask enables or disables specified notification(s), so your application gets needed notifications only. You can change notification masks by using *_SETNOTIFYMASK message or *_SetNotifyMask* macros.

  1. The following function enables or disables custom drawing in PageCtrl (parent of the PageCtrl control receives the NCN_CUSTOMDRAW notification).
    C++
    void EnablePageCtrlCustomDrawing(HWND hWndPage, BOOL fEnable)
    {
        DWORD   dwNotify = fEnable ? PCNMF_CUSTOMDRAW : 0;
        PageCtl_SetNotifyMaskEx(hWndPage, dwNotify, PCNMF_CUSTOMDRAW);
    }
  2. A PageCtrl with disabled and with enabled custom draw notification:

    PageCtrl Custom Draw

Custom Controls Library Reference

For a detailed reference, see the documentation included in this distribution.

Latest Updates

Latest updates is available here[^].

Revision History

06.08.2007 - 1.1b1 New beta version

  • New controls
    • Histogram control
    • Hyperlink control
    • Outbar control
    • SheetTab control
  • New control features
    • ComboBox control
    • ListBox control
  • New Nice Theme features
    • Theme registration and loading
    • Application specific theme registration and loading
    • Theme file format changes
    • Documentation
  • Bug fixes

29.03.2007 - 1.01 Bug Fix, article update

  • Bug fix
    • In nice scrollbar (bin60\test.exe), Controls\Scrollbar... menu, click on the [>|] button, the scrollbar goes to the far right, then click on the [|<] button without hovering on the scrollbar, it isn't redrawn until you hover over it... (Thanks to Kochise).

28.03.2007 - 1.0 Initial public release

Feedback

If you have serious problems concerning running this software or if you discover any bugs, feel free to contact me.
My mail address is: Tarmo Kalda tka1969 'att' gmail 'dot' com.

License

Copyright (c) 2007 Tarmo Kalda.

This software is provided 'as-is', without any express or implied warranty. In no event
will the authors be held liable for any damages arising from the use of this software.

Permission is granted to anyone to use this software for any purpose, including commercial
applications, subject to the following restrictions:

  1. The origin of this software must not be misrepresented; you must not claim that you
    wrote the original software. If you use this software in a product, an acknowledgment
    (see the following) in the product documentation is recommended.
    Copyright (c) 2007 Tarmo Kalda.
  2. You may not use it for "Ad-Ware", "Spy-Ware", or "Mass-Emailing" (Spamming) Applications.
  3. You may not sell, rent or lease this software as a software product.
  4. Altered source versions must be plainly marked as such, and must not be
    misrepresented as being the original software.
  5. This notice may not be removed or altered from any source distribution.

License

This article, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)


Written By
Software Developer
Estonia Estonia
This member has not yet provided a Biography. Assume it's interesting and varied, and probably something to do with programming.

Comments and Discussions

 
GeneralMy vote of 1 Pin
Create an account dammit5-Oct-11 22:48
Create an account dammit5-Oct-11 22:48 
Generalversion 1.30 build 40318.01.a3 Pin
Tarmo Kalda20-Mar-09 23:29
Tarmo Kalda20-Mar-09 23:29 
GeneralProblems on compilation of CUCTRL32 Pin
fernandofre16-Mar-09 10:42
fernandofre16-Mar-09 10:42 
GeneralRe: Problems on compilation of CUCTRL32 Pin
Tarmo Kalda20-Mar-09 23:26
Tarmo Kalda20-Mar-09 23:26 
GeneralNew Version not found download Pin
symons651-Mar-09 3:43
symons651-Mar-09 3:43 
GeneralRe: New Version not found download Pin
Tarmo Kalda20-Mar-09 23:27
Tarmo Kalda20-Mar-09 23:27 
QuestionDemo app? Pin
T800G22-Sep-08 13:42
T800G22-Sep-08 13:42 
AnswerRe: Demo app? Pin
Tarmo Kalda23-Sep-08 22:18
Tarmo Kalda23-Sep-08 22:18 
GeneralRe: Demo app? Pin
soarf23-Mar-11 5:05
soarf23-Mar-11 5:05 
GeneralHelp for EditBox Pin
symons6525-Sep-07 5:25
symons6525-Sep-07 5:25 
GeneralAwesome! Pin
TimMadeThat19-Sep-07 7:22
TimMadeThat19-Sep-07 7:22 
GeneralToolTips Pin
jlundberg6-Sep-07 7:56
jlundberg6-Sep-07 7:56 
GeneralVery Good! Pin
symons656-Aug-07 21:57
symons656-Aug-07 21:57 
GeneralRe: Very Good! Pin
Tarmo Kalda7-Aug-07 3:06
Tarmo Kalda7-Aug-07 3:06 
GeneralINFO Pin
symons657-Jun-07 22:19
symons657-Jun-07 22:19 
GeneralRe: INFO Pin
Tarmo Kalda8-Jun-07 22:53
Tarmo Kalda8-Jun-07 22:53 
GeneralRe: INFO Pin
symons6519-Jul-07 22:04
symons6519-Jul-07 22:04 
QuestionAdd controls to page Pin
guy7310-Apr-07 23:12
guy7310-Apr-07 23:12 
AnswerRe: Add controls to page Pin
Tarmo Kalda11-Apr-07 10:53
Tarmo Kalda11-Apr-07 10:53 
GeneralGreat job Pin
Mingliang Zhu4-Apr-07 16:00
Mingliang Zhu4-Apr-07 16:00 
GeneralRe: Great job Pin
springrider17-Aug-07 17:15
springrider17-Aug-07 17:15 
QuestionNice Scrrolbar bug ? Pin
Kochise29-Mar-07 0:04
Kochise29-Mar-07 0:04 
AnswerRe: Nice Scrrolbar bug ? Pin
Tarmo Kalda29-Mar-07 7:42
Tarmo Kalda29-Mar-07 7:42 
GeneralNote too sure about © Pin
NormDroid28-Mar-07 23:13
professionalNormDroid28-Mar-07 23:13 
GeneralRe: Note too sure about &#169; Pin
jorgening8-Apr-07 13:57
jorgening8-Apr-07 13:57 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.