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
//
// Copyright (C) 2019 Robert Gill <locke@sdf.org>
//
// This file is a part of newt-rs.
//
// This library is free software; you can redistribute it and/or
// modify it under the terms of the GNU Lesser General Public
// License version 2.1 as published by the Free Software Foundation.
//
// This library is distributed in the hope that it will be useful,
// but WITHOUT ANY WARRANTY; without even the implied warranty of
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
// Lesser General Public License for more details.
//
// You should have received a copy of the GNU Lesser General Public
// License along with this library; if not, write to the Free Software
// Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA  02110-1301  USA
//

//!
//! Trait implemented by `Widget` and `Grid` types.
//!
use std::cmp::PartialEq;
use std::fmt::Debug;
use std::ops::Deref;
use std::os::raw::c_void;

use newt_sys::*;
use crate::intern::{AsComponent,AsGrid,Child,GridElementType,Nullify};
use crate::widgets::WidgetFns;
use crate::widgets::form::ExitReason;
use crate::intern;

///
/// A wrapper for passing complex data to [CheckboxTree][checkbox_tree] and
/// [Listbox][listbox] widgets.
///
/// [checkbox_tree]: ../widgets/struct.CheckboxTree.html
/// [listbox]: ../widgets/struct.Listbox.html
///
pub struct Data<'a, T: 'a>(pub &'a T);

impl<'a, T: 'a> intern::data::Data for Data<'a, T> {
    fn newt_to_ptr(&self) -> *const c_void {
        self.0 as *const _ as *const c_void
    }

    fn newt_from_ptr(ptr: *const c_void) -> Self {
        let data = unsafe { &*(ptr as *const T) };
        Data(data)
    }
}

impl<'a, T> Deref for Data<'a, T> {
    type Target = T;
    fn deref(&self) -> &T {
        &self.0
    }
}

///
/// Trait implemented by `Widget` types and `Grid` types.
///
pub trait Component: AsComponent + AsGrid + Child + GridElementType + Nullify
                                 + WidgetFns
{
    /// Return `newtComponent` pointer.
    fn co(&self) -> newtComponent;
}

impl Debug for dyn Component {
    fn fmt(&self, f: &mut std::fmt::Formatter) -> std::fmt::Result {
        write!(f, "Component {{ {:p} }}", self.co())
    }
}

impl PartialEq for dyn Component {
    fn eq(&self, other: &dyn Component) -> bool {
        self.co() == other.co()
    }
}

impl PartialEq<ExitReason> for dyn Component {
    fn eq(&self, other: &ExitReason) -> bool {
        if let ExitReason::Component(ref component) = other {
            return self.co() == component.co()
        }
        false
    }
}

impl<Rhs: Component> PartialEq<Rhs> for Box<dyn Component> {
    fn eq(&self, other: &Rhs) -> bool {
        self.co() == other.co()
    }
}