AppleWin/source/Frame.h

62 lines
1.5 KiB
C
Raw Normal View History

2006-02-25 20:50:29 +00:00
#pragma once
2010-12-18 20:55:55 +00:00
// 1.19.0.0 Hard Disk Status/Indicator Light
#define HD_LED 1
// Keyboard -- keystroke type
enum {NOT_ASCII=0, ASCII};
2006-02-25 20:50:29 +00:00
// 3D Border
2009-02-17 02:12:39 +00:00
#define VIEWPORTX 5
#define VIEWPORTY 5
2009-02-17 02:12:39 +00:00
// 560 = Double Hi-Res
// 384 = Doule Scan Line
#define FRAMEBUFFER_W 560
#define FRAMEBUFFER_H 384
2008-08-31 04:31:35 +00:00
2009-02-16 19:11:57 +00:00
// Direct Draw -- For Full Screen
2009-02-17 02:12:39 +00:00
extern LPDIRECTDRAW g_pDD;
extern LPDIRECTDRAWSURFACE g_pDDPrimarySurface;
extern IDirectDrawPalette* g_pDDPal;
2009-02-16 19:11:57 +00:00
2006-07-02 09:56:50 +00:00
// Win32
2009-02-17 02:12:39 +00:00
extern HWND g_hFrameWindow;
extern BOOL g_bIsFullScreen;
extern BOOL g_bConfirmReboot; // saved PageConfig REGSAVE
extern BOOL g_bMultiMon;
2009-02-17 02:12:39 +00:00
// Emulator
extern bool g_bFreshReset;
extern std::string PathFilename[2];
2009-02-17 02:12:39 +00:00
extern bool g_bScrollLock_FullSpeed;
extern int g_nCharsetType;
// Prototypes
void CtrlReset();
void FrameCreateWindow(void);
2009-02-17 02:12:39 +00:00
HDC FrameGetDC ();
HDC FrameGetVideoDC (LPBYTE *,LONG *);
void FrameRefreshStatus (int, bool bUpdateDiskStatus = true );
2009-02-17 02:12:39 +00:00
void FrameRegisterClass ();
void FrameReleaseDC ();
void FrameReleaseVideoDC ();
void FrameSetCursorPosByMousePos();
int GetViewportScale(void);
int SetViewportScale(int nNewScale);
void GetViewportCXCY(int& nViewportCX, int& nViewportCY);
bool GetFullScreen32Bit(void);
void SetFullScreen32Bit(bool b32Bit);
void FrameUpdateApple2Type(void);
2009-02-17 02:12:39 +00:00
void FrameDrawDiskLEDS( HDC hdc );
void FrameDrawDiskStatus( HDC hdc );
2014-07-22 01:21:31 +00:00
2009-02-17 02:12:39 +00:00
LRESULT CALLBACK FrameWndProc (
HWND window,
UINT message,
WPARAM wparam,
LPARAM lparam );