-
Notifications
You must be signed in to change notification settings - Fork 2
/
uicore_DropDownBox.cpp
326 lines (256 loc) · 7.61 KB
/
uicore_DropDownBox.cpp
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
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
/*
Copyright (C) 2007 Will Franklin
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
Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
*/
#include "uicore_Global.h"
#include "uiwsw_Utils.h"
using namespace UIWsw;
namespace UICore
{
ALLOCATOR_DEFINITION( DropDownBox );
DELETER_DEFINITION( DropDownBox );
void DropDownBox::Initialize( void )
{
current = Factory::newButton( this, 0, 0, 0, 0 );
current->setAlign( ALIGN_MIDDLE_LEFT );
current->setClickHandler( expandHandler );
current->setBorderWidth( 0 );
expand = Factory::newButton( this, 0, 0, 0, 0 );
expand->setClickHandler( expandHandler );
expand->setBorderWidth( 0 );
setTitle( "" );
setBackColor( Color( 1.0f, 1.0f, 1.0f, 0.0f ) );
showList( false );
expanded = false;
}
DropDownBox::DropDownBox()
: ListBox()
{
Initialize();
}
DropDownBox::DropDownBox( BaseObject *parent, float x, float y, float w, float h, float listh, std::string title )
: ListBox( NULL, x, y, w, h, false )
{
Initialize();
setParent( parent );
setTitle( title );
setSize( w, h );
setListHeight( listh );
current->setSize( w - scrollbarSize + 1, h );
// overlap slightly
expand->setPosition( w - scrollbarSize, 0 );
expand->setSize( scrollbarSize, h );
}
DropDownBox::~DropDownBox( void )
{
delete current;
delete expand;
}
void DropDownBox::updateItemPositions( void )
{
std::list<ListItem*>::iterator it;
int pos = -scrollbar->getCurValue();
for( it = items.begin() ; it != items.end() ; it++, pos++ )
{
if( pos < 0 || pos >= floor( ( position.h - height ) / itemSize ) )
{
(*it)->setVisible( false );
continue;
}
(*it)->setPosition( 0, pos * itemSize + height );
(*it)->setVisible( true );
}
}
void DropDownBox::updateScrollbarBounds( void )
{
float listSize;
listSize = max( 0.0f, getHeight() - 2 * getBorderWidth() - height );
if ( signed(items.size()) * itemSize > listSize )
{
scrollbar->setMaxValue( max( 0, signed(items.size()) - int(listSize / itemSize) - 1 ) );
scrollbar->setBarClickStepValue( max( 1, int(listSize / itemSize) - 1 ) );
}
}
int DropDownBox::addItem( ListItem *item, int position, bool deletePrevious )
{
int ret = ListBox::addItem( item, position, deletePrevious );
if( ret != -1 )
{
item->setAlign( ALIGN_MIDDLE_LEFT );
item->setSwitchHandler( ItemSwitch );
}
return ret;
}
bool DropDownBox::selectItem( int position )
{
return selectItem( getItem( position ) );
}
bool DropDownBox::selectItem( ListItem *item )
{
// selectItem might call unselectItem, caption must be set after this
bool ret = ListBox::selectItem( item );
if( ret )
current->setCaption( item->getCaption() );
return ret;
}
bool DropDownBox::unselectItem( int position )
{
return unselectItem( getItem( position ) );
}
bool DropDownBox::unselectItem( ListItem *item )
{
current->setCaption( getTitle() );
return ListBox::unselectItem( item );
}
void DropDownBox::showList( bool show )
{
// Image img;
// const char *pic = (show) ? "gfx/ui/arrow_up" : "gfx/ui/arrow_down";
expanded = show;
setSize( getWidth(), height );
//expand->setEnabled( !show );
// img = Trap::R_RegisterPic( (char*)pic );
// expand->setHighlightImage( img );
// expand->setBackgroundImage( img );
}
void DropDownBox::setSize( float w, float h )
{
if( expanded )
ListBox::setSize( w, h + listheight );
else
ListBox::setSize( w, h );
scrollbar->setPosition( w - scrollbarSize, h - 1 );
scrollbar->setSize( scrollbarSize, listheight );
height = h;
}
void DropDownBox::setListHeight( float listh )
{
listheight = listh;
// this will make the new list height come into effect
setSize( getWidth(), height );
}
void DropDownBox::setTitle( std::string title )
{
if( selectedItems.empty() )
current->setCaption( title );
this->title = title;
}
void DropDownBox::expandHandler( BaseObject *target )
{
DropDownBox *dropDownBox = static_cast<DropDownBox *>( target->getParent() );
dropDownBox->showList( !dropDownBox->expanded );
}
void DropDownBox::LostFocusHandler( BaseObject *target )
{
DropDownBox *dropDownBox = static_cast<DropDownBox *>( target );
dropDownBox->showList( false );
ListBox::LostFocusHandler( target );
}
void DropDownBox::ItemSwitch( BaseObject *target, bool newValue )
{
DropDownBox *dropDownBox = static_cast<DropDownBox *>( target->getParent() );
dropDownBox->showList( false );
ListBox::ItemSwitch( target, newValue );
}
std::string DropDownBox::getTitle( void ) const
{
return title;
}
std::string DropDownBox::getType( void ) const
{
return UICORE_TYPE_DROPDOWNBOX;
}
void DropDownBox::Draw( unsigned int deltatime, const Rect *parentPos, const Rect *parentPosSrc, bool enabled )
{
BaseObject::Draw( deltatime, parentPos, parentPosSrc, enabled );
/*
Rect expandPosSrc, expandPosDest;
expand->FitPosition( parentPos, parentPosSrc, expandPosSrc, expandPosDest );
if ( expand == focusedObject )
{
}
else
{
if( expandArrow )
Importer::DrawImage( expandArrow, expandPosSrc, expandPosDest, expand->getBackColor() );
}*/
}
// Button
void DropDownBox::setButtonBackColor( const Color &color )
{
expand->setBackColor( color );
}
void DropDownBox::setButtonBorderColor( const Color &color )
{
expand->setBorderColor( color );
}
void DropDownBox::setButtonDisabledColor( const Color &color )
{
expand->setDisabledColor( color );
}
void DropDownBox::setButtonBackgroundImage( Image image )
{
expand->setBackgroundImage( image );
//expandArrow = image;
}
void DropDownBox::setButtonDisabledImage( Image image )
{
expand->setDisabledImage( image );
}
void DropDownBox::setButtonBorderWidth( const float width )
{
expand->setBorderWidth( width );
}
void DropDownBox::setButtonHighlightColor( const Color &color )
{
expand->setHighlightColor( color );
}
void DropDownBox::setButtonHighlightImage( Image image )
{
expand->setHighlightImage( image );
// expandHighlightArrow = image;
}
// Button
Color DropDownBox::getButtonBackColor( void ) const
{
return expand->getBackColor();
}
Color DropDownBox::getButtonBorderColor( void ) const
{
return expand->getBorderColor();
}
Color DropDownBox::getButtonDisabledColor( void ) const
{
return expand->getDisabledColor();
}
Image DropDownBox::getButtonBackgroundImage( void ) const
{
return expand->getBackgroundImage();
}
Image DropDownBox::getButtonDisabledImage( void ) const
{
return expand->getDisabledImage();
}
float DropDownBox::getButtonBorderWidth( void ) const
{
return expand->getBorderWidth();
}
Color DropDownBox::getButtonHighlightColor( void ) const
{
return expand->getHighlightColor();
}
Image DropDownBox::getButtonHighlightImage( void ) const
{
return expand->getHighlightImage();
}
}