📄 charbitmap.h
字号:
#ifndef _CHARBITMAP_H
#define _CHARBITMAP_H
#include <iostream>
using namespace std;
#include "tmatrix.h"
// class for black/white pixmaps
// rudimentary, but useful for illustrating concepts
class CharBitMap
{
public:
CharBitMap(int rows, int cols);
enum color{black,white};
void SetPixel (int row, int col, CharBitMap::color c);
color GetPixel(int row, int col) const; // return pixel value
void Display(ostream& out) const; // display grid
int Rows() const; // get dimensions: rows
int Cols() const; // get dimesnions: cols
private:
char ToChar(CharBitMap::color c) const; // for display
tmatrix<color> myGrid;
static char ULEFT, URIGHT,LLEFT,LRIGHT,VERT,HORIZ, ON, OFF;
};
#endif
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -