?? code.h
字號:
#pragma once
#include "stdafx.h"
/*
* Class CCode - Class for the entire source listing
*/
class CCode
{
private:
// Full source listing
codelinelist_t *m_Code;
// Iterator to current line of code
codelinelist_t::iterator m_CodeIterator;
// Current line number
int m_LineNumber;
public:
CCode(void);
~CCode(void);
// Add a line of code to the listing
void Add(CCodeLine * CodeLine);
// Find a line of code by line number
CCodeLine * Find(unsigned int LineNumber);
// Get the next code line
CCodeLine * GetNext(void);
// Get the current line number
int GetCurrentLineNumber(void);
// Reset the code iterator
void Reset(void);
};
?? 快捷鍵說明
復制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號
Ctrl + =
減小字號
Ctrl + -