GstPipelineStudio/src/graphmanager/link.rs
Stéphane Cerveau 28a9cfbd50 graphmanager: update link license
Add a license in GraphManager folder
2022-02-16 17:10:34 +01:00

74 lines
1.4 KiB
Rust

// link.rs
//
// Copyright 2021 Tom A. Wagner <tom.a.wagner@protonmail.com>
// Copyright 2021 Stéphane Cerveau <scerveau@collabora.com>
//
// This file is part of GraphManager
//
// SPDX-License-Identifier: GPL-3.0-only
use super::SelectionExt;
use std::cell::Cell;
#[derive(Debug, Clone)]
pub struct Link {
pub id: u32,
pub node_from: u32,
pub node_to: u32,
pub port_from: u32,
pub port_to: u32,
pub active: bool,
pub selected: Cell<bool>,
pub thickness: u32,
}
pub trait LinkExt {
/// Create a new link
///
fn new(
id: u32,
node_from: u32,
node_to: u32,
port_from: u32,
port_to: u32,
active: bool,
selected: bool,
) -> Self;
}
impl LinkExt for Link {
fn new(
id: u32,
node_from: u32,
node_to: u32,
port_from: u32,
port_to: u32,
active: bool,
selected: bool,
) -> Self {
Self {
id,
node_from,
node_to,
port_from,
port_to,
active,
selected: Cell::new(selected),
thickness: 4,
}
}
}
impl SelectionExt for Link {
fn toggle_selected(&self) {
self.set_selected(!self.selected.get());
}
fn set_selected(&self, selected: bool) {
self.selected.set(selected);
}
fn selected(&self) -> bool {
self.selected.get()
}
}