⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 desktop.h

📁 做为linux下图形用户界面支持系统之一的MicroWindows采用C++设计
💻 H
字号:
//
// Micro Windows Implementation
// desktop.h: The Desktop
//
// GUI 的桌面在前面幾個 base class 一路繼承下來, 已經顯得不需要
// 再添油加醋了, 不壞吧!
//
// $Revision: 1.2 $
// $Source: P:/MWINDOWS/INCLUDE/rcs/desktop.h $
// $Date: 1993/10/03 15:21:53 $
//

#ifndef __desktop_h
#define __desktop_h

#ifndef __multview_h
#   include "multview.h"
#endif

class Desktop : public MultiView
{
public:
    Desktop (Rect *prect);

    BOOL    quit (int errorlevel = 0);
    BOOL    isEmpty ();

protected:
    virtual void    selfDraw (Port *port, Rect *area);
};

#endif

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -