📄 itemkey.cpp
字号:
// ItemKey.cpp: implementation of the ItemKey class.
//
//////////////////////////////////////////////////////////////////////
#include "stdafx.h"
#include "ItemKey.h"
//////////////////////////////////////////////////////////////////////
// Construction/Destruction
//////////////////////////////////////////////////////////////////////
char* ItemKey::TRACK_FOLDER = "FileInfo/";
char* ItemKey::INI_FOLDER = "Config/"; // 配置文件的文件夹
char* ItemKey::RES_FOLDER = "Res/"; // 图片资源文件夹
char* ItemKey::MAP_PATH = "Data/NavInfo.sxw";
char* ItemKey::CONTROL_RECT = "rect"; // 控件位置
char* ItemKey::CONTROL_TEXT = "text"; // 控件文本
char* ItemKey::CONTROL_TYPE = "type"; // 控件类型
char* ItemKey::CONTROL_BGCOLOR = "bgcolor"; // 控件背景颜色
char* ItemKey::CONTROL_FOCCOLOR = "foccolor"; // 控件获得焦点后的颜色
char* ItemKey::CONTROL_FORCOLOR = "forcolor"; // 控件字体颜色
char* ItemKey::CONTROL_IMG_NUM = "img_num"; // 控件背景图片信息
char* ItemKey::CONTROL_IMGSRC = "img_src"; // 控件背景图片路径
char* ItemKey::CONTROL_ISSHOW = "isshow"; // 控件是否显示
char* ItemKey::CONTROL_BOLD = "isbold"; // 字体是否粗体
char* ItemKey::CONFIG_TITLE = "Title"; // 程序标题
char* ItemKey::CONFIG_LOGPATH = "LogPath"; // LOG文件路径
char* ItemKey::CONFIG_LOGLEVEL = "LogLevel"; // LOG显示等级
char* ItemKey::CONFIG_MAIN_RECT = "MainRECT"; // 程序位置
char* ItemKey::CONFIG_FORM_BGCOLOR = "FormBgColor"; // 窗体背景颜色
char* ItemKey::CONFIG_ISDEVELOP = "IsDevelop"; // 是否是开发版
int ItemKey::RECORDERS_COUNT = 5; // 滚动列表中每页的记录条数
char* ItemKey::EXTEND_TRACK = "*.tra"; // 记录航迹文件的文件扩展名
ItemKey::ItemKey()
{
}
ItemKey::~ItemKey()
{
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -