summaryrefslogtreecommitdiff
path: root/noncore/apps/oxygen/oxygen.h
blob: c59662dec1b40fc9854299a4a890b4a4b6a0f058 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
/***************************************************************************
 *                                                                         *
 * 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.                                   *
 *                                                                         *
 **************************************************************************/

class QStringList;

#include <qmainwindow.h>

class Oxygen : public QMainWindow
{
    Q_OBJECT
	
  public:
    Oxygen(QWidget *parent = 0, const char *name = 0, WFlags f = 0 );
    static QString appName() { return QString::fromLatin1("oxygen"); }
    
 private:
    void loadNames();
    QStringList names;
};