summaryrefslogtreecommitdiffstats
path: root/pokemodr/Pokemodr.cpp
diff options
context:
space:
mode:
authorBen Boeckel <MathStuf@gmail.com>2008-06-09 00:50:59 +0000
committerBen Boeckel <MathStuf@gmail.com>2008-06-09 00:50:59 +0000
commit60a2ed8ee8aa994c83d382af2ec477e171beb950 (patch)
tree6fea6867adee00f22b9d775a6dce15ed875d75e6 /pokemodr/Pokemodr.cpp
parent0737b455ca94351c574aa1a8c83ea30c5b7bc443 (diff)
[FIX] All modules now use their own namespace
git-svn-id: https://pokegen.svn.sourceforge.net/svnroot/pokegen/trunk@201 6ecfd1a5-f3ed-3746-8530-beee90d26b22
Diffstat (limited to 'pokemodr/Pokemodr.cpp')
-rw-r--r--pokemodr/Pokemodr.cpp79
1 files changed, 79 insertions, 0 deletions
diff --git a/pokemodr/Pokemodr.cpp b/pokemodr/Pokemodr.cpp
new file mode 100644
index 00000000..62e579bf
--- /dev/null
+++ b/pokemodr/Pokemodr.cpp
@@ -0,0 +1,79 @@
+/*
+ * Copyright 2008 Ben Boeckel <MathStuf@gmail.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 3 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/>.
+ */
+
+// Header include
+#include "Pokemodr.h"
+
+// Pokemodr includes
+#include "FileDialog.h"
+#include "PokemodrUI.h"
+
+// Qt includes
+#include <QTextCodec>
+
+// KDE includes
+#include <KAboutData>
+#include <KApplication>
+#include <KCmdLineArgs>
+#include <KConfig>
+#include <KConfigGroup>
+#include <KStandardDirs>
+
+static void messageHandler(QtMsgType type, const char* message)
+{
+ switch (type)
+ {
+ case QtDebugMsg:
+ fprintf(stderr, "Debug: %s\n", message);
+ break;
+ case QtWarningMsg:
+ fprintf(stderr, "Warning: %s\n", message);
+ break;
+ case QtCriticalMsg:
+ fprintf(stderr, "Critical: %s\n", message);
+ break;
+ case QtFatalMsg:
+ fprintf(stderr, "Fatal: %s\n", message);
+ abort();
+ }
+}
+
+int main(int argc, char* argv[])
+{
+ qInstallMsgHandler(messageHandler);
+
+ QTextCodec::setCodecForCStrings(QTextCodec::codecForLocale());
+ KAboutData about("pokemodr", "pokemodr", ki18n("PokéModr"), VERSION_STRING, ki18n(""), KAboutData::License_Custom, ki18n("©2007-2008 Ben Boeckel and Nerdy Productions"), ki18n("This program offers an easy interface so that PokéMods can be easily created."), "http://sourceforge.net/projects/pokegen");
+ about.setLicenseTextFile("LICENSE");
+ about.setProgramName(ki18n("PokéModr"));
+ about.addAuthor(ki18n("Ben Boeckel"), ki18n("Lead Programmer"), "MathStuf@gmail.com", "");
+ about.addCredit(ki18n("Peter Fernandes"), ki18n("Ideas"), "supersonicandtails@gmail.com", "http://www.hypersonicsoft.org");
+ about.addCredit(ki18n("Kevin Kofler"), ki18n("Qt, KDE, debugging help"), "kevin.kofler@chello.at", "http://www.tigen.org/kevin.kofler");
+ about.addCredit(ki18n("Luke Greco"), ki18n("Ideas"), "sirlewk@gmail.com", "");
+
+ KCmdLineArgs::init(argc, argv, &about);
+ KCmdLineOptions options;
+ options.add("+[files]", ki18n("Files to open"));
+ KCmdLineArgs::addCmdLineOptions(options);
+
+ KApplication* app = new KApplication();
+
+ Pokemodr::PokemodrUI* mainWindow = new Pokemodr::PokemodrUI;
+ mainWindow->show();
+ app->exec();
+ return 0;
+}