FS2_Open
Open source remastering of the Freespace 2 engine
textviewdlg.h
Go to the documentation of this file.
1 /*
2  * Copyright (C) Volition, Inc. 1999. All rights reserved.
3  *
4  * All source code herein is the property of Volition, Inc. You may not sell
5  * or otherwise commercially exploit the source or things you created based on the
6  * source.
7  *
8 */
9 
10 // TextViewDlg.h : header file
11 //
12 
13 
15 // text_view_dlg dialog
16 
17 class text_view_dlg : public CDialog
18 {
19 // Construction
20 public:
21  void set(int ship);
22  text_view_dlg(CWnd* pParent = NULL); // standard constructor
23 
24 // Dialog Data
25  //{{AFX_DATA(text_view_dlg)
26  enum { IDD = IDD_TEXT_VIEW };
27  CString m_edit;
28  //}}AFX_DATA
29 
30 
31 // Overrides
32  // ClassWizard generated virtual function overrides
33  //{{AFX_VIRTUAL(text_view_dlg)
34  protected:
35  virtual void DoDataExchange(CDataExchange* pDX); // DDX/DDV support
36  //}}AFX_VIRTUAL
37 
38 // Implementation
39 protected:
40 
41  // Generated message map functions
42  //{{AFX_MSG(text_view_dlg)
43  afx_msg void OnSetfocusEdit1();
44  //}}AFX_MSG
45  DECLARE_MESSAGE_MAP()
46 };
Definition: ship.h:534
void set(int ship)
Definition: textviewdlg.cpp:51
virtual void DoDataExchange(CDataExchange *pDX)
Definition: textviewdlg.cpp:34
afx_msg void OnSetfocusEdit1()
CString m_edit
Definition: textviewdlg.h:27
#define IDD_TEXT_VIEW
Definition: resource.h:69
text_view_dlg(CWnd *pParent=NULL)
Definition: textviewdlg.cpp:26