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
|
/*
* Copyright (c) 2008, 2014, Oracle and/or its affiliates. All rights reserved.
*
* 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; version 2 of the
* License.
*
* 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., 51 Franklin St, Fifth Floor, Boston, MA
* 02110-1301 USA
*/
#include "mforms/mforms.h"
using namespace mforms;
//--------------------------------------------------------------------------------------------------
ListBox::ListBox(bool multi_select)
: _updating(false)
{
_listbox_impl= &ControlFactory::get_instance()->_listbox_impl;
_listbox_impl->create(this, multi_select);
}
//--------------------------------------------------------------------------------------------------
void ListBox::clear()
{
_updating= true;
_listbox_impl->clear(this);
_updating= false;
}
//--------------------------------------------------------------------------------------------------
void ListBox::set_heading(const std::string &text)
{
_listbox_impl->set_heading(this, text);
}
//--------------------------------------------------------------------------------------------------
size_t ListBox::add_item(const std::string &item)
{
return _listbox_impl->add_item(this, item);
}
//--------------------------------------------------------------------------------------------------
void ListBox::add_items(const std::list<std::string> &items)
{
_listbox_impl->add_items(this, items);
}
//--------------------------------------------------------------------------------------------------
void ListBox::remove_index(size_t index)
{
_listbox_impl->remove_index(this, index);
}
//--------------------------------------------------------------------------------------------------
void ListBox::remove_indexes(const std::vector<size_t> &indexes)
{
_listbox_impl->remove_indexes(this, indexes);
}
//--------------------------------------------------------------------------------------------------
void ListBox::set_selected(ssize_t index)
{
_updating= true;
_listbox_impl->set_index(this, index);
_updating= false;
}
//--------------------------------------------------------------------------------------------------
std::string ListBox::get_string_value()
{
return _listbox_impl->get_text(this);
}
//--------------------------------------------------------------------------------------------------
ssize_t ListBox::get_selected_index()
{
return _listbox_impl->get_index(this);
}
//--------------------------------------------------------------------------------------------------
std::vector<size_t> ListBox::get_selected_indices()
{
return _listbox_impl->get_selected_indices(this);
}
//--------------------------------------------------------------------------------------------------
void ListBox::selection_changed()
{
if (!_updating)
_signal_changed();
}
//--------------------------------------------------------------------------------------------------
size_t ListBox::get_count()
{
return _listbox_impl->get_count(this);
}
//--------------------------------------------------------------------------------------------------
std::string ListBox::get_string_value_from_index (size_t index)
{
return _listbox_impl->get_string_value_from_index(this, index);
}
|