diff options
| author | Thierry Vignaud <thierry.vignaud@gmail.com> | 2016-09-13 14:55:24 +0200 | 
|---|---|---|
| committer | Thierry Vignaud <thierry.vignaud@gmail.com> | 2016-09-13 14:55:24 +0200 | 
| commit | 6311a1cdc126e6c01e12846ff64c183e2e9f7bf6 (patch) | |
| tree | ec41c067d9477a5e47116f5259490127907232f6 | |
| parent | fc2c5115e8b5c6a3e937905006145151032a8761 (diff) | |
| download | perl_checker-6311a1cdc126e6c01e12846ff64c183e2e9f7bf6.tar perl_checker-6311a1cdc126e6c01e12846ff64c183e2e9f7bf6.tar.gz perl_checker-6311a1cdc126e6c01e12846ff64c183e2e9f7bf6.tar.bz2 perl_checker-6311a1cdc126e6c01e12846ff64c183e2e9f7bf6.tar.xz perl_checker-6311a1cdc126e6c01e12846ff64c183e2e9f7bf6.zip | |
update Curses::UI fake package
| -rw-r--r-- | fake_packages/Curses/UI.pm | 22 | 
1 files changed, 16 insertions, 6 deletions
| diff --git a/fake_packages/Curses/UI.pm b/fake_packages/Curses/UI.pm index 85dc1cc..10ac97c 100644 --- a/fake_packages/Curses/UI.pm +++ b/fake_packages/Curses/UI.pm @@ -62,7 +62,9 @@ our @ISA = qw();  sub compute_buttonheight($;) {}  sub compute_buttonwidth($;) {}  sub draw(;$) {} +sub focus_down() {}  sub focus_shift() {} +sub focus_up() {}  sub get() {}  sub get_selected_button() {}  sub layout() {} @@ -72,6 +74,7 @@ sub next_button() {}  sub press_button() {}  sub previous_button() {}  sub process_buttondefs() {} +sub set_label() {}  sub shortcut() {}  package Curses::UI::Calendar; @@ -154,6 +157,7 @@ our @ISA = qw();  sub add($@) { my (@_more_paras) = @_ }  sub base_id2idx($;) {}  sub delete(;$) {} +sub delete_object() {}  sub delete_subwindows() {}  sub draw(;$) {}  sub draworder_id2idx($;) {} @@ -300,6 +304,7 @@ sub option_prev() {}  sub option_prevpage() {}  sub option_select() {}  sub option_uncheck() {} +sub set_active_id() {}  sub set_color_bg() {}  sub set_color_fg() {}  sub set_selection() {} @@ -356,6 +361,7 @@ package Curses::UI::Popupmenu;  our @ISA = qw();  sub draw(;$) {}  sub get() {} +sub id() {}  sub layout() {}  sub mouse_button1($$$;) {}  sub new { my (@_more_paras) = @_ } @@ -363,6 +369,7 @@ sub onChange(;$) {}  sub open_popup() {}  sub select_next() {}  sub select_prev() {} +sub set_selection() {}  package Curses::UI::PopupmenuListbox;  our @ISA = qw(); @@ -467,10 +474,10 @@ our @ISA = qw();  sub DESTROY() {}  sub beep_off() {}  sub beep_on() {} -sub borderheight() {} -sub borderwidth() {} -sub canvasheight() {} -sub canvaswidth() {} +sub borderheight { my ($_bh) = @_ } +sub borderwidth { my ($_bw) = @_ } +sub canvasheight { my ($_sh) = @_ } +sub canvaswidth { my ($_sw) = @_ }  sub clear_binding($;) {}  sub clear_event($;) {}  sub delete_subwindows() {} @@ -483,8 +490,10 @@ sub event_mouse($;) {}  sub event_onblur() {}  sub event_onfocus() {}  sub focus() {} +sub focus_down() {} +sub focus_up() {}  sub focusable(;$) {} -sub height() {} +sub height { my ($_h) = @_ }  sub height_by_windowscrheight($@) { my (@_more_paras) = @_ }  sub hidden() {}  sub hide() {} @@ -492,6 +501,7 @@ sub in_topwindow() {}  sub intellidraw(;$) {}  sub layout() {}  sub loose_focus() {} +sub loose_focus_this_way() {}  sub lose_focus() {}  sub modalfocus() {}  sub mouse_button1($$$$;) {} @@ -518,7 +528,7 @@ sub set_routine($$;) {}  sub show() {}  sub title() {}  sub userdata() {} -sub width() {} +sub width { my ($_w) = @_ }  sub width_by_windowscrwidth($@) { my (@_more_paras) = @_ }  sub windowparameters() {} | 
