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
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
use crate::enums::FrameType;
use crate::prelude::*;
use crate::utils::FlString;
use fltk_sys::input::*;
use std::ffi::{CStr, CString};

/// Creates an input widget
#[derive(Debug)]
pub struct Input {
    inner: crate::widget::WidgetTracker,
    is_derived: bool,
}

crate::macros::widget::impl_widget_ext!(Input, Fl_Input);
crate::macros::widget::impl_widget_base!(Input, Fl_Input);
crate::macros::widget::impl_widget_default!(Input);
crate::macros::input::impl_input_ext!(Input, Fl_Input);

/// Sets the input widget's type
#[repr(i32)]
#[derive(Debug, Copy, Clone, PartialEq, Eq)]
pub enum InputType {
    /// Normal input
    Normal = 0,
    /// Float input
    Float = 1,
    /// Int input
    Int = 2,
    /// Multiline input
    Multiline = 4,
    /// Secret input
    Secret = 5,
    /// Input!
    Input = 7,
    /// Readonly input
    Readonly = 8,
    /// Wrap input
    Wrap = 16,
}

crate::macros::widget::impl_widget_type!(InputType);

/// Creates an input widget which takes only integers
#[derive(Debug)]
pub struct IntInput {
    inner: crate::widget::WidgetTracker,
    is_derived: bool,
}

crate::macros::widget::impl_widget_ext!(IntInput, Fl_Int_Input);
crate::macros::widget::impl_widget_base!(IntInput, Fl_Int_Input);
crate::macros::widget::impl_widget_default!(IntInput);
crate::macros::input::impl_input_ext!(IntInput, Fl_Int_Input);

/// Creates an input widget which takes only floats
#[derive(Debug)]
pub struct FloatInput {
    inner: crate::widget::WidgetTracker,
    is_derived: bool,
}

crate::macros::widget::impl_widget_ext!(FloatInput, Fl_Float_Input);
crate::macros::widget::impl_widget_base!(FloatInput, Fl_Float_Input);
crate::macros::widget::impl_widget_default!(FloatInput);
crate::macros::input::impl_input_ext!(FloatInput, Fl_Float_Input);

/// Creates a multiline-input widget
#[derive(Debug)]
pub struct MultilineInput {
    inner: crate::widget::WidgetTracker,
    is_derived: bool,
}

crate::macros::widget::impl_widget_ext!(MultilineInput, Fl_Multiline_Input);
crate::macros::widget::impl_widget_base!(MultilineInput, Fl_Multiline_Input);
crate::macros::widget::impl_widget_default!(MultilineInput);
crate::macros::input::impl_input_ext!(MultilineInput, Fl_Multiline_Input);

/// Creates a File-input widget
#[derive(Debug)]
pub struct FileInput {
    inner: crate::widget::WidgetTracker,
    is_derived: bool,
}

crate::macros::widget::impl_widget_ext!(FileInput, Fl_File_Input);
crate::macros::widget::impl_widget_base!(FileInput, Fl_File_Input);
crate::macros::widget::impl_widget_default!(FileInput);
crate::macros::input::impl_input_ext!(FileInput, Fl_File_Input);

impl FileInput {
    /// Set the `down_box` of the widget
    pub fn set_down_frame(&mut self, f: FrameType) {
        unsafe { Fl_File_Input_set_down_box(self.inner.widget() as _, f.as_i32()) }
    }

    /// Get the `down_box` of the widget
    pub fn down_frame(&self) -> FrameType {
        unsafe { FrameType::from_i32(Fl_File_Input_down_box(self.inner.widget() as _)) }
    }
}

/// Creates a secret input widget
#[derive(Debug)]
pub struct SecretInput {
    inner: crate::widget::WidgetTracker,
    is_derived: bool,
}

crate::macros::widget::impl_widget_ext!(SecretInput, Fl_Secret_Input);
crate::macros::widget::impl_widget_base!(SecretInput, Fl_Secret_Input);
crate::macros::widget::impl_widget_default!(SecretInput);
crate::macros::input::impl_input_ext!(SecretInput, Fl_Secret_Input);