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

📄 screen.h

📁 c语言写的VB编译器
💻 H
字号:
#ifndef __SCREEN.H__
#define __SCREEN.H__

#include "Const.h"
#include "Window.h"
#include "Menu.h"
#include "Type.h"

// Screen.cpp中的函数
void PrintMenu();
void PrintMessages();
void PrintChar(const int,const int,const char);
void SetColor(const int,const int);
void ShowSaved(const int);
void ShowScreen();
void ShowPosition();
void ShowInsert(const int);
void PrintText(const int);
void PrintLine(const int);
void PrePaint(const int, char *);
void SetCursor();

// 外部调用的函数
extern int LengthOf(const int);
extern void AboutCBasic();

// 外部引用的变量
extern int TextX;
extern int TextY;
extern int NowX;
extern int NowY;
extern int EndLine;

extern bool Saved;

extern bool ShowAbout;

extern bool Insert;

extern int RunLineNo;

#endif

⌨️ 快捷键说明

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