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
97
98
//
// 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
//

use newt_sys::newtComponent;
use crate::component::Component;
use crate::widgets::Entry;
use crate::intern::funcs::newt_entry_set_filter;

///
/// A callback used to filter text entered into an `Entry` component.
///
/// The function or closure associated with the callback should be
/// defined as follows:
///
/// `fn(entry: &Entry, data: Option<&T>, ch: char, cursor_pos: i32) -> char`
///
/// * `entry` - The `Entry` being filtered.
/// * `data` - The optional user data provided.
/// * `ch` - The character entered into the `Entry`.
/// * `cursor_pos` - The current cursor position in the `Entry`.
///
/// The function should return the character to be entered into the
/// `Entry` field or '\0' to ignore the entered character.
///
/// See the example under [Entry][entry_example].
///
/// [entry_example]: ../widgets/struct.Entry.html#example
///
pub struct EntryFilter<'a, FN: 'a, T: 'a>
where FN: FnMut(&Entry, Option<&T>, char, i32) -> char
{
    function: FN,
    entries: Vec<(&'a Entry, Option<T>)>
}

impl<'a, FN: 'a, T: 'a> EntryFilter<'a, FN, T>
where FN: FnMut(&Entry, Option<&T>, char, i32) -> char
{
    ///
    /// Create a new `EntryFilter`.
    ///
    /// Creates a new `EntryFilter` associated with the `Entry` `entry`.
    /// The function `function` will be called for each character entered.
    ///
    /// * `entry` - The `Entry` to associate with the callback.
    /// * `function` - The function or closure to be called when a character
    ///                is entered.
    /// * `data` - The optonal user data to pass to the function.
    ///
    pub fn new(entry: &'a Entry, function: FN, data: Option<T>)
      -> Box<EntryFilter<'a, FN, T>> {
        let co: newtComponent = entry.co();
        let filter = Box::new(EntryFilter {
            function,
            entries: vec![(entry, data)]
        });
        newt_entry_set_filter(co, filter.as_ref());
        filter
    }

    ///
    /// Associate another `Entry` with the `EntryFilter`.
    ///
    /// * `entry` - The `Entry` to associate with the callback.
    /// * `data` - The optonal user data to pass to the function.
    ///
    pub fn add_entry(&mut self, entry: &'a Entry, data: Option<T>) {
        let co: newtComponent = entry.co();
        self.entries.push((entry, data));
        newt_entry_set_filter(co, self);
    }

    pub(crate) fn call(&mut self, co: newtComponent, ch: char, cursor: i32)
      -> char {
        for (entry, data) in self.entries.iter() {
            if entry.co() == co {
                return (self.function)(*entry, data.as_ref(), ch, cursor);
            }
        }
        '\0'
    }
}