/* Copyright (C) 2003-2006 Jesper K. Pedersen 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., 51 Franklin Steet, Fifth Floor, Boston, MA 02110-1301, USA. */ #include "Settings/SettingsData.h" #include "MainWindow/Window.h" #include #include #include #include #include "MainWindow/SplashScreen.h" #ifdef SQLDB_SUPPORT #include "SQLDB/QueryErrors.h" #endif #include "Settings/SettingsData.h" static const KCmdLineOptions options[] = { { "c ", I18N_NOOP("Config file"), 0 }, { "e ", I18N_NOOP("Database engine to use"), 0 }, { "demo", I18N_NOOP( "Starts KPhotoAlbum with a prebuilt set of demo images" ), 0 }, { "import ", I18N_NOOP( "Import file" ), 0 }, { "export-in-2.1-format", I18N_NOOP( "This will make an attempt at saving in a format understandable by KimDaBa 2.1" ), 0 }, { 0, 0, 0} }; int main( int argc, char** argv ) { KAboutData aboutData( "kphotoalbum", I18N_NOOP("KPhotoAlbum"), "3.0", I18N_NOOP("KDE Photo Album"), KAboutData::License_GPL, 0, 0, "http://www.kphotoalbum.org"); aboutData.addAuthor( "Jesper K. Pedersen", I18N_NOOP("Development"), "blackie@kde.org" ); aboutData.addCredit( "Will Stephenson", "Developing an Icon for KPhotoAlbum", "will@stevello.free-online.co.uk" ); aboutData.addCredit( "Teemu Rytilahti", "Sending patches implementing (.) the \"Set As Wallpaper\" menu in the viewer." "(.) Theme support for HTML generation", "teemu.rytilahti@kde-fi.org" ); aboutData.addCredit( "Reimar Imhof", "Patch to sort items in option listboxes", "Reimar.Imhof@netCologne.de" ); aboutData.addCredit( "Thomas Schwarzgruber", "Patch to sort images in the thumbnail view, plus reading time info out of EXIF images for existing images", "possebaer@gmx.at" ); aboutData.addCredit( "Marcel Wiesweg", "Patch which speed up loading of thumbnails plus preview in image property dialog.", "marcel.wiesweg@gmx.de" ); aboutData.addCredit( "Marco Caldarelli", "Patch for making it possible to reread EXIF info using a nice dialog.", "caldarel@yahoo.it" ); aboutData.addCredit( "Jean-Michel FAYARD", "(.) Patch with directory info made available through the browser. (.) Patch for adding a check box for \"and/or\" searches in the search page.", "jmfayard@gmail.com" ); aboutData.addCredit( "Robert L Krawitz", "Numerous patches plus profiling KPhotoAlbum again and again.", "rlk@alum.mit.edu" ); aboutData.addCredit( "Christoph Moseler", "Numerous patches for lots of bugs plus patches for a few new features", "forums@moseler.net" ); aboutData.addCredit( "Clytie Siddall", "Tremendous help with the english text in the application.", "clytie@riverland.net.au" ); KCmdLineArgs::init( argc, argv, &aboutData ); KCmdLineArgs::addCmdLineOptions( options ); KApplication app; new MainWindow::SplashScreen(); KImageIO::registerFormats(); try { MainWindow::Window* view = new MainWindow::Window( 0, "view" ); // qApp->setMainWidget( view ); view->setGeometry( Settings::SettingsData::instance()->windowGeometry( Settings::MainWindow ) ); int code = app.exec(); return code; } #ifdef SQLDB_SUPPORT catch (SQLDB::SQLError& e) { qFatal("Exception SQLDB::%s occured when running query: %s\nError message: %s", e.name().local8Bit().data(), e.queryLine().local8Bit().data(), e.message().local8Bit().data()); } catch (SQLDB::Error& e) { qFatal("Exception SQLDB::%s occured with message: %s", e.name().local8Bit().data(), e.message().local8Bit().data()); } #endif catch (...) { qFatal("Unknown exception caught"); } }