2017-10-02 07:32:33 +02:00
|
|
|
/************************************************************************
|
|
|
|
* flistbox.h - Widget FListBox and FListBoxItem *
|
|
|
|
* *
|
|
|
|
* This file is part of the Final Cut widget toolkit *
|
|
|
|
* *
|
|
|
|
* Copyright 2014-2017 Markus Gans *
|
|
|
|
* *
|
|
|
|
* The Final Cut 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 3 of the License, or *
|
|
|
|
* (at your option) any later version. *
|
|
|
|
* *
|
|
|
|
* The Final Cut 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, see <http://www.gnu.org/licenses/>. *
|
|
|
|
************************************************************************/
|
|
|
|
|
|
|
|
/* Inheritance diagram
|
|
|
|
* ═══════════════════
|
|
|
|
*
|
2017-10-29 14:27:50 +01:00
|
|
|
* ▕▔▔▔▔▔▔▔▔▔▏
|
|
|
|
* ▕ FTerm ▏
|
|
|
|
* ▕▁▁▁▁▁▁▁▁▁▏
|
|
|
|
* ▲
|
|
|
|
* │
|
2017-10-02 07:32:33 +02:00
|
|
|
* ▕▔▔▔▔▔▔▔▔▔▏ ▕▔▔▔▔▔▔▔▔▔▏
|
2017-10-29 14:27:50 +01:00
|
|
|
* ▕ FVTerm ▏ ▕ FObject ▏
|
2017-10-02 07:32:33 +02:00
|
|
|
* ▕▁▁▁▁▁▁▁▁▁▏ ▕▁▁▁▁▁▁▁▁▁▏
|
|
|
|
* ▲ ▲
|
|
|
|
* │ │
|
|
|
|
* └─────┬─────┘
|
|
|
|
* │
|
|
|
|
* ▕▔▔▔▔▔▔▔▔▔▏
|
|
|
|
* ▕ FWidget ▏
|
|
|
|
* ▕▁▁▁▁▁▁▁▁▁▏
|
|
|
|
* ▲
|
|
|
|
* │
|
|
|
|
* ▕▔▔▔▔▔▔▔▔▔▔▏1 *▕▔▔▔▔▔▔▔▔▔▔▔▔▔▔▏
|
|
|
|
* ▕ FListBox ▏- - - -▕ FListBoxItem ▏
|
|
|
|
* ▕▁▁▁▁▁▁▁▁▁▁▏ ▕▁▁▁▁▁▁▁▁▁▁▁▁▁▁▏
|
|
|
|
*
|
|
|
|
*/
|
2015-05-23 13:35:12 +02:00
|
|
|
|
2017-04-09 20:08:53 +02:00
|
|
|
#ifndef FLISTBOX_H
|
|
|
|
#define FLISTBOX_H
|
2015-05-23 13:35:12 +02:00
|
|
|
|
2017-10-31 00:41:59 +01:00
|
|
|
#if !defined (USE_FINAL_H) && !defined (COMPILE_FINAL_CUT)
|
|
|
|
#error "Only <final/final.h> can be included directly."
|
|
|
|
#endif
|
|
|
|
|
2017-09-11 03:06:02 +02:00
|
|
|
#include <vector>
|
|
|
|
|
2017-09-17 21:32:46 +02:00
|
|
|
#include "final/fscrollbar.h"
|
|
|
|
#include "final/fstring.h"
|
|
|
|
#include "final/fwidget.h"
|
2015-05-23 13:35:12 +02:00
|
|
|
|
|
|
|
|
|
|
|
//----------------------------------------------------------------------
|
|
|
|
// class FListBoxItem
|
|
|
|
//----------------------------------------------------------------------
|
|
|
|
|
|
|
|
#pragma pack(push)
|
|
|
|
#pragma pack(1)
|
|
|
|
|
|
|
|
class FListBoxItem
|
|
|
|
{
|
2017-09-11 03:06:02 +02:00
|
|
|
public:
|
|
|
|
// Constructors
|
|
|
|
FListBoxItem ();
|
|
|
|
FListBoxItem (const FListBoxItem&); // copy constructor
|
|
|
|
explicit FListBoxItem (const FString&, FWidget::data_ptr = 0);
|
|
|
|
|
|
|
|
// Destructor
|
|
|
|
virtual ~FListBoxItem();
|
|
|
|
|
|
|
|
// Assignment operator (=)
|
|
|
|
FListBoxItem& operator = (const FListBoxItem&);
|
|
|
|
|
|
|
|
// Accessors
|
|
|
|
virtual FString& getText();
|
|
|
|
virtual FWidget::data_ptr getData() const;
|
|
|
|
|
|
|
|
// Mutators
|
|
|
|
void setText (const FString&);
|
|
|
|
void setData (FWidget::data_ptr);
|
|
|
|
|
2017-09-21 07:22:08 +02:00
|
|
|
// Methods
|
|
|
|
void clear();
|
|
|
|
|
2017-09-11 03:06:02 +02:00
|
|
|
private:
|
|
|
|
// Friend classes
|
|
|
|
friend class FListBox;
|
|
|
|
|
|
|
|
// Data Members
|
|
|
|
FString text;
|
|
|
|
FWidget::data_ptr data_pointer;
|
|
|
|
fc::brackets_type brackets;
|
|
|
|
bool selected;
|
2015-05-23 13:35:12 +02:00
|
|
|
};
|
|
|
|
#pragma pack(pop)
|
|
|
|
|
2016-11-02 00:37:58 +01:00
|
|
|
|
2015-05-23 13:35:12 +02:00
|
|
|
// FListBoxItem inline functions
|
|
|
|
//----------------------------------------------------------------------
|
2017-04-23 18:54:46 +02:00
|
|
|
inline FString& FListBoxItem::getText()
|
2015-09-22 04:18:20 +02:00
|
|
|
{ return text; }
|
2015-05-23 13:35:12 +02:00
|
|
|
|
2017-02-24 23:16:05 +01:00
|
|
|
//----------------------------------------------------------------------
|
|
|
|
inline FWidget::data_ptr FListBoxItem::getData() const
|
|
|
|
{ return data_pointer; }
|
|
|
|
|
2015-05-23 13:35:12 +02:00
|
|
|
//----------------------------------------------------------------------
|
2017-03-17 22:59:06 +01:00
|
|
|
inline void FListBoxItem::setText (const FString& txt)
|
2015-09-22 04:18:20 +02:00
|
|
|
{ text = txt; }
|
2015-05-23 13:35:12 +02:00
|
|
|
|
2017-02-24 00:30:07 +01:00
|
|
|
//----------------------------------------------------------------------
|
|
|
|
inline void FListBoxItem::setData (FWidget::data_ptr data)
|
|
|
|
{ data_pointer = data; }
|
|
|
|
|
2017-09-21 07:22:08 +02:00
|
|
|
//----------------------------------------------------------------------
|
|
|
|
inline void FListBoxItem::clear()
|
|
|
|
{ text.clear(); }
|
|
|
|
|
2015-05-23 13:35:12 +02:00
|
|
|
|
|
|
|
//----------------------------------------------------------------------
|
|
|
|
// class FListBox
|
|
|
|
//----------------------------------------------------------------------
|
|
|
|
|
|
|
|
#pragma pack(push)
|
|
|
|
#pragma pack(1)
|
|
|
|
|
|
|
|
class FListBox : public FWidget
|
|
|
|
{
|
2017-09-11 03:06:02 +02:00
|
|
|
public:
|
|
|
|
// Typedef
|
|
|
|
typedef std::vector<FListBoxItem> listBoxItems;
|
|
|
|
|
|
|
|
// Using-declaration
|
|
|
|
using FWidget::setGeometry;
|
|
|
|
|
|
|
|
// Constructor
|
|
|
|
explicit FListBox (FWidget* = 0);
|
|
|
|
template <class Iterator, class InsertConverter>
|
|
|
|
FListBox (Iterator, Iterator, InsertConverter, FWidget* = 0);
|
|
|
|
template <class Container, class LazyConverter>
|
|
|
|
FListBox (Container, LazyConverter, FWidget* = 0);
|
|
|
|
|
|
|
|
// Destructor
|
|
|
|
~FListBox();
|
|
|
|
|
|
|
|
// Accessors
|
|
|
|
const char* getClassName() const;
|
|
|
|
uInt getCount() const;
|
|
|
|
FListBoxItem getItem (int);
|
|
|
|
FListBoxItem getItem (listBoxItems::iterator) const;
|
|
|
|
int currentItem() const;
|
|
|
|
FString& getText();
|
|
|
|
|
|
|
|
// Mutators
|
|
|
|
void setCurrentItem (int);
|
|
|
|
void setCurrentItem (listBoxItems::iterator);
|
|
|
|
void selectItem (int);
|
|
|
|
void selectItem (listBoxItems::iterator);
|
|
|
|
void unselectItem (int);
|
|
|
|
void unselectItem (listBoxItems::iterator);
|
|
|
|
void showInsideBrackets (int, fc::brackets_type);
|
|
|
|
void showNoBrackets (int);
|
|
|
|
void showNoBrackets (listBoxItems::iterator);
|
|
|
|
void setGeometry (int, int, int, int, bool = true);
|
|
|
|
void setMultiSelection (bool);
|
|
|
|
void setMultiSelection ();
|
|
|
|
void unsetMultiSelection ();
|
|
|
|
bool setDisable();
|
|
|
|
bool setFocus (bool);
|
|
|
|
bool setFocus();
|
|
|
|
bool unsetFocus();
|
|
|
|
void setText (const FString&);
|
|
|
|
|
|
|
|
// Inquiries
|
|
|
|
bool isSelected (int);
|
|
|
|
bool isSelected (listBoxItems::iterator) const;
|
|
|
|
bool isMultiSelection() const;
|
|
|
|
bool hasBrackets (int);
|
|
|
|
bool hasBrackets (listBoxItems::iterator) const;
|
|
|
|
|
|
|
|
// Methods
|
|
|
|
void hide();
|
|
|
|
template <class Iterator, class InsertConverter>
|
|
|
|
void insert (Iterator, Iterator, InsertConverter);
|
|
|
|
template <class Container, class LazyConverter>
|
|
|
|
void insert (Container, LazyConverter);
|
|
|
|
void insert (FListBoxItem);
|
|
|
|
void insert ( const FString&
|
|
|
|
, fc::brackets_type = fc::NoBrackets
|
|
|
|
, bool = false
|
|
|
|
, data_ptr = 0 );
|
|
|
|
void insert ( long
|
|
|
|
, fc::brackets_type = fc::NoBrackets
|
|
|
|
, bool = false
|
|
|
|
, data_ptr = 0 );
|
|
|
|
void remove (int);
|
|
|
|
void clear();
|
|
|
|
|
|
|
|
// Event handlers
|
|
|
|
void onKeyPress (FKeyEvent*);
|
|
|
|
void onMouseDown (FMouseEvent*);
|
|
|
|
void onMouseUp (FMouseEvent*);
|
|
|
|
void onMouseMove (FMouseEvent*);
|
|
|
|
void onMouseDoubleClick (FMouseEvent*);
|
|
|
|
void onWheel (FWheelEvent*);
|
|
|
|
void onTimer (FTimerEvent*);
|
|
|
|
void onFocusIn (FFocusEvent*);
|
|
|
|
void onFocusOut (FFocusEvent*);
|
|
|
|
|
|
|
|
|
|
|
|
protected:
|
|
|
|
// Methods
|
|
|
|
void adjustYOffset();
|
|
|
|
void adjustSize();
|
|
|
|
|
|
|
|
private:
|
|
|
|
// Enumeration
|
|
|
|
enum convert_type
|
|
|
|
{
|
|
|
|
no_convert = 0,
|
|
|
|
direct_convert = 1,
|
|
|
|
lazy_convert = 2
|
|
|
|
};
|
|
|
|
|
|
|
|
// Disable copy constructor
|
|
|
|
FListBox (const FListBox&);
|
|
|
|
|
|
|
|
// Disable assignment operator (=)
|
|
|
|
FListBox& operator = (const FListBox&);
|
|
|
|
|
|
|
|
// Accessors
|
|
|
|
static FString& getString (listBoxItems::iterator);
|
|
|
|
|
|
|
|
// Methods
|
|
|
|
void init();
|
|
|
|
void draw();
|
|
|
|
void drawLabel();
|
|
|
|
void drawList();
|
|
|
|
void recalculateHorizontalBar (int, bool);
|
|
|
|
void recalculateVerticalBar (int);
|
|
|
|
void processClick();
|
|
|
|
void processSelect();
|
|
|
|
void processChanged();
|
|
|
|
listBoxItems::iterator index2iterator (int);
|
|
|
|
|
|
|
|
// Callback methods
|
|
|
|
void cb_VBarChange (FWidget*, data_ptr);
|
|
|
|
void cb_HBarChange (FWidget*, data_ptr);
|
|
|
|
|
|
|
|
// Function Pointer
|
|
|
|
void (*convertToItem) ( FListBoxItem&
|
|
|
|
, FWidget::data_ptr
|
|
|
|
, int index );
|
|
|
|
|
|
|
|
// Data Members
|
2017-09-15 01:31:02 +02:00
|
|
|
listBoxItems itemlist;
|
2017-09-11 03:06:02 +02:00
|
|
|
FWidget::data_ptr source_container;
|
|
|
|
convert_type conv_type;
|
|
|
|
FScrollbar* vbar;
|
|
|
|
FScrollbar* hbar;
|
|
|
|
FString text;
|
|
|
|
FString inc_search;
|
|
|
|
bool multi_select;
|
|
|
|
bool mouse_select;
|
|
|
|
fc::dragScroll drag_scroll;
|
|
|
|
bool scroll_timer;
|
|
|
|
int scroll_repeat;
|
|
|
|
int scroll_distance;
|
|
|
|
int current;
|
|
|
|
int last_current;
|
|
|
|
int secect_from_item;
|
|
|
|
int xoffset;
|
|
|
|
int yoffset;
|
|
|
|
int last_yoffset;
|
|
|
|
int nf_offset;
|
|
|
|
int max_line_width;
|
2015-05-23 13:35:12 +02:00
|
|
|
};
|
|
|
|
#pragma pack(pop)
|
|
|
|
|
|
|
|
|
|
|
|
// FListBox inline functions
|
2017-04-23 18:54:46 +02:00
|
|
|
//----------------------------------------------------------------------
|
|
|
|
template <class Iterator, class InsertConverter>
|
|
|
|
inline FListBox::FListBox ( Iterator first
|
|
|
|
, Iterator last
|
|
|
|
, InsertConverter convert
|
|
|
|
, FWidget* parent )
|
|
|
|
: FWidget(parent)
|
2017-05-19 22:16:50 +02:00
|
|
|
, convertToItem(0)
|
2017-09-15 01:31:02 +02:00
|
|
|
, itemlist()
|
2017-05-19 22:16:50 +02:00
|
|
|
, source_container(0)
|
|
|
|
, conv_type(FListBox::no_convert)
|
2017-04-23 18:54:46 +02:00
|
|
|
, vbar(0)
|
|
|
|
, hbar(0)
|
|
|
|
, text()
|
|
|
|
, inc_search()
|
|
|
|
, multi_select(false)
|
|
|
|
, mouse_select(false)
|
2017-06-18 19:36:22 +02:00
|
|
|
, drag_scroll(fc::noScroll)
|
2017-04-23 18:54:46 +02:00
|
|
|
, scroll_timer(false)
|
|
|
|
, scroll_repeat(100)
|
|
|
|
, scroll_distance(1)
|
|
|
|
, current(0)
|
|
|
|
, last_current(-1)
|
|
|
|
, secect_from_item(-1)
|
|
|
|
, xoffset(0)
|
|
|
|
, yoffset(0)
|
|
|
|
, last_yoffset(-1)
|
|
|
|
, nf_offset(0)
|
|
|
|
, max_line_width(0)
|
|
|
|
{
|
|
|
|
init();
|
|
|
|
|
|
|
|
while ( first != last )
|
|
|
|
{
|
|
|
|
insert(convert(first), fc::NoBrackets, false, &(*first));
|
|
|
|
++first;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2017-05-19 22:47:13 +02:00
|
|
|
//----------------------------------------------------------------------
|
|
|
|
template <class Container, class LazyConverter>
|
|
|
|
inline FListBox::FListBox ( Container container
|
|
|
|
, LazyConverter convert
|
|
|
|
, FWidget* parent )
|
|
|
|
: FWidget(parent)
|
|
|
|
, convertToItem(0)
|
2017-09-15 01:31:02 +02:00
|
|
|
, itemlist()
|
2017-05-19 22:47:13 +02:00
|
|
|
, source_container(0)
|
|
|
|
, conv_type(FListBox::no_convert)
|
|
|
|
, vbar(0)
|
|
|
|
, hbar(0)
|
|
|
|
, text()
|
|
|
|
, inc_search()
|
|
|
|
, multi_select(false)
|
|
|
|
, mouse_select(false)
|
2017-06-18 19:36:22 +02:00
|
|
|
, drag_scroll(fc::noScroll)
|
2017-05-19 22:47:13 +02:00
|
|
|
, scroll_timer(false)
|
|
|
|
, scroll_repeat(100)
|
|
|
|
, scroll_distance(1)
|
|
|
|
, current(0)
|
|
|
|
, last_current(-1)
|
|
|
|
, secect_from_item(-1)
|
|
|
|
, xoffset(0)
|
|
|
|
, yoffset(0)
|
|
|
|
, last_yoffset(-1)
|
|
|
|
, nf_offset(0)
|
|
|
|
, max_line_width(0)
|
|
|
|
{
|
|
|
|
init();
|
|
|
|
insert (container, convert);
|
|
|
|
}
|
|
|
|
|
2015-05-23 13:35:12 +02:00
|
|
|
//----------------------------------------------------------------------
|
|
|
|
inline const char* FListBox::getClassName() const
|
|
|
|
{ return "FListBox"; }
|
|
|
|
|
|
|
|
//----------------------------------------------------------------------
|
2016-11-02 00:37:58 +01:00
|
|
|
inline uInt FListBox::getCount() const
|
2017-09-15 01:31:02 +02:00
|
|
|
{ return uInt(itemlist.size()); }
|
2015-05-23 13:35:12 +02:00
|
|
|
|
|
|
|
//----------------------------------------------------------------------
|
2017-08-01 00:56:12 +02:00
|
|
|
inline FListBoxItem FListBox::getItem (int index)
|
2017-04-23 18:54:46 +02:00
|
|
|
{
|
|
|
|
listBoxItems::iterator iter = index2iterator(index - 1);
|
|
|
|
return *iter;
|
|
|
|
}
|
|
|
|
|
|
|
|
//----------------------------------------------------------------------
|
|
|
|
inline FListBoxItem FListBox::getItem (listBoxItems::iterator iter) const
|
|
|
|
{ return *iter; }
|
2015-05-23 13:35:12 +02:00
|
|
|
|
|
|
|
//----------------------------------------------------------------------
|
|
|
|
inline int FListBox::currentItem() const
|
|
|
|
{ return current; }
|
|
|
|
|
2016-11-02 00:37:58 +01:00
|
|
|
//----------------------------------------------------------------------
|
|
|
|
inline FString& FListBox::getText()
|
|
|
|
{ return text; }
|
|
|
|
|
2015-05-23 13:35:12 +02:00
|
|
|
//----------------------------------------------------------------------
|
|
|
|
inline void FListBox::selectItem (int index)
|
2017-04-23 18:54:46 +02:00
|
|
|
{ index2iterator(index - 1)->selected = true; }
|
|
|
|
|
|
|
|
//----------------------------------------------------------------------
|
|
|
|
inline void FListBox::selectItem (listBoxItems::iterator iter)
|
|
|
|
{ iter->selected = true; }
|
2015-05-23 13:35:12 +02:00
|
|
|
|
|
|
|
//----------------------------------------------------------------------
|
|
|
|
inline void FListBox::unselectItem (int index)
|
2017-04-23 18:54:46 +02:00
|
|
|
{ index2iterator(index - 1)->selected = false; }
|
|
|
|
|
|
|
|
//----------------------------------------------------------------------
|
|
|
|
inline void FListBox::unselectItem (listBoxItems::iterator iter)
|
|
|
|
{ iter->selected = false; }
|
|
|
|
|
|
|
|
//----------------------------------------------------------------------
|
|
|
|
inline void FListBox::showNoBrackets (int index)
|
|
|
|
{ index2iterator(index - 1)->brackets = fc::NoBrackets; }
|
2015-05-23 13:35:12 +02:00
|
|
|
|
|
|
|
//----------------------------------------------------------------------
|
2017-04-23 18:54:46 +02:00
|
|
|
inline void FListBox::showNoBrackets (listBoxItems::iterator iter)
|
|
|
|
{ iter->brackets = fc::NoBrackets; }
|
2015-05-23 13:35:12 +02:00
|
|
|
|
|
|
|
//----------------------------------------------------------------------
|
|
|
|
inline void FListBox::setMultiSelection (bool on)
|
2016-09-27 00:46:05 +02:00
|
|
|
{ multi_select = on; }
|
2015-05-23 13:35:12 +02:00
|
|
|
|
|
|
|
//----------------------------------------------------------------------
|
|
|
|
inline void FListBox::setMultiSelection()
|
|
|
|
{ setMultiSelection(true); }
|
|
|
|
|
|
|
|
//----------------------------------------------------------------------
|
|
|
|
inline void FListBox::unsetMultiSelection()
|
|
|
|
{ setMultiSelection(false); }
|
|
|
|
|
|
|
|
//----------------------------------------------------------------------
|
|
|
|
inline bool FListBox::setDisable()
|
|
|
|
{ return setEnable(false); }
|
|
|
|
|
|
|
|
//----------------------------------------------------------------------
|
|
|
|
inline bool FListBox::setFocus()
|
|
|
|
{ return setFocus(true); }
|
|
|
|
|
|
|
|
//----------------------------------------------------------------------
|
|
|
|
inline bool FListBox::unsetFocus()
|
|
|
|
{ return setFocus(false); }
|
|
|
|
|
|
|
|
//----------------------------------------------------------------------
|
2017-04-23 18:54:46 +02:00
|
|
|
inline bool FListBox::isSelected (int index)
|
|
|
|
{ return index2iterator(index - 1)->selected; }
|
|
|
|
|
|
|
|
//----------------------------------------------------------------------
|
|
|
|
inline bool FListBox::isSelected (listBoxItems::iterator iter) const
|
|
|
|
{ return iter->selected; }
|
2016-11-02 00:37:58 +01:00
|
|
|
|
|
|
|
//----------------------------------------------------------------------
|
|
|
|
inline bool FListBox::isMultiSelection() const
|
|
|
|
{ return multi_select; }
|
|
|
|
|
|
|
|
//----------------------------------------------------------------------
|
2017-04-23 18:54:46 +02:00
|
|
|
inline bool FListBox::hasBrackets(int index)
|
|
|
|
{ return bool(index2iterator(index - 1)->brackets > 0); }
|
|
|
|
|
|
|
|
//----------------------------------------------------------------------
|
|
|
|
inline bool FListBox::hasBrackets(listBoxItems::iterator iter) const
|
|
|
|
{ return bool(iter->brackets > 0); }
|
|
|
|
|
|
|
|
//----------------------------------------------------------------------
|
|
|
|
template <class Iterator, class InsertConverter>
|
|
|
|
inline void FListBox::insert ( Iterator first
|
|
|
|
, Iterator last
|
|
|
|
, InsertConverter convert )
|
|
|
|
{
|
2017-05-19 22:16:50 +02:00
|
|
|
conv_type = direct_convert;
|
|
|
|
|
2017-04-23 18:54:46 +02:00
|
|
|
while ( first != last )
|
|
|
|
{
|
|
|
|
insert (convert(first), fc::NoBrackets, false, &(*first));
|
|
|
|
++first;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2017-05-19 22:16:50 +02:00
|
|
|
//----------------------------------------------------------------------
|
|
|
|
template <class Container, class LazyConverter>
|
|
|
|
void FListBox::insert (Container container, LazyConverter convert)
|
|
|
|
{
|
|
|
|
conv_type = lazy_convert;
|
|
|
|
source_container = container;
|
|
|
|
convertToItem = convert;
|
|
|
|
size_t size = container->size();
|
|
|
|
|
|
|
|
if ( size > 0 )
|
2017-09-15 01:31:02 +02:00
|
|
|
itemlist.resize(size);
|
2017-05-20 22:43:55 +02:00
|
|
|
|
|
|
|
recalculateVerticalBar(int(size));
|
2017-05-19 22:16:50 +02:00
|
|
|
}
|
|
|
|
|
2017-04-23 18:54:46 +02:00
|
|
|
//----------------------------------------------------------------------
|
|
|
|
inline FListBox::listBoxItems::iterator FListBox::index2iterator (int index)
|
|
|
|
{
|
2017-09-15 01:31:02 +02:00
|
|
|
listBoxItems::iterator iter = itemlist.begin();
|
2017-04-23 18:54:46 +02:00
|
|
|
std::advance (iter, index);
|
|
|
|
return iter;
|
|
|
|
}
|
2015-05-23 13:35:12 +02:00
|
|
|
|
2017-04-09 20:08:53 +02:00
|
|
|
#endif // FLISTBOX_H
|