mirror of
https://github.com/ruby/ruby.git
synced 2022-11-09 12:17:21 -05:00
* ext/io/console/console.c (console_set_raw): new method.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@27706 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
parent
08bf7189f8
commit
b44618d5e5
3 changed files with 27 additions and 1 deletions
|
@ -1,4 +1,6 @@
|
||||||
Mon May 10 00:35:41 2010 Nobuyoshi Nakada <nobu@ruby-lang.org>
|
Mon May 10 00:54:15 2010 Nobuyoshi Nakada <nobu@ruby-lang.org>
|
||||||
|
|
||||||
|
* ext/io/console/console.c (console_set_raw): new method.
|
||||||
|
|
||||||
* ext/io/console/console.c (ttymode): reverted previous commit.
|
* ext/io/console/console.c (ttymode): reverted previous commit.
|
||||||
|
|
||||||
|
|
2
NEWS
2
NEWS
|
@ -413,7 +413,9 @@ with all sufficient information, see the ChangeLog file.
|
||||||
* io/console
|
* io/console
|
||||||
* new methods:
|
* new methods:
|
||||||
* IO#noecho {|io| }
|
* IO#noecho {|io| }
|
||||||
|
* IO#echo=
|
||||||
* IO#raw {|io| }
|
* IO#raw {|io| }
|
||||||
|
* IO#raw!
|
||||||
* IO#getch
|
* IO#getch
|
||||||
* IO#winsize
|
* IO#winsize
|
||||||
* IO.console
|
* IO.console
|
||||||
|
|
|
@ -246,6 +246,27 @@ console_raw(VALUE io)
|
||||||
return ttymode(io, rb_yield, set_rawmode);
|
return ttymode(io, rb_yield, set_rawmode);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/*
|
||||||
|
* call-seq:
|
||||||
|
* io.raw!
|
||||||
|
*
|
||||||
|
* Enables raw mode.
|
||||||
|
*/
|
||||||
|
static VALUE
|
||||||
|
console_set_raw(VALUE io)
|
||||||
|
{
|
||||||
|
conmode t;
|
||||||
|
rb_io_t *fptr;
|
||||||
|
int fd;
|
||||||
|
|
||||||
|
GetOpenFile(io, fptr);
|
||||||
|
fd = GetReadFD(fptr);
|
||||||
|
if (!getattr(fd, &t)) rb_sys_fail(0);
|
||||||
|
set_rawmode(&t);
|
||||||
|
if (!setattr(fd, &t)) rb_sys_fail(0);
|
||||||
|
return io;
|
||||||
|
}
|
||||||
|
|
||||||
static VALUE
|
static VALUE
|
||||||
getc_call(VALUE io)
|
getc_call(VALUE io)
|
||||||
{
|
{
|
||||||
|
@ -520,6 +541,7 @@ void
|
||||||
InitVM_console(void)
|
InitVM_console(void)
|
||||||
{
|
{
|
||||||
rb_define_method(rb_cIO, "raw", console_raw, 0);
|
rb_define_method(rb_cIO, "raw", console_raw, 0);
|
||||||
|
rb_define_method(rb_cIO, "raw!", console_set_raw, 0);
|
||||||
rb_define_method(rb_cIO, "getch", console_getch, 0);
|
rb_define_method(rb_cIO, "getch", console_getch, 0);
|
||||||
rb_define_method(rb_cIO, "echo=", console_set_echo, 1);
|
rb_define_method(rb_cIO, "echo=", console_set_echo, 1);
|
||||||
rb_define_method(rb_cIO, "echo?", console_echo_p, 0);
|
rb_define_method(rb_cIO, "echo?", console_echo_p, 0);
|
||||||
|
|
Loading…
Reference in a new issue