3 * Copyright (C) 2004 Frans Englich <frans.englich@telia.com>
5 * This program is free software; you can redistribute it and/or modify
6 * it under the terms of the GNU General Public License as published by
7 * the Free Software Foundation; either version 2 of the License, or
8 * (at your option) any later version.
10 * This program is distributed in the hope that it will be useful,
11 * but WITHOUT ANY WARRANTY; without even the implied warranty of
12 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13 * GNU General Public License for more details.
15 * You should have received a copy of the GNU General Public License
16 * along with this program; if not, write to the Free Software
23 #include <kemailsettings.h>
25 #include "ui_main_widget.h"
27 #include "chfacedlg.h"
34 class MainWidget
: public QWidget
, public Ui::MainWidget
37 MainWidget( QWidget
*parent
) : QWidget( parent
) {
44 * Please see the README
46 class KCMUserAccount
: public KCModule
51 explicit KCMUserAccount(QWidget
* parent
, const QVariantList
& list
=QVariantList());
55 * The user data is loaded from chfn(/etc/password) and then
56 * written back as well as to KDE's own(KEmailSettings).
57 * The user won't notice this(assuming they change the KDE settings via
58 * this KCM) and will make KDE play nice with enviroments which uses
68 bool eventFilter(QObject
*, QEvent
*e
);
71 void slotChangePassword();
72 //void configChanged() { emit changed(true); };
73 void slotFaceButtonClicked();
76 void changeFace(const QPixmap
& pix
);
77 inline KUrl
* decodeImgDrop(QDropEvent
*e
, QWidget
*wdg
);