diff options
author | Michele Calgaro <michele.calgaro@yahoo.it> | 2020-12-08 12:30:30 +0900 |
---|---|---|
committer | Michele Calgaro <michele.calgaro@yahoo.it> | 2020-12-08 12:30:30 +0900 |
commit | 7ec5a57fc3f04526f36477e22066199372beb0ee (patch) | |
tree | f46ff23820fcfbf612070cce46b7496bc766a9fd /kcharselect/main.cpp | |
parent | 062ea53b46c9b76c78fcde2fb0df8b2411af3f39 (diff) | |
download | tdeutils-7ec5a57fc3f04526f36477e22066199372beb0ee.tar.gz tdeutils-7ec5a57fc3f04526f36477e22066199372beb0ee.zip |
Renaming of files in preparation for code style tools.
Signed-off-by: Michele Calgaro <michele.calgaro@yahoo.it>
Diffstat (limited to 'kcharselect/main.cpp')
-rw-r--r-- | kcharselect/main.cpp | 49 |
1 files changed, 49 insertions, 0 deletions
diff --git a/kcharselect/main.cpp b/kcharselect/main.cpp new file mode 100644 index 0000000..cb74af5 --- /dev/null +++ b/kcharselect/main.cpp @@ -0,0 +1,49 @@ +/******************************************************************/ +/* KCharSelectDia - (c) by Reginald Stadlbauer 1999 */ +/* Author: Reginald Stadlbauer */ +/* E-Mail: reggie@kde.org */ +/******************************************************************/ + +#include "kcharselectdia.h" + +#include <tdeapplication.h> +#include <tdeconfig.h> +#include <tdecmdlineargs.h> +#include <tdeaboutdata.h> +#include <tdeglobalsettings.h> + +static const char description[] = + I18N_NOOP("TDE character selection utility"); + +/*================================================================*/ +int main(int argc, char **argv) +{ + TDEAboutData aboutData( "kcharselect", I18N_NOOP("KCharSelect"), + version, description, TDEAboutData::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"); + TDECmdLineArgs::init( argc, argv, &aboutData ); + + TDEApplication app; + + TDEConfig *config = kapp->config(); + + config->setGroup("General"); + TQString font(config->readEntry("selectedFont", TDEGlobalSettings::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(); +} + |