Make a branch to make krunner Good Enough For Aaron™.
[kdebase/uwolfer.git] / workspace / ksysguard / gui / SharedSettings.h
blob1d3a18ddf87b63dae346b9d3509180015014f583
1 /*
2 KSysGuard, the KDE System Guard
4 Copyright (c) 2006 John Tapsell <tapsell@kde.org>
6 This program is free software; you can redistribute it and/or
7 modify it under the terms of version 2 or later of the GNU General Public
8 License as published by the Free Software Foundation.
10 This program is distributed in the hope that it will be useful,
11 but WITHOUT ANY WARRANTY; without even the implied warranty of
12 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13 GNU General Public License for more details.
15 You should have received a copy of the GNU General Public License
16 along with this program; if not, write to the Free Software
17 Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
21 #ifndef SHARED_SETTINGS_H
22 #define SHARED_SETTINGS_H
24 /** There will be an instance of this for each WorkSheet. A pointer will be passed to every widget on that
25 * WorkSheet. That way the worksheet can easily update the settings for all the widgets on it.
27 class SharedSettings
29 public:
30 SharedSettings() { isApplet = false; locked = false; modified = false; }
31 bool isApplet;
32 bool locked;
33 bool modified;
36 #endif