| TreeView with check boxes and radio buttons | |||||||||||||||||||||||||||
| Here's how to add check boxes and radio buttons to a TTreeView Delphi component. Give your applications a more professional and smoother look. | |||||||||||||||||||||||||||
Article originally written by Peter Thörnqvist. Sample application by Zarko Gajic
The TTreeView Delphi component (located on the "Win32" component palette tab) represents a window that displays a hierarchical list of items, such as the headings in a document, the entries in an index, or the files and directories on a disk.
The approach you are to discover in this article is a lot more flexible: you can have check boxes and radio buttons mixed with other nodes any way you like without changing the TTreeview or create a new class from it to make this work. Also, you decide yourself what images to use for the checkboxes / radiobuttons simply by adding the proper images to the StateImages imagelist.
![]() TreeNode with check box or radio buttonContrary to what you might believe, this is quite simple to accomplish in Delphi. Here are the steps to make it work:
To make your treeview even more professional, you should check where a node is clicked before toggling the stateimages: by only toggling the node when the actual image is clicked, your users can still select the node without changing its state. Additionally, if you don't want your users to expand / collapse the treeview, call the FullExpand procedure in the forms OnShow event and set AllowCollapse to false in the treeview's OnCollapsing event. Here's the implementation of the ToggleTreeViewCheckBoxes procedure:
As you can see from the code above, the procedure starts off by finding any checkbox nodes and just toggling them on or off. Next, if the node is an unchecked radiobutton, the procedure moves to the first node on the current level, sets all the nodes on that level to cRadioUnchecked (if they are cRadioUnChecked or cRadioChecked nodes) and finally toggles Node to cRadioChecked. Notice how any already checked radio buttons are ignored. Obviously, this is because an already checked radio button would be toggled to unchecked, leaving the nodes in an undefined state. Hardly what you would want most of the time. Here's how to make the code even more professional: in the OnClick event of the Treeview, write the following code to only toggle the checkboxes if the stateimage was clicked (the cFlatUnCheck,cFlatChecked etc constants are defined elsewhere as indexes into the StateImages image list):
The code gets the current mouse position, converts to treeview coordinates and checks if the StateIcon was clicked by calling the GetHitTestInfoAt function. If it was, the toggling procedure is called. Mostly, you would expect the spacebar to toggle check boxes or radio buttons, so here's how to write the TreeView OnKeyDown event using that standard:
Finally, here's how the form's OnShow and the Treeview's OnChanging events could look like if you wanted to prevent collapsing of the treeview's nodes:
Finally, to check whether a node is checked you simply do the following comparison (in a Button's OnClick event handler, for example):
This image below was taken from a test app using the code described in this article. As you can see, you can freely mix nodes having checkboxes or radiobuttons with those that have none, although you shouldn't mix "empty" nodes with "checkbox" nodes (take a look at the radio buttons in the image) as this makes it very hard to see what nodes are related. Download the sample aplication to explore the code.
|
|||||||||||||||||||||||||||


Although this type of coding cannot be regarded as mission critical, it can give your applications a more professional and smoother look. Also, by using the checkboxes and radiobuttons judiciously, they can make your application easier to use. They sure will look good!