00001 /*************************************************************************** 00002 * * 00003 * This program is free software; you can redistribute it and/or modify * 00004 * it under the terms of the GNU General Public License as published by * 00005 * the Free Software Foundation; either version 2 of the License, or * 00006 * ( at your option ) any later version. * 00007 * * 00008 **************************************************************************/ 00009 00010 class QStringList; 00011 00012 #include <qmainwindow.h> 00013 00014 class Oxygen : public QMainWindow 00015 { 00016 Q_OBJECT 00017 00018 public: 00019 Oxygen(QWidget *parent = 0, const char *name = 0, WFlags f = 0 ); 00020 static QString appName() { return QString::fromLatin1("oxygen"); } 00021 00022 private: 00023 void loadNames(); 00024 QStringList names; 00025 };
1.4.2