[#4479] Requesting addition to IRB (configurable standard output) — Sascha Ebach <se@...>

Hello,

13 messages 2005/02/24
[#4482] Re: Requesting addition to IRB (configurable standard output) — Sam Roberts <sroberts@...> 2005/02/25

Quoting se@digitale-wertschoepfung.de, on Fri, Feb 25, 2005 at 01:22:34AM +0900:

[#4483] Re: Requesting addition to IRB (configurable standard output) — Eric Hodel <drbrain@...7.net> 2005/02/25

On 24 Feb 2005, at 19:51, Sam Roberts wrote:

[#4488] Re: Requesting addition to IRB (configurable standard output) — Sam Roberts <sroberts@...> 2005/02/26

Quoting drbrain@segment7.net, on Sat, Feb 26, 2005 at 02:43:31AM +0900:

[#4489] Re: Requesting addition to IRB (configurable standard output) — Eric Hodel <drbrain@...7.net> 2005/02/26

On 25 Feb 2005, at 16:03, Sam Roberts wrote:

Re: [PATCH] add color_set support to curses.c

From: Paul Duncan <pabs@...>
Date: 2005-02-08 21:04:15 UTC
List: ruby-core #4393
* Yukihiro Matsumoto (matz@ruby-lang.org) wrote:
> Hi,
> 
> In message "Re: [PATCH] add color_set support to curses.c"
>     on Tue, 8 Feb 2005 03:36:30 +0900, Paul Duncan <pabs@pablotron.org> writes:
> 
> |I'm not sure why this is missing from the Curses binding, but the
> |attached patch adds support for color_set to curses.c.
> 
> Do you know whether wcolor_set is available when USE_COLOR is defined?

Err, USE_COLOR is defined in curses.c.  If you're asking whether or not
it's available in standard curses, here's what I got from the
man page:

  PORTABILITY
    All these functions are supported in the XSI Curses standard,
    Issue  4.  The  standard  defined the dedicated type for
    highlights, attr_t, which is not defined in SVr4 curses. The
    functions  taking attr_t  arguments are not supported under SVr4.

Anyway, I think I see where you're going with this line of questions, so
I went ahead and redid the patch so Curses::Window#color_set only exists
if USE_COLOR is defined.

Patch is attached.

> 							matz.

-- 
Paul Duncan <pabs@pablotron.org>        OpenPGP Key ID: 0x82C29562
http://www.pablotron.org/               http://www.paulduncan.org/

Attachments (2)

ruby-1.8.2-curses_color_set-2.patch (1.05 KB, text/x-diff)
diff -ur ruby-1.8.2/ext/curses/curses.c ruby-1.8.2-curses_color_set/ext/curses/curses.c
--- ruby-1.8.2/ext/curses/curses.c	2003-12-10 03:26:33.000000000 -0500
+++ ruby-1.8.2-curses_color_set/ext/curses/curses.c	2005-02-08 16:01:52.000000000 -0500
@@ -1187,6 +1187,20 @@
 #endif
 }
 
+#ifdef USE_COLOR
+static VALUE
+window_color_set(VALUE obj, VALUE col) 
+{
+  struct windata *winp;
+  int res;
+
+  GetWINDOW(obj, winp);
+  res = wcolor_set(winp->window, NUM2INT(col), NULL);
+  return (res == OK) ? Qtrue : Qfalse;
+  return Qfalse;
+}
+#endif /* USE_COLOR */
+
 static VALUE
 window_scroll(VALUE obj)
 {
@@ -1463,6 +1477,9 @@
     rb_define_method(cWindow, "box", window_box, -1);
     rb_define_method(cWindow, "move", window_move, 2);
     rb_define_method(cWindow, "setpos", window_setpos, 2);
+#ifdef USE_COLOR
+    rb_define_method(cWindow, "color_set", window_color_set, 1);
+#endif /* USE_COLOR */
     rb_define_method(cWindow, "cury", window_cury, 0);
     rb_define_method(cWindow, "curx", window_curx, 0);
     rb_define_method(cWindow, "maxy", window_maxy, 0);
signature.asc (189 Bytes, application/pgp-signature)

In This Thread