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
|
/******************************************************************/
/* KCharSelectDia - (c) by Reginald Stadlbauer 1999 */
/* Author: Reginald Stadlbauer */
/* E-Mail: reggie@kde.org */
/******************************************************************/
#include "kcharselectdia.h"
#include <kapplication.h>
#include <kconfig.h>
#include <kcmdlineargs.h>
#include <kaboutdata.h>
#include <kglobalsettings.h>
static const char description[] =
I18N_NOOP("TDE character selection utility");
/*================================================================*/
int main(int argc, char **argv)
{
KAboutData aboutData( "kcharselect", I18N_NOOP("KCharSelect"),
version, description, KAboutData::License_GPL,
"(c) 1999, Reginald Stadlbauer");
aboutData.addAuthor("Reginald Stadlbauer",0, "reggie@kde.org");
aboutData.addCredit( "Nadeem Hasan", I18N_NOOP( "GUI cleanup and fixes" ),
"nhasan@kde.org" );
aboutData.addCredit( "Ryan Cumming", I18N_NOOP( "GUI cleanup and fixes" ),
"bodnar42@phalynx.dhs.org" );
aboutData.addCredit("Benjamin C. Meyer",I18N_NOOP("XMLUI conversion"),"ben+kcharselect@meyerhome.net");
KCmdLineArgs::init( argc, argv, &aboutData );
KApplication app;
KConfig *config = kapp->config();
config->setGroup("General");
TQString font(config->readEntry("selectedFont", KGlobalSettings::generalFont().family()));
TQChar c = TQChar(static_cast<unsigned short>(config->readNumEntry("char",33)));
int tn = config->readNumEntry("table",0);
bool direction = config->readNumEntry("entryDirection",0);
KCharSelectDia *dia = new KCharSelectDia(0L,"",c,font,tn,direction);
app.setMainWidget(dia);
dia->show();
return app.exec();
}
|