?? config.h.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 + -