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
|
/* Icon View
*
* The Gtk::IconView widget is used to display and manipulate icons. It
* uses a Gtk::TreeModel for data storage, so the list store example
* might be helpful.
*
*/
#include <gtkmm.h>
#include <iostream> //For std::cout.
#include "demo-common.h" //For demo_find_file().
class Example_IconView : public Gtk::Window
{
public:
Example_IconView();
virtual ~Example_IconView();
protected:
void fill_store();
//Signal handlers:
virtual void on_button_up();
virtual void on_button_home();
virtual void on_iconview_item_activated(const Gtk::TreeModel::Path& path);
virtual int on_model_sort(const Gtk::TreeModel::iterator& a, const Gtk::TreeModel::iterator& b);
class ModelColumns : public Gtk::TreeModelColumnRecord
{
public:
Gtk::TreeModelColumn<std::string> path;
Gtk::TreeModelColumn<Glib::ustring> display_name;
Gtk::TreeModelColumn< Glib::RefPtr<Gdk::Pixbuf> > pixbuf;
Gtk::TreeModelColumn<bool> is_directory;
ModelColumns() { add(path); add(display_name); add(pixbuf); add(is_directory); }
};
const ModelColumns m_columns;
Glib::RefPtr<Gtk::ListStore> m_model;
Glib::RefPtr<Gdk::Pixbuf> m_refPixbufFile, m_refPixbufFolder;
std::string m_parent;
//Member widgets:
Gtk::Box m_VBox;
Gtk::Toolbar m_Toolbar;
Gtk::ToolButton m_ButtonUp, m_ButtonHome;
Gtk::ScrolledWindow m_ScrolledWindow;
Gtk::IconView m_IconView;
};
//Called by DemoWindow;
Gtk::Window* do_iconview()
{
return new Example_IconView();
}
Example_IconView::Example_IconView()
: m_VBox(Gtk::ORIENTATION_VERTICAL),
m_ButtonUp(),
m_ButtonHome()
{
m_ButtonUp.set_icon_name("go-up");
m_ButtonHome.set_icon_name("go-home");
set_title("Icon View");
set_default_size(650, 400);
try
{
Glib::ustring filename = demo_find_file("gnome-fs-regular.png");
m_refPixbufFile = Gdk::Pixbuf::create_from_file(filename);
filename = demo_find_file("gnome-fs-directory.png");
m_refPixbufFolder = Gdk::Pixbuf::create_from_file(filename);
}
catch(const Glib::FileError& error)
{
std::cout << error.what() << std::endl;
}
m_VBox.pack_start(m_Toolbar, Gtk::PACK_SHRINK);
m_ButtonUp.set_is_important();
m_ButtonUp.set_sensitive();
m_Toolbar.append(m_ButtonUp);
m_ButtonHome.set_is_important();
m_ButtonHome.set_sensitive();
m_Toolbar.append(m_ButtonHome);
m_ScrolledWindow.set_shadow_type(Gtk::SHADOW_ETCHED_IN);
m_ScrolledWindow.set_policy(Gtk::POLICY_AUTOMATIC, Gtk::POLICY_AUTOMATIC);
m_VBox.pack_start(m_ScrolledWindow, Gtk::PACK_EXPAND_WIDGET);
//Create the data model:
m_model = Gtk::ListStore::create(m_columns);
m_model->set_default_sort_func( sigc::mem_fun(*this, &Example_IconView::on_model_sort) );
m_model->set_sort_column(Gtk::TreeSortable::DEFAULT_SORT_COLUMN_ID, Gtk::SORT_ASCENDING);
/* and fill it with the contents of '/' */
m_parent = "/";
fill_store();
m_IconView.set_model(m_model);
m_IconView.set_selection_mode(Gtk::SELECTION_MULTIPLE);
//Connect signals:
m_ButtonUp.signal_clicked().connect( sigc::mem_fun(*this, &Example_IconView::on_button_up) );
m_ButtonHome.signal_clicked().connect( sigc::mem_fun(*this, &Example_IconView::on_button_home) );
/* We now set which model columns that correspont to the text
* and pixbuf of each item
*/
m_IconView.set_text_column(m_columns.display_name);
m_IconView.set_pixbuf_column(m_columns.pixbuf);
m_IconView.signal_item_activated().connect( sigc::mem_fun(*this, &Example_IconView::on_iconview_item_activated) );
m_ScrolledWindow.add(m_IconView);
m_IconView.grab_focus();
add(m_VBox);
show_all();
}
int Example_IconView::on_model_sort(const Gtk::TreeModel::iterator& a, const Gtk::TreeModel::iterator& b)
{
/* We need this function because we want to sort
* folders before files.
*/
Gtk::TreeModel::Row row_a = *a;
Gtk::TreeModel::Row row_b = *b;
const bool a_is_dir = row_a[m_columns.is_directory];
const bool b_is_dir = row_b[m_columns.is_directory];
if(!a_is_dir && b_is_dir)
return 1;
else if (a_is_dir && !b_is_dir)
return -1;
else
{
Glib::ustring name_a = row_a[m_columns.display_name];
return name_a.compare( row_b[m_columns.display_name] );
}
}
Example_IconView::~Example_IconView()
{
}
void Example_IconView::on_button_up()
{
m_parent = Glib::path_get_dirname(m_parent);
fill_store();
/* Maybe de-sensitize the up button */
m_ButtonUp.set_sensitive( m_parent == "/" );
}
void Example_IconView::on_button_home()
{
m_parent = Glib::get_home_dir();
fill_store();
/* De-sensitize the up button */
m_ButtonUp.set_sensitive(true);
}
void Example_IconView::fill_store()
{
/* First clear the store */
m_model->clear();
/* Now go through the directory and extract all the file
* information */
try
{
Glib::Dir dir(m_parent); //throws an exception if it fails.
std::string name = dir.read_name();
while(!name.empty())
{
/* We ignore hidden files that start with a '.' */
if (name[0] != '.')
{
std::string path = Glib::build_filename(m_parent, name);
bool is_dir = Glib::file_test(path, Glib::FILE_TEST_IS_DIR);
Glib::ustring display_name = Glib::filename_to_utf8(name);
Gtk::TreeModel::iterator iter = m_model->append();
Gtk::TreeModel::Row row = *iter;
row[m_columns.path] = path;
row[m_columns.display_name] = display_name;
row[m_columns.is_directory] = is_dir;
row[m_columns.pixbuf] = (is_dir ? m_refPixbufFolder : m_refPixbufFile);
}
name = dir.read_name();
}
}
catch(const Glib::FileError& ex)
{
std::cout << ex.what() << std::endl;
}
}
void Example_IconView::on_iconview_item_activated(const Gtk::TreeModel::Path& path)
{
Gtk::TreeModel::iterator iter = m_model->get_iter(path);
if(iter)
{
Gtk::TreeModel::Row row = *iter;
const bool is_dir = row[m_columns.is_directory];
const std::string filepath = row[m_columns.path];
if(is_dir)
{
m_parent = filepath;
fill_store();
/* Sensitize the up button */
m_ButtonUp.set_sensitive();
}
}
}
|