]> icculus.org git repositories - taylor/freespace2.git/blob - include/textviewdlg.h
fix issue with looping audio streams
[taylor/freespace2.git] / include / textviewdlg.h
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
6  * the source.
7  */
8
9 // TextViewDlg.h : header file
10 //
11
12 /////////////////////////////////////////////////////////////////////////////
13 // text_view_dlg dialog
14
15 class text_view_dlg : public CDialog
16 {
17 // Construction
18 public:
19         void set(int ship);
20         text_view_dlg(CWnd* pParent = NULL);   // standard constructor
21
22 // Dialog Data
23         //{{AFX_DATA(text_view_dlg)
24         enum { IDD = IDD_TEXT_VIEW };
25         CString m_edit;
26         //}}AFX_DATA
27
28
29 // Overrides
30         // ClassWizard generated virtual function overrides
31         //{{AFX_VIRTUAL(text_view_dlg)
32         protected:
33         virtual void DoDataExchange(CDataExchange* pDX);    // DDX/DDV support
34         //}}AFX_VIRTUAL
35
36 // Implementation
37 protected:
38
39         // Generated message map functions
40         //{{AFX_MSG(text_view_dlg)
41         afx_msg void OnSetfocusEdit1();
42         //}}AFX_MSG
43         DECLARE_MESSAGE_MAP()
44 };
45