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
|
/****************************************************************
**
** Attal : Lords of Doom
**
** attalButton.h
** Class for managing buttons in attal
**
** Version : $Id: attalButton.h,v 1.6 2007/04/30 12:01:02 lusum Exp $
**
** Author(s) : Pascal Audoux
**
** Date : 30/10/2005
**
** Licence :
** 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, 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.
**
****************************************************************/
#ifndef ATTALBUTTON_H
#define ATTALBUTTON_H
// generic include files
// include files for QT
#include <QPixmap>
#include <QPushButton>
// application specific include files
/* ------------------------------
* AttalButton
* ------------------------------ */
class AttalButton : public QPushButton
{
public:
enum ButtonType {
BT_NONE,
BT_LORD,
BT_BASE,
BT_OK,
BT_CANCEL,
BT_PREV,
BT_NEXT
};
/** Constructor */
AttalButton( QWidget * parent, ButtonType type = BT_NONE );
void setLord( uint id );
void setBase( uint race );
void setPixmap( const QPixmap & pixmap );
void setBackgroundColor( const QColor & color );
protected:
void createButtonLord();
void createButtonBase();
void createButtonOk();
void createButtonCancel();
void createButtonPrevious();
void createButtonNext();
ButtonType _type;
};
#endif // ATTALBUTTON_H
|