1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123
|
/*
This file is part of Advanced Strategic Command; http://www.asc-hq.de
Copyright (C) 1994-2010 Martin Bickel and Marc Schellenberger
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; see the file COPYING. If not, write to the
Free Software Foundation, Inc., 59 Temple Place, Suite 330,
Boston, MA 02111-1307 USA
*/
#include <boost/regex.hpp>
#include "../paradialog.h"
#include "../widgets/dropdownselector.h"
#include "../widgets/textrenderer.h"
#include "../gameoptions.h"
#include "../dlg_box.h"
class MailOptionsDialog : public ASC_PG_Dialog {
typedef map<ASCString,ASCString> ClientSetups;
ClientSetups clientSetups;
map<int,ASCString> clientSetupIndex;
PG_LineEdit* command;
DropDownSelector* dds;
bool cannedConfigSelected( ) {
int index = dds->GetSelectedItemIndex();
if ( clientSetupIndex.find(index) != clientSetupIndex.end() ) {
command->SetText( clientSetupIndex[index]);
return true;
} else
return false;
}
bool ok() {
CGameOptions::Instance()->mailProgram = command->GetText();
CGameOptions::Instance()->setChanged();
QuitModal();
return true;
}
bool cancel() {
QuitModal();
return true;
}
public:
MailOptionsDialog() : ASC_PG_Dialog( NULL, PG_Rect( -1, -1, 600, 350), "Email Options")
{
StandardButtonDirection( Horizontal );
if ( exist("email.clients")) {
tnfilestream stream ( "email.clients", tnstream::reading);
bool finished = false;
while ( !finished) {
ASCString line;
finished = !stream.readTextString(line, false);
if ( line.find('#') != 0 ) {
// this is not a comment
boost::smatch what;
static boost::regex parser( "([^:]+):\\s*(\\S.*)");
if( boost::regex_match( line, what, parser)) {
ASCString client;
client.assign( what[1].first, what[1].second );
ASCString command;
command.assign( what[2].first, what[2].second );
clientSetups[client] = command;
}
}
}
}
if ( clientSetups.size() > 0 ) {
dds = new DropDownSelector( this, PG_Rect( 10, 30, Width() / 2 , 20));
dds->AddItem("-- default configurations --");
int counter = 1;
for ( ClientSetups::iterator i = clientSetups.begin(); i != clientSetups.end(); ++i) {
dds->AddItem(i->first);
clientSetupIndex[counter++] = i->second;
}
PG_Button* apply = new PG_Button( this, PG_Rect( Width()/2 + 20, 30, Width()/2-30, 20),"Apply");
apply->sigClick.connect( SigC::slot( *this, &MailOptionsDialog::cannedConfigSelected));
// dds->selectionSignal.connect( SigC::slot( *this, &MailOptionsDialog::cannedConfigSelected));
} else
dds = NULL;
command = new PG_LineEdit( this, PG_Rect( 10, 60, Width() - 20, 25 ));
command->SetText( CGameOptions::Instance()->mailProgram );
ASCString help = readtextmessage( 80 );
if ( !help.empty() )
new TextRenderer( this, PG_Rect( 10, 100, Width()-20, 160 ), help);
AddStandardButton("OK")->sigClick.connect( SigC::slot( *this, &MailOptionsDialog::ok));
AddStandardButton("Cancel")->sigClick.connect( SigC::slot( *this, &MailOptionsDialog::cancel));
}
};
void editEmailOptions()
{
MailOptionsDialog mod;
mod.Show();
mod.RunModal();
}
|