forked from gopa810/gcal-cpp
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathDlgGetLocationEx.h
62 lines (52 loc) · 1.62 KB
/
DlgGetLocationEx.h
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
#include "Location.h" // Added by ClassView
#pragma once
/////////////////////////////////////////////////////////////////////////////
// DlgGetLocationEx dialog
class DlgGetLocationEx : public CDialog
{
// Construction
public:
BOOL ShowInGoogleMaps();
void OnImportList();
CMenu m_menu;
int InitCountries(const char * pszCurrentCountry = NULL);
int InitCitiesForCountry(int nCurrentCountry, const char * pszCurrentCity = NULL);
CLocation * m_lc;
DlgGetLocationEx(CWnd* pParent = NULL); // standard constructor
static int nCurrentCountry;
// Dialog Data
//{{AFX_DATA(DlgGetLocationEx)
enum { IDD = IDD_GET_LOCATION_EX };
CListBox m_cities;
CEdit m_edit;
CComboBox m_countries;
//}}AFX_DATA
// Overrides
// ClassWizard generated virtual function overrides
//{{AFX_VIRTUAL(DlgGetLocationEx)
protected:
virtual void DoDataExchange(CDataExchange* pDX); // DDX/DDV support
virtual BOOL OnCommand(WPARAM wParam, LPARAM lParam);
//}}AFX_VIRTUAL
// Implementation
protected:
// Generated message map functions
//{{AFX_MSG(DlgGetLocationEx)
virtual BOOL OnInitDialog();
afx_msg void OnCreateLocation();
afx_msg void OnEditLocation();
afx_msg void OnDeleteLocation();
afx_msg void OnChangeEdit1();
afx_msg void OnSelendokCombo1();
afx_msg void OnSelchangeList1();
afx_msg void OnSetCountryByCity();
afx_msg void OnAllCities();
afx_msg void OnResetList();
afx_msg void OnButton7();
afx_msg void OnSelchangeCombo1();
afx_msg void OnSelendcancelCombo1();
//}}AFX_MSG
DECLARE_MESSAGE_MAP()
};
//{{AFX_INSERT_LOCATION}}
// Microsoft Visual C++ will insert additional declarations immediately before the previous line.