mirror of
https://github.com/AppleWin/AppleWin.git
synced 2025-01-18 21:31:02 +00:00
d0cd7ca090
* WinVideo: move some generic functions back to Video. Introduce a new virtual function (VideoPresentScreen) to draw the video buffer to video memory. * Move Win32Frame::VideoRedrawScreen() to FrameBase as it is generic.
21 lines
682 B
C++
21 lines
682 B
C++
#pragma once
|
|
|
|
#include "FrameBase.h"
|
|
|
|
class Win32Frame : public FrameBase
|
|
{
|
|
public:
|
|
virtual void FrameDrawDiskLEDS(HDC hdc);
|
|
virtual void FrameDrawDiskStatus(HDC hdc);
|
|
virtual void FrameRefreshStatus(int, bool bUpdateDiskStatus = true);
|
|
virtual void FrameUpdateApple2Type();
|
|
virtual void FrameSetCursorPosByMousePos();
|
|
|
|
virtual void SetFullScreenShowSubunitStatus(bool bShow);
|
|
virtual bool GetBestDisplayResolutionForFullScreen(UINT& bestWidth, UINT& bestHeight, UINT userSpecifiedHeight = 0);
|
|
virtual int SetViewportScale(int nNewScale, bool bForce = false);
|
|
virtual void SetAltEnterToggleFullScreen(bool mode);
|
|
|
|
virtual void SetLoadedSaveStateFlag(const bool bFlag);
|
|
};
|