/usr/include/kopete/kopetestatussettings.h is in libkopete-dev 4:15.12.3-0ubuntu1.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 | // This file is generated by kconfig_compiler from kopetestatussettings.kcfg.
// All changes you do to this file will be lost.
#ifndef KOPETE_STATUSSETTINGS_H
#define KOPETE_STATUSSETTINGS_H
#include <kopete_export.h>
#include <klocale.h>
#include <kconfigskeleton.h>
#include <kdebug.h>
namespace Kopete {
class KOPETE_EXPORT StatusSettings : public KConfigSkeleton
{
public:
class EnumProtocolStatusMenuType
{
public:
enum type { StatusesNotFiltered, StatusesWithSameCategory, UseParentStatusCategory, COUNT };
};
static StatusSettings *self();
~StatusSettings();
/**
Set Protocol's status menu type.
*/
static
void setProtocolStatusMenuType( int v )
{
if (!self()->isImmutable( QString::fromLatin1( "protocolStatusMenuType" ) ))
self()->mProtocolStatusMenuType = v;
}
/**
Get Protocol's status menu type.
*/
static
int protocolStatusMenuType()
{
return self()->mProtocolStatusMenuType;
}
/**
Get Item object corresponding to protocolStatusMenuType()
*/
ItemEnum *protocolStatusMenuTypeItem()
{
return mProtocolStatusMenuTypeItem;
}
protected:
StatusSettings();
friend class StatusSettingsHelper;
// Status
int mProtocolStatusMenuType;
private:
ItemEnum *mProtocolStatusMenuTypeItem;
};
}
#endif
|