⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 configstore.html

📁 一个小巧的嵌入式图形系统wGUI, 可以用VC编译
💻 HTML
字号:
<html><head>	<title>wGui - Global Configuration</title></head><body>	<h1>wGui - Global Configuration</h1>	<p>wGui has a global configuration that it read from file.</p>	<h2>CConfigStore File Structure</h2>	<p>The CConfigStore class can read key-value pairs from a text file.  The files are formatted with the following rules:<br />	<ul>		<li>Comment lines begin have a hash (#) mark as their first character.  These lines are ignored when the file is read in.</li>		<li>Key-value pairs appear as: &lt; keyname &gt; = &lt; valuename &gt;</li>		<li>Whitespace (space and tab characters) appearing at the beginning and end of both the key and the value are trimmed off.</li>		<li>Keys can be any combination of alphanumeric letters (including spaces as long as they aren't the first or last character).</li>		<li>Keys are case sensitive.</li>		<li>Values can be any combination of alphanumeric letters (including spaces as long as they aren't the first or last character).</li>	</ul>	</p>	<h2>wGui.conf File</h2>	<p>In the CApplication::Init() method, wGui will attempt to locate and read the wGui.conf file from a couple locations.  These are	loaded in order into the wGui global configuration.  If a key exists in more than one of these files, the last file read in will ovewrite the	value loaded from the previous files.  Therefore any settings that appear in the current directory's wGui.conf file will override any settings in	the global wGui.conf file.<br />	File load order (wGui will search for wGui.conf in these locations):	<ul>		<li>The global settings directory (/etc/wgui on *nix based machines, c:\program files\common files\wgui on Win32)</li>		<li>The user settings directory (/home/ &lt; username &gt;/.wgui on *nix, c:\documents and settings\ &lt; username &gt; \application data\wgui on Win32)</li>		<li>The current directory</li>	</ul>	</p>	<h2>Global Configuration Values</h2>	<p><ul>		<li>DEFAULTFONT - The default font filename</li>		<li>DEFAULTFONTSIZE - The default font size (in points)</li>		<li>FONTPATH - The path to any font directories (which wGui will use to find fonts if it isn't given an explicit path)</li>	</ul></p></body></html>

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -