Warning, file /utilities/rsibreak/src/plasmaeffect.h was not indexed or was modified since last indexation (in which case cross-reference links may be missing, inaccurate or erroneous).

0001 /*
0002     SPDX-FileCopyrightText: 2009-2010 Tom Albers <toma@kde.org>
0003 
0004     SPDX-License-Identifier: GPL-2.0-or-later
0005 */
0006 
0007 #ifndef PLASMAEFFECT_H
0008 #define PLASMAEFFECT_H
0009 
0010 #include <breakbase.h>
0011 
0012 #include <QObject>
0013 
0014 class PlasmaEffect : public BreakBase
0015 {
0016     Q_OBJECT
0017 
0018 public:
0019     explicit PlasmaEffect(QObject *);
0020 
0021 public slots:
0022     void activate() override;
0023     void deactivate() override;
0024 
0025 private slots:
0026     void slotGray();
0027 };
0028 
0029 #endif // PLASMAEFFECT_H