tvguid01.cpp
来自「borland c++3.1的压缩文件」· C++ 代码 · 共 41 行
CPP
41 行
/*---------------------------------------------------------*/
/* */
/* Turbo Vision 1.0 */
/* TVGUID01 Demo Source File */
/* Copyright (c) 1991 by Borland International */
/* */
/*---------------------------------------------------------*/
#define Uses_TApplication
#include <tv.h>
// tv.h will pull in the headers needed for TApplication and its
// base classes. Add a #define Uses_Txxx statement (before the
// #include <tv.h> line) for each Turbo Vision class used in
// your program. Explicit or implied duplications are harmless:
// for example, #define Uses_TProgram would be redundant here,
// but harmless.
class TMyApp : public TApplication
{
public:
TMyApp();
};
TMyApp::TMyApp() :
TProgInit( &TMyApp::initStatusLine,
&TMyApp::initMenuBar,
&TMyApp::initDeskTop
)
{
}
int main()
{
TMyApp myApp;
myApp.run();
return 0;
}
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?