/usr/include/kopete/ui/kopetestdaction.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 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 | /*
kopetestdaction.h - Kopete Standard Actionds
Copyright (c) 2001-2002 by Ryan Cumming <bodnar42@phalynx.dhs.org>
Copyright (c) 2002-2003 by Martijn Klingens <klingens@kde.org>
Kopete (c) 2002-2003 by the Kopete developers <kopete-devel@kde.org>
*************************************************************************
* *
* This library is free software; you can redistribute it and/or *
* modify it under the terms of the GNU Lesser General Public *
* License as published by the Free Software Foundation; either *
* version 2 of the License, or (at your option) any later version. *
* *
*************************************************************************
*/
#ifndef KOPETESTDACTION_H
#define KOPETESTDACTION_H
#undef KDE_NO_COMPAT
#include <kaction.h>
#include <QtCore/QObject>
#include "kopete_export.h"
class KActionCollection;
class KIcon;
/**
* @author Ryan Cumming <bodnar42@phalynx.dhs.org>
*/
class KOPETE_EXPORT KopeteStdAction
{
public:
/**
* Standard action to start a chat
*/
static KAction *chat( const QObject *recvr, const char *slot, QObject* parent );
/**
* Standard action to send a single message
*/
static KAction *sendMessage(const QObject *recvr, const char *slot, QObject* parent );
/**
* Standard action to open a user info dialog
*/
static KAction *contactInfo(const QObject *recvr, const char *slot, QObject* parent );
/**
* Standard action to open a history dialog or something similar
*/
static KAction *viewHistory(const QObject *recvr, const char *slot, QObject* parent );
/**
* Standard action to initiate sending a file to a contact
*/
static KAction *sendFile(const QObject *recvr, const char *slot, QObject* parent );
/**
* Standard action to toggle is the contact is visible even when offline
*/
static KAction *toggleAlwaysVisible(const QObject *recvr, const char *slot, QObject* parent );
/**
* Standard action to change a contacts @ref Kopete::MetaContact
*/
static KAction *changeMetaContact(const QObject *recvr, const char *slot, QObject* parent );
/**
* Standard action to add a group
*/
static KAction *addGroup(const QObject *recvr, const char *slot, QObject* parent );
/**
* Standard action to delete a contact
*/
static KAction *deleteContact(const QObject *recvr, const char *slot, QObject* parent );
/**
* Standard action to change a contact alias/nickname in your contact list
*/
static KAction *changeAlias(const QObject *recvr, const char *slot, QObject* parent );
/**
* Standard action to block a contact
*/
static KAction *blockContact(const QObject *recvr, const char *slot, QObject* parent );
/**
* Standard action to unblock a contact
*/
static KAction *unblockContact(const QObject *recvr, const char *slot, QObject* parent );
/**
* Return an action to change the Kopete preferences.
*
* The object has no signal/slot, the prefs are automatically shown
*/
static KAction *preferences(KActionCollection *parent, const char *name = 0);
private:
/**
* @internal
* Helper method to create a action
*/
static KAction *createAction(const QString &text, const KIcon &icon, const QObject *receiver, const char *slot, QObject* parent);
};
namespace KSettings
{
class Dialog;
}
class KOPETE_EXPORT KopetePreferencesAction : public KAction
{
Q_OBJECT
public:
explicit KopetePreferencesAction( KActionCollection *parent, const char *name = 0 );
~KopetePreferencesAction();
protected slots:
void slotShowPreferences();
private:
static KSettings::Dialog *s_settingsDialog;
};
#endif
// vim: set noet ts=4 sts=4 sw=4:
|