Click here to Skip to main content
Licence 
First Posted 3 Apr 2000
Views 68,738
Bookmarked 28 times

CListBox with disabled items

By | 14 Apr 2000 | Article
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

    About the Author

    Petr Novotny



    Czech Republic Czech Republic

    Member



    Sign Up to vote   Poor Excellent
    Add a reason or comment to your vote: x
    Votes of 3 or less require a comment

    Comments and Discussions

     
    You must Sign In to use this message board. (secure sign-in)
     
    Search this forum  
     FAQ
        Noise  Layout  Per page   
      Refresh
    QuestionPrevent selection in ListControl PinmemberAshwini Appajigowda17:29 25 Jul '07  
    Generalerror in my project Pinmembersteve sawyer15:29 16 Feb '02  
    GeneralRe: error in my project--never mind-- Pinmembersteve sawyer15:32 16 Feb '02  
    GeneralAdditional Information PinsussNeil1:39 12 Jul '00  

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

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

    Permalink | Advertise | Privacy | Mobile
    Web03 | 2.5.120517.1 | Last Updated 15 Apr 2000
    Article Copyright 2000 by Petr Novotny
    Everything else Copyright © CodeProject, 1999-2012
    Terms of Use
    Layout: fixed | fluid