Click here to Skip to main content
65,938 articles
CodeProject is changing. Read more.
Articles
(untagged)

CListBox with disabled items

0.00/5 (No votes)
14 Apr 2000 2  
Listbox with disabled items.
  • Download source files - 2 Kb
  • Introduction

    From time to time, I have needed to have a listbox with fixed contents but with some of the items disabled. I have tried to locate such a class but never succeeded. Therefore I decided to create the class on my own.


    Class CExtendedListBox

    The source files of the class are available for download at the top of this article. To use the class, you simply #include "ExtendedListBox.h" and use CExtendedListBox instead of CListBox in your CDialog-derived class. (The class was not tested with Create() construction; it has been tested with DDX_Control() construction, and quite surely it will work fine with SubclassWindow().)

    The class behaviour is customizable by overriding the virtual method:

    virtual BOOL IsItemEnabled(UINT) const;
    

    This method takes the item number as argument (the code should explicitely check whether the argument is out-of-bounds) and returns TRUE/FALSE. The default implementation uses the least significant bit of item data for this logic. (It's easy to see that LSB is available for pointer data, since the pointers to structures are DWORD-aligned; for integer data, you can do data_to_store=(data<<1)|is_enabled and data=stored_data>>1 to store and restore the data for the element.) By overriding the method, you can alter the behaviour (and even make it selection-dependent!).

    The code works for all types of listbox selection.

    The code makes no attempt to disable the selection itself. It only draws the disabled item as disabled. It's up to the programmer to handle cases when disabled item is selected.

    Comments are welcome.


    License

    This article has no explicit license attached to it but may contain usage terms in the article text or the download files themselves. If in doubt please contact the author via the discussion board below.

    A list of licenses authors might use can be found here