File: mainfrm.h

package info (click to toggle)
freespace2 3.7.4%2Brepack-1.1
  • links: PTS, VCS
  • area: non-free
  • in suites: bullseye
  • size: 22,268 kB
  • sloc: cpp: 393,535; ansic: 4,106; makefile: 1,091; xml: 181; sh: 137
file content (97 lines) | stat: -rw-r--r-- 2,427 bytes parent folder | download | duplicates (3)
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
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
/*
 * Copyright (C) Volition, Inc. 1999.  All rights reserved.
 *
 * All source code herein is the property of Volition, Inc. You may not sell 
 * or otherwise commercially exploit the source or things you created based on the 
 * source.
 *
*/



//class CShipEditorDlg;

#define	WM_MENU_POPUP_TEST	(WM_USER+9)

class color_combo_box : public CComboBox
{
	void	DrawItem(LPDRAWITEMSTRUCT lpDrawItemStruct);
	int	CalcMinimumItemHeight();
	void	MeasureItem(LPMEASUREITEMSTRUCT);

public :	
	int SetCurSelNEW(int model_index);
	int GetCurSelNEW();
};

class CMainFrame : public CFrameWnd
{
private:
protected: // create from serialization only
	CMainFrame();
	DECLARE_DYNCREATE(CMainFrame)

// Attributes
public:
	void init_tools();

// Operations
public:

// Overrides
	// ClassWizard generated virtual function overrides
	//{{AFX_VIRTUAL(CMainFrame)
	virtual BOOL PreCreateWindow(CREATESTRUCT& cs);
	//}}AFX_VIRTUAL

// Implementation
public:
	virtual ~CMainFrame();
	CToolBar    m_wndToolBar;
	CStatusBar  m_wndStatusBar;

#ifdef _DEBUG
	virtual void AssertValid() const;
	virtual void Dump(CDumpContext& dc) const;
#endif

protected:  // control bar embedded members

// Generated message map functions
protected:
	//{{AFX_MSG(CMainFrame)
	afx_msg int OnCreate(LPCREATESTRUCT lpCreateStruct);
	afx_msg void OnEditorsAiClasses();
	afx_msg void OnEditorsGoals();
	afx_msg void OnEditorsArt();
	afx_msg void OnEditorsMusic();
	afx_msg void OnEditorsShipClasses();
	afx_msg void OnEditorsSound();
	afx_msg void OnEditorsTerrain();
	afx_msg void OnFileMissionnotes();
	afx_msg void OnLButtonUp(UINT nFlags, CPoint point);
	afx_msg void OnDestroy();
	afx_msg void OnViewStatusBar();
	afx_msg void OnUpdateViewStatusBar(CCmdUI* pCmdUI);
	afx_msg void OnUpdateLeft( CCmdUI* pCmdUI);
	afx_msg void OnUpdateRight( CCmdUI* pCmdUI);
	afx_msg void OnMikeGridcontrol();
	afx_msg void OnMenuPopupToggle1();
	afx_msg void OnUpdateMenuPopupToggle1(CCmdUI* pCmdUI);
	afx_msg void OnRButtonDown(UINT nFlags, CPoint point);
	afx_msg void OnHelpInputInterface();
	afx_msg void OnClose();
	afx_msg void OnInitMenu(CMenu* pMenu);
	afx_msg void OnFredHelp();
	//}}AFX_MSG

	afx_msg void OnNewShipTypeChange();
	LONG OnMenuPopupTest(UINT wParam, LONG lParam);

	DECLARE_MESSAGE_MAP()
};

/////////////////////////////////////////////////////////////////////////////

extern CMainFrame *Fred_main_wnd;
extern color_combo_box	m_new_ship_type_combo_box;