Added LocationDelimiter config file token

This commit is contained in:
Ianos Gnatiuc
2005-10-12 22:11:35 +00:00
parent a31b8b396b
commit 23fa1b6a0d
10 changed files with 24 additions and 1 deletions

View File

@@ -739,6 +739,7 @@ CfgGed::CfgGed() {
internetviagate = false;
keybmode = KEYB_POLL;
logformat = 0;
locationdelimiter = " \x1A ";
menumarked = MODE_DONT;
menunextarea = YES;
msglistdate = MSGLISTDATE_WRITTEN;

View File

@@ -240,6 +240,7 @@ const word CRC_KLUDGE = 0xA600;
const word CRC_KLUDGECHRS = 0x0EEF;
const word CRC_LOADLANGUAGE = 0x9F1B;
const word CRC_LOCATIONALIAS = 0x1B5F;
const word CRC_LOCATIONDELIMITER= 0x5083;
const word CRC_LOGFILE = 0x8ACE;
const word CRC_LOGFORMAT = 0x9E51;
const word CRC_LOGLEVEL = 0xCF59;

View File

@@ -412,6 +412,7 @@ SwitchL:
switch(crc) {
case CRC_LOADLANGUAGE : CfgLoadlanguage (); break;
case CRC_LOCATIONALIAS : CfgLocationalias (); break;
case CRC_LOCATIONDELIMITER: CfgLocationdelimiter(); break;
case CRC_LOGFILE : CfgLogfile (); break;
case CRC_LOGFORMAT : CfgLogformat (); break;
default : found = false;

View File

@@ -331,6 +331,14 @@ void CfgLocationalias()
// ------------------------------------------------------------------
void CfgLocationdelimiter()
{
StripQuotes(val);
CFG->locationdelimiter = val;
}
// ------------------------------------------------------------------
void CfgLogfile() {
strcpy(CFG->logfile, val);

View File

@@ -230,6 +230,7 @@ void CfgKludge ();
void CfgKludgechrs ();
void CfgLoadlanguage ();
void CfgLocationalias ();
void CfgLocationdelimiter();
void CfgLogfile ();
void CfgLogformat ();
void CfgLookupecho ();

View File

@@ -256,6 +256,7 @@ public:
gstrarray kludge;
Path loadlanguage;
GStrBag2 locationalias;
std::string locationdelimiter;
Path logfile; // goldedlog;
int logformat;
std::vector<MailList> mailinglist;

View File

@@ -335,7 +335,7 @@ void GMsgHeaderView::Paint() {
{
std::string loc2;
LookupNodeLocation(msg, loc2, LOOK_CITY2);
if (loc.length()) loc += " | " + loc2;
if (loc.length()) loc += CFG->locationdelimiter + loc2;
}
if (loc.length())