dolphin/kdepasswd/kcm/chfacedlg.h

72 lines
1.7 KiB
C
Raw Normal View History

/**
* Copyright 2003 Braden MacDonald <bradenm_k@shaw.ca>
* Copyright 2003 Ravikiran Rajagopal <ravi@ee.eng.ohio-state.edu>
*
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation; either version 2 of the License, 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 General Public License
* along with this program; if not, write to the Free Software
*
*
* Please see the README
*
*/
/**
* @file UserInfo-chface: Dialog for choosing a new face for your user.
* @author Braden MacDonald
*/
#ifndef CHFACEDLG_H
#define CHFACEDLG_H
#include <QtCore/QObject>
#include <QtGui/QPixmap>
#include <KDialog>
#include "ui_faceDlg.h"
enum FacePerm { adminOnly = 1, adminFirst = 2, userFirst = 3, userOnly = 4};
class ChFaceDlg : public KDialog
{
Q_OBJECT
public:
explicit ChFaceDlg(const QString& picsdirs,
QWidget *parent=0);
QPixmap getFaceImage() const
{
if(ui.m_FacesWidget->currentItem())
return ui.m_FacesWidget->currentItem()->icon().pixmap(64);
else
return QPixmap();
}
private Q_SLOTS:
void slotFaceWidgetSelectionChanged( QListWidgetItem *item )
{ enableButton( Ok, !item->icon().isNull() ); }
void slotGetCustomImage();
//void slotSaveCustomImage();
private:
void addCustomPixmap( const QString &imPath, bool saveCopy );
Ui::faceDlg ui;
};
#endif // CHFACEDLG_H