- /*
- * listbox.h
- *
- * List box control.
- *
- * Portable Windows Library
- *
- * Copyright (c) 1993-1998 Equivalence Pty. Ltd.
- *
- * The contents of this file are subject to the Mozilla Public License
- * Version 1.0 (the "License"); you may not use this file except in
- * compliance with the License. You may obtain a copy of the License at
- * http://www.mozilla.org/MPL/
- *
- * Software distributed under the License is distributed on an "AS IS"
- * basis, WITHOUT WARRANTY OF ANY KIND, either express or implied. See
- * the License for the specific language governing rights and limitations
- * under the License.
- *
- * The Original Code is Portable Windows Library.
- *
- * The Initial Developer of the Original Code is Equivalence Pty. Ltd.
- *
- * Portions are Copyright (C) 1993 Free Software Foundation, Inc.
- * All Rights Reserved.
- *
- * Contributor(s): ______________________________________.
- *
- * $Log: listbox.h,v $
- * Revision 1.13 2000/04/13 23:18:42 robertj
- * Fixed problems with sizing controls with scroll bars.
- *
- * Revision 1.12 1999/11/16 06:51:41 robertj
- * Created PCustomListBox to allow motif native code PStringListBox implementation
- *
- * Revision 1.11 1998/11/30 03:00:04 robertj
- * New directory structure
- *
- * Revision 1.10 1998/09/24 03:40:35 robertj
- * Added open software license.
- *
- * Revision 1.9 1998/09/21 13:30:53 robertj
- * Changes to support new PListView class. Different call back method.
- *
- * Revision 1.8 1998/09/14 13:02:31 robertj
- * Fixed memory leak on delete of PStringList, not deleting all its contents.
- *
- * Revision 1.7 1996/08/08 10:09:59 robertj
- * Directory structure changes for common files.
- *
- * Revision 1.6 1995/11/09 12:25:49 robertj
- * Moved window style bits to member variable.
- *
- * Revision 1.5 1995/04/02 09:27:48 robertj
- * Added "balloon" help.
- *
- * Revision 1.4 1994/10/23 05:46:56 robertj
- * Changed window messaging technique.
- *
- * Revision 1.3 1994/07/17 10:46:06 robertj
- * Enhancements, bug fixes etc.
- *
- * Revision 1.2 1994/06/25 11:55:15 robertj
- * Unix version synchronisation.
- *
- * Revision 1.1 1994/04/12 08:21:52 robertj
- * Initial revision
- *
- */
- #ifndef _PLISTBOX
- ///////////////////////////////////////////////////////////////////////////////
- // PListBox
- #include "../../listbox.h"
- protected:
- // Overrides from class PInteractor
- virtual void CreateHWND();
- // Create the MS-Windows handle for the interactor.
- // Overrides from class PInteractor
- virtual int TranslateOption(NMHDR & msg) const;
- // Translate the windows notification message code to the PWLib
- // notify function code. This returns -1 if the windows message is to be
- // ignored.
- virtual void GetCreateWinInfo(WNDCLASS & wndClass);
- // Return the info required by CreateWindow() and RegisterClass().
- virtual void WndProc();
- // Event handler for this interactor. Translates MS-Windows messages into
- // virtual member function calls.
- virtual BOOL AdjustDimensionForScrollBar(UINT bar) const;
- // Determine if the client window dimensions must allow for a scroll bar.
- friend BOOL PInteractor::HandleDeleteItem(const DELETEITEMSTRUCT FAR *);
- };
- #endif