model.cpp
来自「做为linux下图形用户界面支持系统之一的MicroWindows采用C++设计」· C++ 代码 · 共 45 行
CPP
45 行
//
// Micro Windows Implementation
// model.cpp
//
// $Revision: 1.1 $
// $Source: P:/MWINDOWS/LIB/rcs/model.cpp $
// $Date: 1993/10/03 03:45:15 $
//
#include "model.h"
BOOL Model::close (View *from)
{
return (TRUE);
}
void Model::draw (View *from, Port *port, Rect *area)
{
}
void Model::leftButtonDown (View *from, Point *pnt)
{
}
void Model::leftButtonUp (View *from, Point *pnt)
{
}
void Model::mouseMove (View *from, Point *pnt)
{
}
void Model::keyCharIn (View *from, BYTE c)
{
}
void Model::fromView (View *from)
{
}
void Model::fromController (View *from, Controller *ctrl)
{
}
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?