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
|
/* gtkmm example Copyright (C) 2002 gtkmm development team
*
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License version 2
* as published by the Free Software Foundation.
*
* 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 "messageslist.h"
MessagesList::MessagesList()
{
/* Create a new scrolled window, with scrollbars only if needed */
set_policy(Gtk::PolicyType::AUTOMATIC, Gtk::PolicyType::AUTOMATIC);
set_child(m_ListView);
/* create list store */
m_refStringList = Gtk::StringList::create({});
auto selection_model = Gtk::SingleSelection::create(m_refStringList);
m_ListView.set_model(selection_model);
/* Add some messages to the window */
for (int i = 1; i <= 10; ++i)
m_refStringList->append(Glib::ustring::format("message #", i));
// Create a ListItemFactory to use for populating list items.
auto factory = Gtk::SignalListItemFactory::create();
factory->signal_setup().connect(sigc::mem_fun(*this, &MessagesList::on_setup_message));
factory->signal_bind().connect(sigc::mem_fun(*this, &MessagesList::on_bind_message));
m_ListView.set_factory(factory);
}
MessagesList::~MessagesList()
{
}
void MessagesList::on_setup_message(const Glib::RefPtr<Gtk::ListItem>& list_item)
{
auto label = Gtk::make_managed<Gtk::Label>();
label->set_halign(Gtk::Align::START);
list_item->set_child(*label);
}
void MessagesList::on_bind_message(const Glib::RefPtr<Gtk::ListItem>& list_item)
{
auto pos = list_item->get_position();
if (pos == GTK_INVALID_LIST_POSITION)
return;
auto label = dynamic_cast<Gtk::Label*>(list_item->get_child());
if (!label)
return;
label->set_text(m_refStringList->get_string(pos));
}
|