ui: treeview: Add wrappable feature

This commit is contained in:
Patrick José Pereira 2022-02-18 08:18:28 -03:00 committed by Stéphane Cerveau
parent 39554d8d99
commit ed697a63e9

View file

@ -7,10 +7,16 @@
// SPDX-License-Identifier: GPL-3.0-only
use crate::app::GPSApp;
use gtk::prelude::TreeViewExt;
use gtk::prelude::{Cast, CellLayoutExt, CellRendererTextExt, TreeViewExt};
use gtk::{CellRendererText, TreeView, TreeViewColumn};
pub fn add_column_to_treeview(app: &GPSApp, tree_name: &str, column_name: &str, column_n: i32) {
pub fn add_column_to_treeview(
app: &GPSApp,
tree_name: &str,
column_name: &str,
column_n: i32,
wrappable: bool,
) {
let treeview: TreeView = app
.builder
.object(tree_name)
@ -21,5 +27,11 @@ pub fn add_column_to_treeview(app: &GPSApp, tree_name: &str, column_name: &str,
// Association of the view's column with the model's `id` column.
column.add_attribute(&cell, "text", column_n);
column.set_title(column_name);
if wrappable {
column.set_sizing(gtk::TreeViewColumnSizing::Autosize);
let cell: gtk::CellRendererText = column.cells()[0].clone().downcast().unwrap();
cell.set_wrap_width(1024);
}
treeview.append_column(&column);
}