LISTWIN.H
上传用户:bangxh
上传日期:2007-01-31
资源大小:42235k
文件大小:3k
源码类别:

Windows编程

开发平台:

Visual C++

  1. /*+==========================================================================
  2.   File:      LISTWIN.H
  3.   Summary:   Include file for the C++ object that encapsulates the
  4.              list box control that displays the page list.
  5.   Classes:   CListWin
  6.   Functions: none.
  7.   Origin:    5-25-97: atrent - Editor Inheritance from CMsgLog in
  8.              APPUTIL.H.
  9. ----------------------------------------------------------------------------
  10.   This file is part of the Microsoft COM Tutorial Code Samples.
  11.   Copyright (C) Microsoft Corporation, 1997.  All rights reserved.
  12.   This source code is intended only as a supplement to Microsoft
  13.   Development Tools and/or on-line documentation.  See these other
  14.   materials for detailed information regarding Microsoft code samples.
  15.   THIS CODE AND INFORMATION IS PROVIDED "AS IS" WITHOUT WARRANTY OF ANY
  16.   KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE
  17.   IMPLIED WARRANTIES OF MERCHANTABILITY AND/OR FITNESS FOR A
  18.   PARTICULAR PURPOSE.
  19. ==========================================================================+*/
  20. // Don't allow recursive includes of this file.
  21. #ifndef LISTWIN_H
  22. #define LISTWIN_H
  23. #define MAXLINE_SIZE 128
  24. #define MAX_SHOW_LINES 200
  25. // ListWin command IDs.
  26. #define IDC_LISTWIN 7000
  27. #ifdef __cplusplus
  28. /*C+C+++C+++C+++C+++C+++C+++C+++C+++C+++C+++C+++C+++C+++C+++C+++C+++C+++C+++C
  29.   Class:    CListWin
  30.   Summary:  Class for the PageList display Listbox window.
  31.   Methods:  CListWin
  32.               Constructor.
  33.             ~CListWin
  34.               Destructor.
  35.             BOOL Create(HINSTANCE hInst, HWND hWndParent, BOOL bSeparate);
  36.               Creates the CListWin List Box as a separate child window.
  37.             BOOL SetCurSel(INT iIndex);
  38.               Set current selection to specified list item. Zero-based.
  39.             BOOL GetCurSel(INT* piIndex);
  40.               Get the index (page number) of current listbox selection.
  41.             BOOL AddFmt(LPTSTR szFmt, ...);
  42.               Add a printf-style formatted string as new line in listbox.
  43.             BOOL InsertFmt(INT iIndex, LPTSTR szFmt, ...);
  44.               Insert a printf-style formatted line in the listbox.
  45.             BOOL Resize(INT nWidth, INT nHeight);
  46.               Resizes the ListWin listbox to a new width and height.
  47.             BOOL Clear(void);
  48.               Clears all display lines from the ListWin.
  49. C---C---C---C---C---C---C---C---C---C---C---C---C---C---C---C---C---C---C-C*/
  50. class CListWin
  51. {
  52. public:
  53.   // Constructor.
  54.   CListWin()
  55.   {
  56.     m_hInst = NULL;
  57.     m_hWnd = NULL;
  58.     m_bSeparate = FALSE;
  59.   };
  60.   ~CListWin()
  61.   {
  62.   };
  63.   BOOL Create(HINSTANCE hInst, HWND hWndParent, BOOL bSeparate);
  64.   BOOL SetCurSel(INT iIndex);
  65.   BOOL GetCurSel(INT* piIndex);
  66.   BOOL AddFmt(LPTSTR szFmt, ...);
  67.   BOOL InsertFmt(INT iIndex, LPTSTR szFmt, ...);
  68.   BOOL Resize(INT nWidth, INT nHeight);
  69.   BOOL Clear(void);
  70. private:
  71.   // Remember the App Instance Handle.
  72.   HINSTANCE m_hInst;
  73.   // Remember the handle of the listbox window.
  74.   HWND m_hWnd;
  75.   // Remember if CListWin was created as separate window.
  76.   BOOL m_bSeparate;
  77. };
  78. #endif //__cplusplus
  79. #endif //LISTWIN_H