Better wording
[kdepim.git] / libkdepim / nepomukwarning.h
blob1296e1fedb5ef861426619d87e42d0675a77d411
1 /*
2 Copyright 2011 Volker Krause <vkrause@kde.org>
4 This library is free software; you can redistribute it and/or
5 modify it under the terms of the GNU Library General Public
6 License as published by the Free Software Foundation; either
7 version 2 of the License, or (at your option) any later version.
9 This library is distributed in the hope that it will be useful,
10 but WITHOUT ANY WARRANTY; without even the implied warranty of
11 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
12 Library General Public License for more details.
14 You should have received a copy of the GNU Library General Public License
15 along with this library; see the file COPYING.LIB. If not, write to
16 the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
17 Boston, MA 02110-1301, USA.
20 #ifndef KPIM_NEPOMUKWARNING_H
21 #define KPIM_NEPOMUKWARNING_H
23 #include "kdepim_export.h"
25 #include <KDE/KMessageWidget>
27 namespace KPIM {
29 /**
30 * Inline warning message for windows/dialogs that semi-optionally depend on Nepomuk.
31 * Just add this to the layout at the top, it'll automatically show itself when necessary.
32 * @since 4.8
34 class KDEPIM_EXPORT NepomukWarning : public KMessageWidget
36 Q_OBJECT
37 public:
38 /**
39 * @param neverShowAgainKey Key used for storing/retrieving the "never show again" state.
41 explicit NepomukWarning( const char *neverShowAgainKey, QWidget *parent = 0 );
43 /**
44 * Sets a list of features that wont work.
46 void setMissingFeatures( const QStringList &features );
47 static bool missingNepomukWarning( const char *neverShowAgainKey );
48 static QString nepomukWarningGroupName();
49 private slots:
50 void configure();
51 void explicitlyClosed();
53 private:
54 QString m_neverShowAgainKey;
59 #endif