use crate::{
ffi, Accessible, AccessibleRole, Adjustment, Align, Buildable, ColumnViewColumn,
ConstraintTarget, LayoutManager, Overflow, Scrollable, ScrollablePolicy, SelectionModel,
SortType, Sorter, Widget,
};
#[cfg(feature = "v4_12")]
#[cfg_attr(docsrs, doc(cfg(feature = "v4_12")))]
use crate::{ListItemFactory, ListScrollFlags, ListTabBehavior, ScrollInfo};
use glib::{
prelude::*,
signal::{connect_raw, SignalHandlerId},
translate::*,
};
use std::boxed::Box as Box_;
glib::wrapper! {
#[doc(alias = "GtkColumnView")]
pub struct ColumnView(Object<ffi::GtkColumnView, ffi::GtkColumnViewClass>) @extends Widget, @implements Accessible, Buildable, ConstraintTarget, Scrollable;
match fn {
type_ => || ffi::gtk_column_view_get_type(),
}
}
impl ColumnView {
#[doc(alias = "gtk_column_view_new")]
pub fn new(model: Option<impl IsA<SelectionModel>>) -> ColumnView {
assert_initialized_main_thread!();
unsafe {
Widget::from_glib_none(ffi::gtk_column_view_new(
model.map(|p| p.upcast()).into_glib_ptr(),
))
.unsafe_cast()
}
}
pub fn builder() -> ColumnViewBuilder {
ColumnViewBuilder::new()
}
#[doc(alias = "gtk_column_view_append_column")]
pub fn append_column(&self, column: &ColumnViewColumn) {
unsafe {
ffi::gtk_column_view_append_column(self.to_glib_none().0, column.to_glib_none().0);
}
}
#[doc(alias = "gtk_column_view_get_columns")]
#[doc(alias = "get_columns")]
pub fn columns(&self) -> gio::ListModel {
unsafe { from_glib_none(ffi::gtk_column_view_get_columns(self.to_glib_none().0)) }
}
#[doc(alias = "gtk_column_view_get_enable_rubberband")]
#[doc(alias = "get_enable_rubberband")]
#[doc(alias = "enable-rubberband")]
pub fn enables_rubberband(&self) -> bool {
unsafe {
from_glib(ffi::gtk_column_view_get_enable_rubberband(
self.to_glib_none().0,
))
}
}
#[cfg(feature = "v4_12")]
#[cfg_attr(docsrs, doc(cfg(feature = "v4_12")))]
#[doc(alias = "gtk_column_view_get_header_factory")]
#[doc(alias = "get_header_factory")]
#[doc(alias = "header-factory")]
pub fn header_factory(&self) -> Option<ListItemFactory> {
unsafe {
from_glib_none(ffi::gtk_column_view_get_header_factory(
self.to_glib_none().0,
))
}
}
#[doc(alias = "gtk_column_view_get_model")]
#[doc(alias = "get_model")]
pub fn model(&self) -> Option<SelectionModel> {
unsafe { from_glib_none(ffi::gtk_column_view_get_model(self.to_glib_none().0)) }
}
#[doc(alias = "gtk_column_view_get_reorderable")]
#[doc(alias = "get_reorderable")]
#[doc(alias = "reorderable")]
pub fn is_reorderable(&self) -> bool {
unsafe { from_glib(ffi::gtk_column_view_get_reorderable(self.to_glib_none().0)) }
}
#[cfg(feature = "v4_12")]
#[cfg_attr(docsrs, doc(cfg(feature = "v4_12")))]
#[doc(alias = "gtk_column_view_get_row_factory")]
#[doc(alias = "get_row_factory")]
#[doc(alias = "row-factory")]
pub fn row_factory(&self) -> Option<ListItemFactory> {
unsafe { from_glib_none(ffi::gtk_column_view_get_row_factory(self.to_glib_none().0)) }
}
#[doc(alias = "gtk_column_view_get_show_column_separators")]
#[doc(alias = "get_show_column_separators")]
#[doc(alias = "show-column-separators")]
pub fn shows_column_separators(&self) -> bool {
unsafe {
from_glib(ffi::gtk_column_view_get_show_column_separators(
self.to_glib_none().0,
))
}
}
#[doc(alias = "gtk_column_view_get_show_row_separators")]
#[doc(alias = "get_show_row_separators")]
#[doc(alias = "show-row-separators")]
pub fn shows_row_separators(&self) -> bool {
unsafe {
from_glib(ffi::gtk_column_view_get_show_row_separators(
self.to_glib_none().0,
))
}
}
#[doc(alias = "gtk_column_view_get_single_click_activate")]
#[doc(alias = "get_single_click_activate")]
#[doc(alias = "single-click-activate")]
pub fn is_single_click_activate(&self) -> bool {
unsafe {
from_glib(ffi::gtk_column_view_get_single_click_activate(
self.to_glib_none().0,
))
}
}
#[doc(alias = "gtk_column_view_get_sorter")]
#[doc(alias = "get_sorter")]
pub fn sorter(&self) -> Option<Sorter> {
unsafe { from_glib_none(ffi::gtk_column_view_get_sorter(self.to_glib_none().0)) }
}
#[cfg(feature = "v4_12")]
#[cfg_attr(docsrs, doc(cfg(feature = "v4_12")))]
#[doc(alias = "gtk_column_view_get_tab_behavior")]
#[doc(alias = "get_tab_behavior")]
#[doc(alias = "tab-behavior")]
pub fn tab_behavior(&self) -> ListTabBehavior {
unsafe { from_glib(ffi::gtk_column_view_get_tab_behavior(self.to_glib_none().0)) }
}
#[doc(alias = "gtk_column_view_insert_column")]
pub fn insert_column(&self, position: u32, column: &ColumnViewColumn) {
unsafe {
ffi::gtk_column_view_insert_column(
self.to_glib_none().0,
position,
column.to_glib_none().0,
);
}
}
#[doc(alias = "gtk_column_view_remove_column")]
pub fn remove_column(&self, column: &ColumnViewColumn) {
unsafe {
ffi::gtk_column_view_remove_column(self.to_glib_none().0, column.to_glib_none().0);
}
}
#[cfg(feature = "v4_12")]
#[cfg_attr(docsrs, doc(cfg(feature = "v4_12")))]
#[doc(alias = "gtk_column_view_scroll_to")]
pub fn scroll_to(
&self,
pos: u32,
column: Option<&ColumnViewColumn>,
flags: ListScrollFlags,
scroll: Option<ScrollInfo>,
) {
unsafe {
ffi::gtk_column_view_scroll_to(
self.to_glib_none().0,
pos,
column.to_glib_none().0,
flags.into_glib(),
scroll.into_glib_ptr(),
);
}
}
#[doc(alias = "gtk_column_view_set_enable_rubberband")]
#[doc(alias = "enable-rubberband")]
pub fn set_enable_rubberband(&self, enable_rubberband: bool) {
unsafe {
ffi::gtk_column_view_set_enable_rubberband(
self.to_glib_none().0,
enable_rubberband.into_glib(),
);
}
}
#[cfg(feature = "v4_12")]
#[cfg_attr(docsrs, doc(cfg(feature = "v4_12")))]
#[doc(alias = "gtk_column_view_set_header_factory")]
#[doc(alias = "header-factory")]
pub fn set_header_factory(&self, factory: Option<&impl IsA<ListItemFactory>>) {
unsafe {
ffi::gtk_column_view_set_header_factory(
self.to_glib_none().0,
factory.map(|p| p.as_ref()).to_glib_none().0,
);
}
}
#[doc(alias = "gtk_column_view_set_model")]
#[doc(alias = "model")]
pub fn set_model(&self, model: Option<&impl IsA<SelectionModel>>) {
unsafe {
ffi::gtk_column_view_set_model(
self.to_glib_none().0,
model.map(|p| p.as_ref()).to_glib_none().0,
);
}
}
#[doc(alias = "gtk_column_view_set_reorderable")]
#[doc(alias = "reorderable")]
pub fn set_reorderable(&self, reorderable: bool) {
unsafe {
ffi::gtk_column_view_set_reorderable(self.to_glib_none().0, reorderable.into_glib());
}
}
#[cfg(feature = "v4_12")]
#[cfg_attr(docsrs, doc(cfg(feature = "v4_12")))]
#[doc(alias = "gtk_column_view_set_row_factory")]
#[doc(alias = "row-factory")]
pub fn set_row_factory(&self, factory: Option<&impl IsA<ListItemFactory>>) {
unsafe {
ffi::gtk_column_view_set_row_factory(
self.to_glib_none().0,
factory.map(|p| p.as_ref()).to_glib_none().0,
);
}
}
#[doc(alias = "gtk_column_view_set_show_column_separators")]
#[doc(alias = "show-column-separators")]
pub fn set_show_column_separators(&self, show_column_separators: bool) {
unsafe {
ffi::gtk_column_view_set_show_column_separators(
self.to_glib_none().0,
show_column_separators.into_glib(),
);
}
}
#[doc(alias = "gtk_column_view_set_show_row_separators")]
#[doc(alias = "show-row-separators")]
pub fn set_show_row_separators(&self, show_row_separators: bool) {
unsafe {
ffi::gtk_column_view_set_show_row_separators(
self.to_glib_none().0,
show_row_separators.into_glib(),
);
}
}
#[doc(alias = "gtk_column_view_set_single_click_activate")]
#[doc(alias = "single-click-activate")]
pub fn set_single_click_activate(&self, single_click_activate: bool) {
unsafe {
ffi::gtk_column_view_set_single_click_activate(
self.to_glib_none().0,
single_click_activate.into_glib(),
);
}
}
#[cfg(feature = "v4_12")]
#[cfg_attr(docsrs, doc(cfg(feature = "v4_12")))]
#[doc(alias = "gtk_column_view_set_tab_behavior")]
#[doc(alias = "tab-behavior")]
pub fn set_tab_behavior(&self, tab_behavior: ListTabBehavior) {
unsafe {
ffi::gtk_column_view_set_tab_behavior(self.to_glib_none().0, tab_behavior.into_glib());
}
}
#[doc(alias = "gtk_column_view_sort_by_column")]
pub fn sort_by_column(&self, column: Option<&ColumnViewColumn>, direction: SortType) {
unsafe {
ffi::gtk_column_view_sort_by_column(
self.to_glib_none().0,
column.to_glib_none().0,
direction.into_glib(),
);
}
}
#[doc(alias = "activate")]
pub fn connect_activate<F: Fn(&Self, u32) + 'static>(&self, f: F) -> SignalHandlerId {
unsafe extern "C" fn activate_trampoline<F: Fn(&ColumnView, u32) + 'static>(
this: *mut ffi::GtkColumnView,
position: std::ffi::c_uint,
f: glib::ffi::gpointer,
) {
let f: &F = &*(f as *const F);
f(&from_glib_borrow(this), position)
}
unsafe {
let f: Box_<F> = Box_::new(f);
connect_raw(
self.as_ptr() as *mut _,
b"activate\0".as_ptr() as *const _,
Some(std::mem::transmute::<*const (), unsafe extern "C" fn()>(
activate_trampoline::<F> as *const (),
)),
Box_::into_raw(f),
)
}
}
#[doc(alias = "columns")]
pub fn connect_columns_notify<F: Fn(&Self) + 'static>(&self, f: F) -> SignalHandlerId {
unsafe extern "C" fn notify_columns_trampoline<F: Fn(&ColumnView) + 'static>(
this: *mut ffi::GtkColumnView,
_param_spec: glib::ffi::gpointer,
f: glib::ffi::gpointer,
) {
let f: &F = &*(f as *const F);
f(&from_glib_borrow(this))
}
unsafe {
let f: Box_<F> = Box_::new(f);
connect_raw(
self.as_ptr() as *mut _,
b"notify::columns\0".as_ptr() as *const _,
Some(std::mem::transmute::<*const (), unsafe extern "C" fn()>(
notify_columns_trampoline::<F> as *const (),
)),
Box_::into_raw(f),
)
}
}
#[doc(alias = "enable-rubberband")]
pub fn connect_enable_rubberband_notify<F: Fn(&Self) + 'static>(
&self,
f: F,
) -> SignalHandlerId {
unsafe extern "C" fn notify_enable_rubberband_trampoline<F: Fn(&ColumnView) + 'static>(
this: *mut ffi::GtkColumnView,
_param_spec: glib::ffi::gpointer,
f: glib::ffi::gpointer,
) {
let f: &F = &*(f as *const F);
f(&from_glib_borrow(this))
}
unsafe {
let f: Box_<F> = Box_::new(f);
connect_raw(
self.as_ptr() as *mut _,
b"notify::enable-rubberband\0".as_ptr() as *const _,
Some(std::mem::transmute::<*const (), unsafe extern "C" fn()>(
notify_enable_rubberband_trampoline::<F> as *const (),
)),
Box_::into_raw(f),
)
}
}
#[cfg(feature = "v4_12")]
#[cfg_attr(docsrs, doc(cfg(feature = "v4_12")))]
#[doc(alias = "header-factory")]
pub fn connect_header_factory_notify<F: Fn(&Self) + 'static>(&self, f: F) -> SignalHandlerId {
unsafe extern "C" fn notify_header_factory_trampoline<F: Fn(&ColumnView) + 'static>(
this: *mut ffi::GtkColumnView,
_param_spec: glib::ffi::gpointer,
f: glib::ffi::gpointer,
) {
let f: &F = &*(f as *const F);
f(&from_glib_borrow(this))
}
unsafe {
let f: Box_<F> = Box_::new(f);
connect_raw(
self.as_ptr() as *mut _,
b"notify::header-factory\0".as_ptr() as *const _,
Some(std::mem::transmute::<*const (), unsafe extern "C" fn()>(
notify_header_factory_trampoline::<F> as *const (),
)),
Box_::into_raw(f),
)
}
}
#[doc(alias = "model")]
pub fn connect_model_notify<F: Fn(&Self) + 'static>(&self, f: F) -> SignalHandlerId {
unsafe extern "C" fn notify_model_trampoline<F: Fn(&ColumnView) + 'static>(
this: *mut ffi::GtkColumnView,
_param_spec: glib::ffi::gpointer,
f: glib::ffi::gpointer,
) {
let f: &F = &*(f as *const F);
f(&from_glib_borrow(this))
}
unsafe {
let f: Box_<F> = Box_::new(f);
connect_raw(
self.as_ptr() as *mut _,
b"notify::model\0".as_ptr() as *const _,
Some(std::mem::transmute::<*const (), unsafe extern "C" fn()>(
notify_model_trampoline::<F> as *const (),
)),
Box_::into_raw(f),
)
}
}
#[doc(alias = "reorderable")]
pub fn connect_reorderable_notify<F: Fn(&Self) + 'static>(&self, f: F) -> SignalHandlerId {
unsafe extern "C" fn notify_reorderable_trampoline<F: Fn(&ColumnView) + 'static>(
this: *mut ffi::GtkColumnView,
_param_spec: glib::ffi::gpointer,
f: glib::ffi::gpointer,
) {
let f: &F = &*(f as *const F);
f(&from_glib_borrow(this))
}
unsafe {
let f: Box_<F> = Box_::new(f);
connect_raw(
self.as_ptr() as *mut _,
b"notify::reorderable\0".as_ptr() as *const _,
Some(std::mem::transmute::<*const (), unsafe extern "C" fn()>(
notify_reorderable_trampoline::<F> as *const (),
)),
Box_::into_raw(f),
)
}
}
#[cfg(feature = "v4_12")]
#[cfg_attr(docsrs, doc(cfg(feature = "v4_12")))]
#[doc(alias = "row-factory")]
pub fn connect_row_factory_notify<F: Fn(&Self) + 'static>(&self, f: F) -> SignalHandlerId {
unsafe extern "C" fn notify_row_factory_trampoline<F: Fn(&ColumnView) + 'static>(
this: *mut ffi::GtkColumnView,
_param_spec: glib::ffi::gpointer,
f: glib::ffi::gpointer,
) {
let f: &F = &*(f as *const F);
f(&from_glib_borrow(this))
}
unsafe {
let f: Box_<F> = Box_::new(f);
connect_raw(
self.as_ptr() as *mut _,
b"notify::row-factory\0".as_ptr() as *const _,
Some(std::mem::transmute::<*const (), unsafe extern "C" fn()>(
notify_row_factory_trampoline::<F> as *const (),
)),
Box_::into_raw(f),
)
}
}
#[doc(alias = "show-column-separators")]
pub fn connect_show_column_separators_notify<F: Fn(&Self) + 'static>(
&self,
f: F,
) -> SignalHandlerId {
unsafe extern "C" fn notify_show_column_separators_trampoline<
F: Fn(&ColumnView) + 'static,
>(
this: *mut ffi::GtkColumnView,
_param_spec: glib::ffi::gpointer,
f: glib::ffi::gpointer,
) {
let f: &F = &*(f as *const F);
f(&from_glib_borrow(this))
}
unsafe {
let f: Box_<F> = Box_::new(f);
connect_raw(
self.as_ptr() as *mut _,
b"notify::show-column-separators\0".as_ptr() as *const _,
Some(std::mem::transmute::<*const (), unsafe extern "C" fn()>(
notify_show_column_separators_trampoline::<F> as *const (),
)),
Box_::into_raw(f),
)
}
}
#[doc(alias = "show-row-separators")]
pub fn connect_show_row_separators_notify<F: Fn(&Self) + 'static>(
&self,
f: F,
) -> SignalHandlerId {
unsafe extern "C" fn notify_show_row_separators_trampoline<F: Fn(&ColumnView) + 'static>(
this: *mut ffi::GtkColumnView,
_param_spec: glib::ffi::gpointer,
f: glib::ffi::gpointer,
) {
let f: &F = &*(f as *const F);
f(&from_glib_borrow(this))
}
unsafe {
let f: Box_<F> = Box_::new(f);
connect_raw(
self.as_ptr() as *mut _,
b"notify::show-row-separators\0".as_ptr() as *const _,
Some(std::mem::transmute::<*const (), unsafe extern "C" fn()>(
notify_show_row_separators_trampoline::<F> as *const (),
)),
Box_::into_raw(f),
)
}
}
#[doc(alias = "single-click-activate")]
pub fn connect_single_click_activate_notify<F: Fn(&Self) + 'static>(
&self,
f: F,
) -> SignalHandlerId {
unsafe extern "C" fn notify_single_click_activate_trampoline<
F: Fn(&ColumnView) + 'static,
>(
this: *mut ffi::GtkColumnView,
_param_spec: glib::ffi::gpointer,
f: glib::ffi::gpointer,
) {
let f: &F = &*(f as *const F);
f(&from_glib_borrow(this))
}
unsafe {
let f: Box_<F> = Box_::new(f);
connect_raw(
self.as_ptr() as *mut _,
b"notify::single-click-activate\0".as_ptr() as *const _,
Some(std::mem::transmute::<*const (), unsafe extern "C" fn()>(
notify_single_click_activate_trampoline::<F> as *const (),
)),
Box_::into_raw(f),
)
}
}
#[doc(alias = "sorter")]
pub fn connect_sorter_notify<F: Fn(&Self) + 'static>(&self, f: F) -> SignalHandlerId {
unsafe extern "C" fn notify_sorter_trampoline<F: Fn(&ColumnView) + 'static>(
this: *mut ffi::GtkColumnView,
_param_spec: glib::ffi::gpointer,
f: glib::ffi::gpointer,
) {
let f: &F = &*(f as *const F);
f(&from_glib_borrow(this))
}
unsafe {
let f: Box_<F> = Box_::new(f);
connect_raw(
self.as_ptr() as *mut _,
b"notify::sorter\0".as_ptr() as *const _,
Some(std::mem::transmute::<*const (), unsafe extern "C" fn()>(
notify_sorter_trampoline::<F> as *const (),
)),
Box_::into_raw(f),
)
}
}
#[cfg(feature = "v4_12")]
#[cfg_attr(docsrs, doc(cfg(feature = "v4_12")))]
#[doc(alias = "tab-behavior")]
pub fn connect_tab_behavior_notify<F: Fn(&Self) + 'static>(&self, f: F) -> SignalHandlerId {
unsafe extern "C" fn notify_tab_behavior_trampoline<F: Fn(&ColumnView) + 'static>(
this: *mut ffi::GtkColumnView,
_param_spec: glib::ffi::gpointer,
f: glib::ffi::gpointer,
) {
let f: &F = &*(f as *const F);
f(&from_glib_borrow(this))
}
unsafe {
let f: Box_<F> = Box_::new(f);
connect_raw(
self.as_ptr() as *mut _,
b"notify::tab-behavior\0".as_ptr() as *const _,
Some(std::mem::transmute::<*const (), unsafe extern "C" fn()>(
notify_tab_behavior_trampoline::<F> as *const (),
)),
Box_::into_raw(f),
)
}
}
}
impl Default for ColumnView {
fn default() -> Self {
glib::object::Object::new::<Self>()
}
}
#[must_use = "The builder must be built to be used"]
pub struct ColumnViewBuilder {
builder: glib::object::ObjectBuilder<'static, ColumnView>,
}
impl ColumnViewBuilder {
fn new() -> Self {
Self {
builder: glib::object::Object::builder(),
}
}
pub fn enable_rubberband(self, enable_rubberband: bool) -> Self {
Self {
builder: self
.builder
.property("enable-rubberband", enable_rubberband),
}
}
#[cfg(feature = "v4_12")]
#[cfg_attr(docsrs, doc(cfg(feature = "v4_12")))]
pub fn header_factory(self, header_factory: &impl IsA<ListItemFactory>) -> Self {
Self {
builder: self
.builder
.property("header-factory", header_factory.clone().upcast()),
}
}
pub fn model(self, model: &impl IsA<SelectionModel>) -> Self {
Self {
builder: self.builder.property("model", model.clone().upcast()),
}
}
pub fn reorderable(self, reorderable: bool) -> Self {
Self {
builder: self.builder.property("reorderable", reorderable),
}
}
#[cfg(feature = "v4_12")]
#[cfg_attr(docsrs, doc(cfg(feature = "v4_12")))]
pub fn row_factory(self, row_factory: &impl IsA<ListItemFactory>) -> Self {
Self {
builder: self
.builder
.property("row-factory", row_factory.clone().upcast()),
}
}
pub fn show_column_separators(self, show_column_separators: bool) -> Self {
Self {
builder: self
.builder
.property("show-column-separators", show_column_separators),
}
}
pub fn show_row_separators(self, show_row_separators: bool) -> Self {
Self {
builder: self
.builder
.property("show-row-separators", show_row_separators),
}
}
pub fn single_click_activate(self, single_click_activate: bool) -> Self {
Self {
builder: self
.builder
.property("single-click-activate", single_click_activate),
}
}
#[cfg(feature = "v4_12")]
#[cfg_attr(docsrs, doc(cfg(feature = "v4_12")))]
pub fn tab_behavior(self, tab_behavior: ListTabBehavior) -> Self {
Self {
builder: self.builder.property("tab-behavior", tab_behavior),
}
}
pub fn can_focus(self, can_focus: bool) -> Self {
Self {
builder: self.builder.property("can-focus", can_focus),
}
}
pub fn can_target(self, can_target: bool) -> Self {
Self {
builder: self.builder.property("can-target", can_target),
}
}
pub fn css_classes(self, css_classes: impl Into<glib::StrV>) -> Self {
Self {
builder: self.builder.property("css-classes", css_classes.into()),
}
}
pub fn css_name(self, css_name: impl Into<glib::GString>) -> Self {
Self {
builder: self.builder.property("css-name", css_name.into()),
}
}
pub fn cursor(self, cursor: &gdk::Cursor) -> Self {
Self {
builder: self.builder.property("cursor", cursor.clone()),
}
}
pub fn focus_on_click(self, focus_on_click: bool) -> Self {
Self {
builder: self.builder.property("focus-on-click", focus_on_click),
}
}
pub fn focusable(self, focusable: bool) -> Self {
Self {
builder: self.builder.property("focusable", focusable),
}
}
pub fn halign(self, halign: Align) -> Self {
Self {
builder: self.builder.property("halign", halign),
}
}
pub fn has_tooltip(self, has_tooltip: bool) -> Self {
Self {
builder: self.builder.property("has-tooltip", has_tooltip),
}
}
pub fn height_request(self, height_request: i32) -> Self {
Self {
builder: self.builder.property("height-request", height_request),
}
}
pub fn hexpand(self, hexpand: bool) -> Self {
Self {
builder: self.builder.property("hexpand", hexpand),
}
}
pub fn hexpand_set(self, hexpand_set: bool) -> Self {
Self {
builder: self.builder.property("hexpand-set", hexpand_set),
}
}
pub fn layout_manager(self, layout_manager: &impl IsA<LayoutManager>) -> Self {
Self {
builder: self
.builder
.property("layout-manager", layout_manager.clone().upcast()),
}
}
pub fn margin_bottom(self, margin_bottom: i32) -> Self {
Self {
builder: self.builder.property("margin-bottom", margin_bottom),
}
}
pub fn margin_end(self, margin_end: i32) -> Self {
Self {
builder: self.builder.property("margin-end", margin_end),
}
}
pub fn margin_start(self, margin_start: i32) -> Self {
Self {
builder: self.builder.property("margin-start", margin_start),
}
}
pub fn margin_top(self, margin_top: i32) -> Self {
Self {
builder: self.builder.property("margin-top", margin_top),
}
}
pub fn name(self, name: impl Into<glib::GString>) -> Self {
Self {
builder: self.builder.property("name", name.into()),
}
}
pub fn opacity(self, opacity: f64) -> Self {
Self {
builder: self.builder.property("opacity", opacity),
}
}
pub fn overflow(self, overflow: Overflow) -> Self {
Self {
builder: self.builder.property("overflow", overflow),
}
}
pub fn receives_default(self, receives_default: bool) -> Self {
Self {
builder: self.builder.property("receives-default", receives_default),
}
}
pub fn sensitive(self, sensitive: bool) -> Self {
Self {
builder: self.builder.property("sensitive", sensitive),
}
}
pub fn tooltip_markup(self, tooltip_markup: impl Into<glib::GString>) -> Self {
Self {
builder: self
.builder
.property("tooltip-markup", tooltip_markup.into()),
}
}
pub fn tooltip_text(self, tooltip_text: impl Into<glib::GString>) -> Self {
Self {
builder: self.builder.property("tooltip-text", tooltip_text.into()),
}
}
pub fn valign(self, valign: Align) -> Self {
Self {
builder: self.builder.property("valign", valign),
}
}
pub fn vexpand(self, vexpand: bool) -> Self {
Self {
builder: self.builder.property("vexpand", vexpand),
}
}
pub fn vexpand_set(self, vexpand_set: bool) -> Self {
Self {
builder: self.builder.property("vexpand-set", vexpand_set),
}
}
pub fn visible(self, visible: bool) -> Self {
Self {
builder: self.builder.property("visible", visible),
}
}
pub fn width_request(self, width_request: i32) -> Self {
Self {
builder: self.builder.property("width-request", width_request),
}
}
pub fn accessible_role(self, accessible_role: AccessibleRole) -> Self {
Self {
builder: self.builder.property("accessible-role", accessible_role),
}
}
pub fn hadjustment(self, hadjustment: &impl IsA<Adjustment>) -> Self {
Self {
builder: self
.builder
.property("hadjustment", hadjustment.clone().upcast()),
}
}
pub fn hscroll_policy(self, hscroll_policy: ScrollablePolicy) -> Self {
Self {
builder: self.builder.property("hscroll-policy", hscroll_policy),
}
}
pub fn vadjustment(self, vadjustment: &impl IsA<Adjustment>) -> Self {
Self {
builder: self
.builder
.property("vadjustment", vadjustment.clone().upcast()),
}
}
pub fn vscroll_policy(self, vscroll_policy: ScrollablePolicy) -> Self {
Self {
builder: self.builder.property("vscroll-policy", vscroll_policy),
}
}
#[must_use = "Building the object from the builder is usually expensive and is not expected to have side effects"]
pub fn build(self) -> ColumnView {
assert_initialized_main_thread!();
self.builder.build()
}
}