?? td_texteditor.cpp
字號(hào):
#include <iostream>
#include <string>
using namespace std;
#include "TextEditor.h"
//int td_TextEditor()
int main()
{
string inFileName;
string outFileName;
cout<<"--------- Welcome TextEdit ----------"<<endl;
cout<<"Enter the name of the input file:";
getline(cin,inFileName);
outFileName = inFileName + ".txt";
cout<<"The Output File is "<<outFileName<<endl;
TextEditor textEditor(inFileName,outFileName);
textEditor.run();
return 0;
}
?? 快捷鍵說(shuō)明
復(fù)制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號(hào)
Ctrl + =
減小字號(hào)
Ctrl + -