Leaked source code of windows server 2003
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 

59 lines
1.8 KiB

/******************************************************************************
Header File: Add Code Points.H
This defines the CAddCodePoints class, which uses passed lists to present a
list of code points and their associated code pages for selection. This
class should be usable for both the glyph map and font structure editors.
Copyright (c) 1997 by Microsoft Corporation. All Rights Reserved.
A Pretty Penny Enterprises Production
Change History:
03-01-1997 [email protected] Created it
******************************************************************************/
#include "Utility.H"
class CAddCodePoints : public CDialog {
CMapWordToDWord& m_cmw2dPoints;
CDWordArray& m_cdaPages;
CString m_csItem; // Name of the item being edited
CStringArray m_csaNames; // Names of the pages.
unsigned m_uTimer; // Timer ID
POSITION m_pos; // Position in input list
CString m_csHolder;
// Construction
public:
CAddCodePoints(CWnd* pParent, CMapWordToDWord& cmw2d, CDWordArray& cda,
CString csItemName);
// Dialog Data
//{{AFX_DATA(CAddCodePoints)
enum { IDD = IDD_AddCodePoints };
CProgressCtrl m_cpcBanner;
CListBox m_clbList;
//}}AFX_DATA
// Overrides
// ClassWizard generated virtual function overrides
//{{AFX_VIRTUAL(CAddCodePoints)
protected:
virtual void DoDataExchange(CDataExchange* pDX); // DDX/DDV support
//}}AFX_VIRTUAL
// Implementation
protected:
// Generated message map functions
//{{AFX_MSG(CAddCodePoints)
virtual BOOL OnInitDialog();
virtual void OnOK();
afx_msg void OnTimer(UINT nIDEvent);
//}}AFX_MSG
DECLARE_MESSAGE_MAP()
};