📄 iowindow.cpp
字号:
/*-----------------------------------------------------------------------------
6502 Macroassembler and Simulator
Copyright (C) 1995-2003 Michal Kowalski
This program is free software; you can redistribute it and/or
modify it under the terms of the GNU General Public License
as published by the Free Software Foundation; either version 2
of the License, or (at your option) any later version.
This program is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU General Public License for more details.
You should have received a copy of the GNU General Public License
along with this program; if not, write to the Free Software
Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
-----------------------------------------------------------------------------*/
// IOWindow.cpp : implementation file
//
#include "stdafx.h"
#include "resource.h"
#include "IOWindow.h"
#include <memory.h>
#ifdef _DEBUG
#define new DEBUG_NEW
#undef THIS_FILE
static char THIS_FILE[] = __FILE__;
#endif
//-----------------------------------------------------------------------------
bool CIOWindow::m_bRegistered= FALSE;
bool CIOWindow::m_bHidden;
CString CIOWindow::m_strClass;
CFont CIOWindow::m_Font;
LOGFONT CIOWindow::m_LogFont=
{
13, // LONG lfHeight;
0, // LONG lfWidth;
0, // LONG lfEscapement;
0, // LONG lfOrientation;
0, // LONG lfWeight;
0, // BYTE lfItalic;
0, // BYTE lfUnderline;
0, // BYTE lfStrikeOut;
0, // BYTE lfCharSet;
0, // BYTE lfOutPrecision;
0, // BYTE lfClipPrecision;
0, // BYTE lfQuality;
FIXED_PITCH, // BYTE lfPitchAndFamily;
"Courier" // CHAR lfFaceName[LF_FACESIZE];
};
CPoint CIOWindow::m_WndPos= CPoint(0,0); // po硂縠nie okna
int CIOWindow::m_nInitW= 40;
int CIOWindow::m_nInitH= 25;
COLORREF CIOWindow::m_rgbTextColor= RGB(0,0,0);
COLORREF CIOWindow::m_rgbBackgndColor= RGB(255,255,255);
//-----------------------------------------------------------------------------
// Rejestracja klasy okien
void CIOWindow::RegisterWndClass()
{
ASSERT(!m_bRegistered);
if (m_bRegistered)
return;
m_strClass = AfxRegisterWndClass(0/*CS_VREDRAW|CS_HREDRAW|CS_DBLCLKS*/,
::LoadCursor(NULL,IDC_ARROW), 0, AfxGetApp()->LoadIcon(IDI_IO_WINDOW));
m_bRegistered = TRUE;
}
/////////////////////////////////////////////////////////////////////////////
// CIOWindow
IMPLEMENT_DYNCREATE(CIOWindow, CMiniFrameWnd)
CIOWindow::CIOWindow()
{
m_hWnd = 0;
m_pData = NULL;
m_nWidth = m_nHeight = 0;
m_nPosX = m_nPosY = 0; // po硂縠nie znaku do wypisania (i kursora)
m_nCursorCount = 0; // licznik ukry
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -