Click here to Skip to main content
15,881,027 members
Articles / Desktop Programming / MFC
Article

CListBox with disabled items

Rate me:
Please Sign up or sign in to vote.
3.88/5 (7 votes)
14 Apr 2000 87K   1.3K   30   7
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


    Written By
    Czech Republic Czech Republic
    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 4 Pin
    namezero11111110-Sep-12 8:19
    namezero11111110-Sep-12 8:19 
    QuestionPrevent selection in ListControl Pin
    Ashwini Appajigowda25-Jul-07 17:29
    Ashwini Appajigowda25-Jul-07 17:29 
    Generalerror in my project Pin
    stevesdata16-Feb-02 15:29
    stevesdata16-Feb-02 15:29 
    GeneralRe: error in my project--never mind-- Pin
    stevesdata16-Feb-02 15:32
    stevesdata16-Feb-02 15:32 
    GeneralAdditional Information Pin
    neil12-Jul-00 1:39
    neil12-Jul-00 1:39 
    GeneralRe: Additional Information Pin
    namezero11111110-Sep-12 8:19
    namezero11111110-Sep-12 8:19 
    GeneralRe: Additional Information Pin
    Chris Apple1-Oct-18 8:14
    Chris Apple1-Oct-18 8:14 

    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.