KDEUI
knotificationrestrictions.h
Go to the documentation of this file.
00001 /* This file is part of the KDE libraries 00002 Copyright (C) 2006 Aaron Seigo <aseigo@kde.org> 00003 00004 This library is free software; you can redistribute it and/or 00005 modify it under the terms of the GNU Library General Public 00006 License as published by the Free Software Foundation; either 00007 version 2 of the License, or (at your option) any later version. 00008 00009 This library is distributed in the hope that it will be useful, 00010 but WITHOUT ANY WARRANTY; without even the implied warranty of 00011 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU 00012 Library General Public License for more details. 00013 00014 You should have received a copy of the GNU Library General Public License 00015 along with this library; see the file COPYING.LIB. If not, write to 00016 the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, 00017 Boston, MA 02110-1301, USA. 00018 */ 00019 00020 #ifndef KDELIBS_KNOTIFICATIONRESTRICTIONS_H 00021 #define KDELIBS_KNOTIFICATIONRESTRICTIONS_H 00022 00023 #include <kdeui_export.h> 00024 00025 #include <QtCore/QObject> 00026 00047 class KDEUI_EXPORT KNotificationRestrictions : public QObject 00048 { 00049 Q_OBJECT 00050 00051 public: 00055 enum Service 00056 { 00060 NoServices = 0, 00065 ScreenSaver = 1, 00071 MessagingPopups = 2, 00077 Notifications = 4, 00084 CriticalNotifications = 8, 00085 NonCriticalServices = ScreenSaver | 00086 MessagingPopups | 00087 Notifications, 00088 AllServices = NonCriticalServices | CriticalNotifications 00089 }; 00090 Q_DECLARE_FLAGS(Services, Service) 00091 00092 00098 explicit KNotificationRestrictions(Services control = NonCriticalServices, 00099 QObject* parent = 0); 00100 virtual ~KNotificationRestrictions(); 00101 00102 private: 00103 class Private; 00104 Private * const d; 00105 00106 Q_PRIVATE_SLOT( d, void screensaverFakeKeyEvent() ) 00107 }; 00108 00109 Q_DECLARE_OPERATORS_FOR_FLAGS(KNotificationRestrictions::Services) 00110 #endif
KDE 4.6 API Reference