2007-04-29 17:35:43 +00:00
|
|
|
/*
|
|
|
|
* Copyright (c) 2004 Lubos Lunak <l.lunak@kde.org>
|
|
|
|
*
|
|
|
|
* 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.
|
|
|
|
*
|
|
|
|
* This program is distributed in the hope that it will be useful,
|
|
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
* GNU General Public License for more details.
|
|
|
|
*
|
|
|
|
* You should have received a copy of the GNU General Public License
|
|
|
|
* along with this program; if not, write to the Free Software
|
|
|
|
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
|
|
|
|
*/
|
|
|
|
|
|
|
|
|
2009-05-12 15:00:07 +00:00
|
|
|
#ifndef __RULESLIST_H__
|
|
|
|
#define __RULESLIST_H__
|
2007-04-29 17:35:43 +00:00
|
|
|
|
|
|
|
#include "../../rules.h"
|
|
|
|
|
2007-11-01 18:51:01 +00:00
|
|
|
#include "ui_ruleslist.h"
|
2007-04-29 17:35:43 +00:00
|
|
|
|
|
|
|
namespace KWin
|
|
|
|
{
|
|
|
|
|
|
|
|
class KCMRulesList
|
2009-05-12 15:00:07 +00:00
|
|
|
: public QWidget, Ui_KCMRulesList
|
2011-01-30 14:34:42 +00:00
|
|
|
{
|
2007-04-29 17:35:43 +00:00
|
|
|
Q_OBJECT
|
2011-01-30 14:34:42 +00:00
|
|
|
public:
|
2014-01-07 10:22:24 +00:00
|
|
|
explicit KCMRulesList(QWidget* parent = nullptr);
|
2011-01-30 14:34:42 +00:00
|
|
|
virtual ~KCMRulesList();
|
|
|
|
void load();
|
|
|
|
void save();
|
|
|
|
void defaults();
|
2013-09-30 06:01:46 +00:00
|
|
|
Q_SIGNALS:
|
2011-01-30 14:34:42 +00:00
|
|
|
void changed(bool);
|
2013-09-30 06:01:46 +00:00
|
|
|
private Q_SLOTS:
|
2011-01-30 14:34:42 +00:00
|
|
|
void newClicked();
|
|
|
|
void modifyClicked();
|
|
|
|
void deleteClicked();
|
|
|
|
void moveupClicked();
|
|
|
|
void movedownClicked();
|
2011-04-06 17:52:23 +00:00
|
|
|
void exportClicked();
|
|
|
|
void importClicked();
|
2011-01-30 14:34:42 +00:00
|
|
|
void activeChanged();
|
|
|
|
private:
|
|
|
|
QVector< Rules* > rules;
|
|
|
|
};
|
2007-04-29 17:35:43 +00:00
|
|
|
|
|
|
|
} // namespace
|
|
|
|
|
|
|
|
#endif
|