forked from valve/halflife-sdk
37 lines
No EOL
664 B
C++
37 lines
No EOL
664 B
C++
/***
|
|
*
|
|
* WastedFX Tool chain
|
|
*
|
|
* Author: Joshua Coyne
|
|
* Copyright (C) 2003 The Wastes Project, All Rights Reserved.
|
|
*
|
|
***/
|
|
#if !defined( __MAINWINDOW_H_ )
|
|
#define __MAINWINDOW_H_
|
|
|
|
// Main background window
|
|
class CMainWindow : public CWindow
|
|
{
|
|
public:
|
|
CMainWindow( char *pszClassname, HINSTANCE hInstance );
|
|
~CMainWindow();
|
|
|
|
virtual void Update();
|
|
|
|
void OnFileNew();
|
|
void OnFileOpen();
|
|
void OnFileSave();
|
|
void OnFileSaveas();
|
|
void OnFileQuit();
|
|
void OnEditCut();
|
|
void OnEditCopy();
|
|
void OnEditPaste();
|
|
void OnEditOptions();
|
|
void OnPreviewEmitter();
|
|
void OnPreviewMap();
|
|
void OnPreviewModel();
|
|
void OnHelpOnlineHelp();
|
|
void OnHelpAbout();
|
|
};
|
|
|
|
#endif |