mirror of
https://github.com/microsoft/Microsoft-3D-Movie-Maker.git
synced 2024-11-14 15:35:06 +00:00
45 lines
961 B
C
45 lines
961 B
C
|
/* Copyright (c) Microsoft Corporation.
|
||
|
Licensed under the MIT License. */
|
||
|
|
||
|
/* Copyright (c) Microsoft Corporation.
|
||
|
Licensed under the MIT License. */
|
||
|
|
||
|
/***************************************************************************
|
||
|
|
||
|
Chunky editor main header file
|
||
|
|
||
|
***************************************************************************/
|
||
|
#ifndef CHED_H
|
||
|
#define CHED_H
|
||
|
|
||
|
#include "kidframe.h"
|
||
|
#include "chedres.h"
|
||
|
|
||
|
|
||
|
//creator type for the chunky editor
|
||
|
#define kctgChed 'CHED'
|
||
|
|
||
|
#include "chdoc.h"
|
||
|
|
||
|
#define APP_PAR APPB
|
||
|
#define kclsAPP 'APP'
|
||
|
class APP : public APP_PAR
|
||
|
{
|
||
|
RTCLASS_DEC
|
||
|
CMD_MAP_DEC(APP)
|
||
|
|
||
|
protected:
|
||
|
virtual bool _FInit(ulong grfapp, ulong grfgob, long ginDef);
|
||
|
virtual void _FastUpdate(PGOB pgob, PREGN pregnClip,
|
||
|
ulong grfapp = fappNil, PGPT pgpt = pvNil);
|
||
|
|
||
|
public:
|
||
|
virtual void GetStnAppName(PSTN pstn);
|
||
|
virtual void UpdateHwnd(HWND hwnd, RC *prc, ulong grfapp = fappNil);
|
||
|
|
||
|
virtual bool FCmdOpen(PCMD pcmd);
|
||
|
};
|
||
|
|
||
|
#endif //!CHED_H
|
||
|
|