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 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160
|
/****************************************************************
**
** Attal : Lords of Doom
**
** sectionArtefact.cpp
** section for specifying artefacts
**
** Version : $Id: sectionArtefact.cpp,v 1.7 2006/11/03 18:28:59 fdarling Exp $
**
** Author(s) : Pascal Audoux
**
** Date : 20/01/2002
**
** 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.
**
****************************************************************/
#include "sectionArtefact.h"
// generic include files
#include <algorithm>
// include files for QT
#include <QLayout>
#include <QVBoxLayout>
// application specific include files
#include "libCommon/log.h"
#include "libCommon/dataTheme.h"
#include "libCommon/artefact.h"
#include "libClient/imageTheme.h"
#include "libClient/graphicalArtefact.h"
#include "themeEditor/artefactAction.h"
extern QString IMAGE_PATH;
SectionArtefact::SectionArtefact( QWidget * parent , const char * name )
: GenericSection( parent, name )
{
_num = 0;
setTitle( tr( "Artefact" ) );
_name = new AskString( tr( "Name: " ), _mainWidget );
_position = new AskInt( tr( "Position: " ), _mainWidget );
_position->setMinValue( 0 );
_position->setMaxValue( 10 );
_icon = new AskPixmap( true, "", tr( "Icon: " ), _mainWidget );
_item = new AskPixmap( true, "", tr( "Item: " ), _mainWidget );
_actions = new ArtefactAction( _mainWidget );
QVBoxLayout * layout = new QVBoxLayout( _mainWidget );
layout->setMargin( 5 );
layout->setSpacing( 5 );
layout->addWidget( _name );
layout->addWidget( _position );
layout->addWidget( _icon );
layout->addWidget( _item );
layout->addWidget( _actions );
layout->addStretch( 1 );
layout->activate();
init();
}
void SectionArtefact::clear()
{
_name->setValue( "" );
_position->setValue( 0 );
}
void SectionArtefact::init()
{
if( (int)DataTheme.artefacts.count() > _num ) {
GenericArtefactModel * artefact = DataTheme.artefacts.at( _num );
_name->setValue( artefact->getName() );
_position->setValue( artefact->getPosition() );
QString dest;
dest = IMAGE_PATH + QString( "artefacts/artefactIcon_" ) + QString::number( _num ) + QString( ".png" );
_icon->setDestination( dest );
dest = IMAGE_PATH + QString( "artefacts/artefactItem_" ) + QString::number( _num ) + QString( ".png" );
_item->setDestination( dest );
_actions->init( artefact );
}
}
void SectionArtefact::save()
{
if( (int)DataTheme.artefacts.count() > _num ) {
GenericArtefactModel * artefact = DataTheme.artefacts.at( _num );
artefact->setName( _name->getValue() );
artefact->setPosition( _position->getValue() );
_icon->save();
_item->save();
_actions->save();
}
}
void SectionArtefact::selectFirst()
{
save();
_num = 0;
init();
}
void SectionArtefact::selectPrevious()
{
save();
_num = std::max( 0, _num - 1 );
init();
}
void SectionArtefact::selectNext()
{
save();
_num = std::min( int(DataTheme.artefacts.count() - 1), _num + 1 );
init();
}
void SectionArtefact::selectLast()
{
save();
_num = DataTheme.artefacts.count() - 1;
init();
}
void SectionArtefact::selectNew()
{
save();
GenericArtefactModel * artefact = new GenericArtefactModel();
_num = DataTheme.artefacts.count();
DataTheme.artefacts.append( artefact );
clear();
}
void SectionArtefact::selectDel()
{
if( DataTheme.artefacts.count() > 0 ) {
delete DataTheme.artefacts.takeAt( _num );
_num = std::min( _num, int(DataTheme.artefacts.count() - 1) );
init();
}
}
|