Fix regressions
[kphotoalbum.git] / MainWindow / FeatureDialog.h
blob68633ba6314ba02547d6bf832cae34dd66d2fa68
1 /* Copyright (C) 2003-2006 Jesper K. Pedersen <blackie@kde.org>
3 This program is free software; you can redistribute it and/or
4 modify it under the terms of the GNU General Public
5 License as published by the Free Software Foundation; either
6 version 2 of the License, or (at your option) any later version.
8 This program is distributed in the hope that it will be useful,
9 but WITHOUT ANY WARRANTY; without even the implied warranty of
10 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
11 General Public License for more details.
13 You should have received a copy of the GNU General Public License
14 along with this program; see the file COPYING. If not, write to
15 the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
16 Boston, MA 02110-1301, USA.
18 #ifndef FEATUREDIALOG_H
19 #define FEATUREDIALOG_H
20 #include <QTextBrowser>
21 #include <kdialog.h>
23 namespace MainWindow
26 class FeatureDialog : public KDialog {
27 Q_OBJECT
29 public:
30 FeatureDialog( QWidget* parent );
31 static bool hasAllFeaturesAvailable();
32 static QString featureString();
33 static QStringList supportedVideoMimeTypes();
35 protected:
36 static bool hasKIPISupport();
37 static bool hasSQLDBSupport();
38 static bool hasEXIV2Support();
39 static bool hasEXIV2DBSupport();
42 class HelpBrowser :public QTextBrowser
44 public:
45 HelpBrowser( QWidget* parent, const char* name = 0 );
46 virtual void setSource( const QUrl& name );
51 #endif /* FEATUREDIALOG_H */