Source code of Windows XP (NT5)
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.

64 lines
1.9 KiB

  1. //+--------------------------------------------------------------------------
  2. //
  3. // Microsoft Windows
  4. // Copyright (C) Microsoft Corporation, 1994 - 1998.
  5. //
  6. // File: lcidpick.h
  7. //
  8. // Contents: locale picker dialog (used to choose which of a set of
  9. // locales an app should be deployed in)
  10. //
  11. // Classes: CLcidPick
  12. //
  13. // History: 03-14-1998 stevebl Commented
  14. //
  15. //---------------------------------------------------------------------------
  16. #if !defined(AFX_LCIDPICK_H__0C66A5A0_9C1B_11D1_9852_00C04FB9603F__INCLUDED_)
  17. #define AFX_LCIDPICK_H__0C66A5A0_9C1B_11D1_9852_00C04FB9603F__INCLUDED_
  18. #if _MSC_VER >= 1000
  19. #pragma once
  20. #endif // _MSC_VER >= 1000
  21. /////////////////////////////////////////////////////////////////////////////
  22. // CLcidPick dialog
  23. class CLcidPick : public CDialog
  24. {
  25. // Construction
  26. public:
  27. CLcidPick(CWnd* pParent = NULL); // standard constructor
  28. // Dialog Data
  29. //{{AFX_DATA(CLcidPick)
  30. enum { IDD = IDD_LOCALE_PICKER };
  31. // NOTE: the ClassWizard will add data members here
  32. //}}AFX_DATA
  33. set<LCID> * m_psLocales;
  34. // Overrides
  35. // ClassWizard generated virtual function overrides
  36. //{{AFX_VIRTUAL(CLcidPick)
  37. protected:
  38. virtual void DoDataExchange(CDataExchange* pDX); // DDX/DDV support
  39. virtual LRESULT WindowProc(UINT message, WPARAM wParam, LPARAM lParam);
  40. //}}AFX_VIRTUAL
  41. // Implementation
  42. protected:
  43. // Generated message map functions
  44. //{{AFX_MSG(CLcidPick)
  45. afx_msg void OnRemove();
  46. virtual BOOL OnInitDialog();
  47. afx_msg void OnContextMenu(CWnd* pWnd, CPoint point);
  48. //}}AFX_MSG
  49. DECLARE_MESSAGE_MAP()
  50. };
  51. //{{AFX_INSERT_LOCATION}}
  52. // Microsoft Developer Studio will insert additional declarations immediately before the previous line.
  53. #endif // !defined(AFX_LCIDPICK_H__0C66A5A0_9C1B_11D1_9852_00C04FB9603F__INCLUDED_)