GstPipelineStudio/src/ui/treeview.rs
2022-02-21 08:49:31 +00:00

38 lines
1.1 KiB
Rust

// treeview.rs
//
// Copyright 2022 Stéphane Cerveau <scerveau@collabora.com>
//
// This file is part of GstPipelineStudio
//
// SPDX-License-Identifier: GPL-3.0-only
use crate::app::GPSApp;
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,
wrappable: bool,
) {
let treeview: TreeView = app
.builder
.object(tree_name)
.expect("Couldn't get tree_name");
let column = TreeViewColumn::new();
let cell = CellRendererText::new();
column.pack_start(&cell, true);
// 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);
}