autoexample.cpp
00001 /* 00002 This file is part of KDE. 00003 00004 Copyright (c) 2003 Cornelius Schumacher <schumacher@kde.org> 00005 00006 This library is free software; you can redistribute it and/or 00007 modify it under the terms of the GNU Library General Public 00008 License as published by the Free Software Foundation; either 00009 version 2 of the License, or (at your option) any later version. 00010 00011 This library is distributed in the hope that it will be useful, 00012 but WITHOUT ANY WARRANTY; without even the implied warranty of 00013 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU 00014 Library General Public License for more details. 00015 00016 You should have received a copy of the GNU Library General Public License 00017 along with this library; see the file COPYING.LIB. If not, write to 00018 the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, 00019 Boston, MA 02110-1301, USA. 00020 */ 00021 00022 #include "general_base.h" 00023 #include "myoptions_base.h" 00024 00025 #include "exampleprefs_base.h" 00026 00027 #include <kaboutdata.h> 00028 #include <kapplication.h> 00029 #include <kdebug.h> 00030 #include <klocale.h> 00031 #include <kcmdlineargs.h> 00032 #include <kglobal.h> 00033 #include <kconfig.h> 00034 #include <kstandarddirs.h> 00035 #include <kconfigdialog.h> 00036 00037 #include <tqlabel.h> 00038 00039 int main( int argc, char **argv ) 00040 { 00041 KAboutData aboutData( "example", I18N_NOOP("autoconfig example"), "0.1" ); 00042 aboutData.addAuthor( "Cornelius Schumacher", 0, "schumacher@kde.org" ); 00043 00044 KCmdLineArgs::init( argc, argv, &aboutData ); 00045 00046 KApplication app; 00047 00048 ExamplePrefsBase configSkeleton( "dummy1", "dummy2" ); 00049 configSkeleton.readConfig(); 00050 00051 KConfigDialog *dialog = new KConfigDialog( 0, "settings", &configSkeleton ); 00052 00053 GeneralBase *general = new GeneralBase( 0 ); 00054 dialog->addPage( general, i18n("General"), "General", "" ); 00055 00056 MyOptionsBase *myOptions = new MyOptionsBase( 0 ); 00057 dialog->addPage( myOptions, i18n("MyOptions"), "MyOptions", "" ); 00058 00059 app.setMainWidget( dialog ); 00060 00061 dialog->show(); 00062 00063 return app.exec(); 00064 }