e7e77f118a
Conflicts: cmake/modules/FindKDE4Internal.cmake [ON vs TRUE] experimental/libkdeclarative/kdeclarative.cpp [include changes] kdecore/CMakeLists.txt [kshareddatacache.cpp exception support, but file moved] kdecore/kernel/kcmdlineargs.cpp [+1 option, but qi18n] kdeui/widgets/ktextedit.cpp [moc] kdewebkit/kwebpage.cpp [QUrl] kfile/kfilewidget.cpp [QUrl] kfile/kurlnavigatortogglebutton.cpp [QT_NO_ACCESSIBILITY] kinit/kinit.cpp [document path] kio/kfile/kurlrequester.cpp [KDE::icon] kio/kio/kprotocolmanager.cpp [kded5] kio/kio/krun.cpp [document path] kioslave/ftp/ftp.cpp [QUrl] kioslave/http/kcookiejar/CMakeLists.txt [upd file resurrected] kioslave/http/kcookiejar/kcookiescfg.upd [resurrected] kioslave/http/kcookiejar/kcookiewin.cpp [KVBox porting] mimetypes/kde.xml [kexi gone] nepomuk/core/resourcedata.cpp [deleted] nepomuk/test/CMakeLists.txt [deleted] plasma/private/packages.cpp [Plasma::Applet::NoBackground] tier1/kjs/src/kjs/jsonstringify.cpp [unsigned int] tier1/solid/src/solid/CMakeLists.txt [hello udisks2]
53 lines
1.5 KiB
C++
53 lines
1.5 KiB
C++
/*
|
|
* Copyright (c) 2009 Chani Armitage <chani@kde.org>
|
|
*
|
|
* This program is free software; you can redistribute it and/or modify
|
|
* it under the terms of the GNU Library General Public License as
|
|
* published by the Free Software Foundation; either version 2, 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 Library 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.
|
|
*/
|
|
|
|
#ifndef PLASMA_CONTAINMENTACTIONSPRIVATE_H
|
|
#define PLASMA_CONTAINMENTACTIONSPRIVATE_H
|
|
|
|
#include "dataengineconsumer.h"
|
|
|
|
namespace Plasma
|
|
{
|
|
|
|
class ContainmentActionsPrivate : public DataEngineConsumer
|
|
{
|
|
public:
|
|
ContainmentActionsPrivate(KService::Ptr service, ContainmentActions *containmentActions) :
|
|
q(containmentActions),
|
|
containmentActionsDescription(service),
|
|
package(0),
|
|
initialized(false),
|
|
needsConfig(false),
|
|
containment(0)
|
|
{
|
|
};
|
|
|
|
ContainmentActions *q;
|
|
KPluginInfo containmentActionsDescription;
|
|
Package *package;
|
|
KServiceAction mode;
|
|
bool initialized : 1;
|
|
bool needsConfig : 1;
|
|
Containment *containment;
|
|
};
|
|
|
|
} // namespace Plasma
|
|
#endif //PLASMA_CONTAINMENTACTIONSPRIVATE_H
|
|
|