File: sectionGround.cpp

package info (click to toggle)
attal 0.9.2-1.2
  • links: PTS
  • area: main
  • in suites: etch, etch-m68k
  • size: 2,992 kB
  • ctags: 5,972
  • sloc: cpp: 44,510; sh: 160; makefile: 45
file content (146 lines) | stat: -rw-r--r-- 3,379 bytes parent folder | download | duplicates (2)
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
/****************************************************************
**
** Attal : Lords of Doom
**
** sectionGround.cpp
** section for specifying grounds
**
** Version : $Id: sectionGround.cpp,v 1.5 2004/05/08 22:07:23 audoux Exp $
**
** Author(s) : Pascal Audoux
**
** Date : 02/06/2001
**
** 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 "sectionGround.h"
 
// generic include files
// include files for QT
#include <qlayout.h>
// application specific include files
#include "libCommon/dataTheme.h"
#include "libCommon/genericCell.h"
#include "libCommon/log.h"

#include "libClient/imageTheme.h"

#include "themeEditor/askDiversification.h"

extern DataTheme DataTheme;
extern ImageTheme ImageTheme;
extern QString IMAGE_PATH;


SectionGround::SectionGround( QWidget * parent, const char * name )
: GenericSection( parent, name )
{
	setTitle( tr( "Tiles" ) );

	_name = new AskString( tr( "Name: " ), _mainWidget );
	_coef = new AskInt( tr( "Coef: " ), _mainWidget );
	_color = new AskColor( tr( "Color: " ), _mainWidget );
	_diversification = new AskDiversificationList( _mainWidget );

	QVBoxLayout * layout = new QVBoxLayout( _mainWidget );
	layout->setMargin( 5 );
	layout->setSpacing( 5 );
	layout->addWidget( _name );
	layout->addWidget( _coef );
	layout->addWidget( _color );
	layout->addWidget( _diversification );
	layout->addStretch( 1 );
	layout->activate();

	_num = 1;
	init();
}

void SectionGround::clear()
{
	_name->setValue( QString( tr( "Tile " ) ) + QString::number( _num + 1 ) );
	_coef->setValue( 0 );
	_color->setValue( Qt::black );
	_diversification->clear();
}

void SectionGround::init()
{
	if( DataTheme.tiles.count() > 0 ) {
		CellModel * cell = DataTheme.tiles.at( _num );
		_name->setValue( cell->getName() );
		_coef->setValue( cell->getCoeff() );
		_color->setValue( cell->getColor() );
		_diversification->setValue( cell );
	}
}

void SectionGround::save()
{
	if( DataTheme.tiles.count() > 0 ) {
		CellModel * cell = DataTheme.tiles.at( _num );
		cell->setName( _name->getValue() );
		cell->setCoeff( _coef->getValue() );
		cell->setColor( _color->getValue() );
		_diversification->save();
	}
}

void SectionGround::selectFirst()
{
	save();
	_num = 1;
	init();
}

void SectionGround::selectPrevious()
{
	save();
	_num = QMAX( 1, _num - 1 );
	init();
}

void SectionGround::selectNext()
{
	save();
	_num = QMIN( (int)DataTheme.tiles.count() - 1, _num + 1 );
	init();
}

void SectionGround::selectLast()
{
	save();
	_num = DataTheme.tiles.count() - 1;
	init();
}

void SectionGround::selectNew()
{
	save();
	CellModel * cell = new CellModel();
	_num = DataTheme.tiles.count();
	DataTheme.tiles.append( cell );
	clear();
}

void SectionGround::selectDel()
{
	if( DataTheme.tiles.count() > 1 ) {
		DataTheme.tiles.remove( _num );
		_num = QMIN( _num, (int)DataTheme.tiles.count() - 1 );
		init();
	}
}