/usr/include/kopete/ui/editaccountwidget.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 | /*
editaccountwidget.h - Kopete Account Widget
Copyright (c) 2002-2003 by Martijn Klingens <klingens@kde.org>
Copyright (c) 2003 by Olivier Goffart <ogoffart@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 EDITACCOUNTWIDGET_H
#define EDITACCOUNTWIDGET_H
#include "kopete_export.h"
namespace Kopete
{
class Account;
}
class KopeteEditAccountWidgetPrivate;
/**
* @author Olivier Goffart <ogoffart@kde.org>
*
* This class is used by the protocol plugins to add specific protocol fields in the add account wizard,
* or in the account preferences. If the given account is 0L, then you will have to create a new account
* in @ref apply().
*
* Each protocol has to subclass this class, and the protocol's edit account page MUST inherits from
* QWidget too.
*
* We suggest to put at least these fields in the page:
*
* - The User login, or the accountId. you can retrieve it from @ref Kopete::Account::accountId(). This
* field has to be marked as ReadOnly or shown as a label if the account already exists. Remember
* that accountId should be constant after account creation!
*
* - The password, and the remember password checkboxes.
*
* - The auto connect checkbox: use @ref Kopete::Account::excludeConnect() and
* @ref Kopete::Account::setExcludeConnect() to get/set this flag.
*
* You may add other custom fields, e.g. the nickname. To save or retrieve these settings use
* @ref Kopete::ContactListElement::pluginData() with your protocol as plugin.
*/
class KOPETE_EXPORT KopeteEditAccountWidget
{
public:
/**
* Constructor.
*
* If 'account' is 0L we are in the 'add account wizard', otherwise
* we are editing an existing account.
*/
explicit KopeteEditAccountWidget( Kopete::Account *account );
/**
* Destructor
*/
virtual ~KopeteEditAccountWidget();
/**
* This method must be reimplemented.
* It does the same as @ref AddContactPage::validateData()
*/
virtual bool validateData() = 0;
/**
* Create a new account if we are in the 'add account wizard',
* otherwise update the existing account.
*/
virtual Kopete::Account *apply() = 0;
protected:
/**
* Get a pointer to the Kopete::Account passed to the constructor.
* You can modify it any way you like, just don't delete the object.
*/
Kopete::Account * account() const;
/**
* Set the account
*/
// FIXME: Is it possible to make the API not require this? A const account
// in this widget seems a lot cleaner to me - Martijn
void setAccount( Kopete::Account *account );
private:
KopeteEditAccountWidgetPrivate *d;
};
// vim: set noet ts=4 sts=4 sw=4:
#endif
|