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

📄 config.h.svn-base

📁 wince c++ 下 开发的 rss 阅读器源代码
💻 SVN-BASE
字号:
/**
 *  Config.h : interface for the CConfig class.
 *
 *  Copyright (C) 2008  David Andrs <pda@jasnapaka.com>
 *
 *  This program is free software: you can redistribute it and/or modify
 *  it under the terms of the GNU General Public License as published by
 *  the Free Software Foundation, either version 2 of the License, or
 *  (at your option) any later version.
 *
 *  This program is distributed in the hope that it will be useful,
 *  but WITHOUT ANY WARRANTY; without even the implied warranty of
 *  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 *  GNU General Public License for more details.
 *
 *  You should have received a copy of the GNU General Public License
 *  along with this program.  If not, see <http://www.gnu.org/licenses/>.
 *
 */

#if !defined(_CONFIG_H_)
#define _CONFIG_H_

#if _MSC_VER > 1000
#pragma once
#endif // _MSC_VER > 1000

#define MODE_BRIEF								0
#define MODE_CYCLING							1

#define CYCLING_SUBMODE_SITES					0
#define CYCLING_SUBMODE_FEED_ITEMS				1

// default values
#define CONFIG_DEFAULT_SHOWNEWCHANNELS			TRUE
#define CONFIG_DEFAULT_MODE						MODE_BRIEF

#define CONFIG_DEFAULT_VOFFSET					4
#define CONFIG_DEFAULT_HIDE_PLUGIN				FALSE
#define CONFIG_DEFAULT_FONT_SIZE				9
#define CONFIG_DEFAULT_DISPLAY_ICON				TRUE

// minimal synchronization interval in minutes
//#define CONFIG_DEFAULT_MINIMALSYNCINTERVAL		0

//#define CONFIG_DEFAULT_SHOW_UNREAD_COUNT		TRUE
#define CONFIG_DEFAULT_CYCLING_SUBMODE			CYCLING_SUBMODE_SITES
#define CONFIG_DEFAULT_SHOW_SITE_NAME			TRUE
#define CONFIG_DEFAULT_SHOW_DATE_TIME			TRUE
#define CONFIG_DEFAULT_SHOW_ONLY_NEW			TRUE
#define CONFIG_DEFAULT_CYCLING_SPEED			3

//#define CONFIG_DEFAULT_SKIP_NONEWS_SITES	FALSE
//#define CONFIG_DEFAULT_CYCLE_TITLES			FALSE
//#define CONFIG_DEFAULT_CYCLE_FEEDS			TRUE

//#define CONFIG_DEFAULT_STARTUP_DELAY			0


#ifdef LOGGING
#define CONFIG_DEFAULT_LOGFILE						_T("\\prssr-today.log")
#define CONFIG_DEFAULT_LOGLEVEL						0
#endif


/////////////////////////////////////////////////////////////////////////////////////////

class CConfig {
public:
	CConfig();
	virtual ~CConfig();

	void Load();
	void Save();

	void LoadSharedConfig();

#ifdef LOGGING
	CString LogFile;
	DWORD LogLevel;
#endif

	// general
	BOOL ShowNewChannels;
	int Mode;
	int VOffset;
	BOOL DisplayIcon;
	BOOL HidePlugin;

	// apperance
	int FontSize;

	// cycling mode
	int CyclingSubMode;
	BOOL ShowSiteName;
	int CyclingSpeed;
	BOOL ShowOnlyNew;
	BOOL ShowDateTime;

	// read-only (global for the whole application)
//	DWORD StartupDelay;
	CString InstallDir;
	CString CacheLocation;

	BOOL ShowRelativeDates;
	CString DateFormat;
	BOOL GMTTimes;
};

extern CConfig Config;

#endif // !defined(_CONFIG_H_)

⌨️ 快捷键说明

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