all messages for Emacs-related lists mirrored at yhetil.org
 help / color / mirror / code / Atom feed
From: Dov Grobgeld <dov.grobgeld@gmail.com>
To: Po Lu <Luangruo@yahoo.com>
Cc: emacs-devel@gnu.org, tomas@tuxteam.de
Subject: Re: Stylus drawing input?
Date: Tue, 24 Jan 2023 10:03:02 +0200	[thread overview]
Message-ID: <CA++fsGEGfKu_baZw7LcqPNUGtWtgduk4ZGh3GbH_9V0pyt=jLg@mail.gmail.com> (raw)
In-Reply-To: <0C19A13B-EEFF-486B-BED3-36A4AEF629D8@yahoo.com>

Thanks. I need some guidance on how feasible the following is and how
I would go about doing it.

1. How do I draw vector graphics object in an emacs buffer. I.e.
line-to, move-to, close-path, fill etc. Do I need to generate the
pixels on my own (can be done e.g. with the agg library or with
libcairo) and then place the image as on overlay (how?), or is there
higher lever interface? Is it accessible from elisp or from C?
2. How can I trace the x,y input coordinates of mouse movement. E.g.
I'd like to run a command to enter capture mode, and then catch
subsequent motion events of the mouse, until the mouse button is
raised. The resulting object should be a list of motion coordinates.
3. How would I do the same for a stylus while catching additional pressure data?
4. Given some vector graphics objects drawn on the screen, how would I
do mouse hit detection, so that doing a mouse click on the object,
returns the object id? (This I can do "offline" though, by drawing a
"label image" of the buffer contents on mouse press end then finding
the label of the object under the mouse.)

Thanks!

On Tue, Jan 24, 2023 at 1:47 AM Po Lu <Luangruo@yahoo.com> wrote:
>
> Emacs 29 already has native support for version 2 of the the X Input extension and its various input devices.
>
> See the node Touchscreen Events in the Emacs Lisp reference manual.  This is not yet supported on the PGTK build.
>
> On January 24, 2023 5:15:58 AM GMT+08:00, Dov Grobgeld <dov.grobgeld@gmail.com> wrote:
> >On X11, to read stylus input, we need to use XInput extension.
> >
> >Gdk, used in gtk, has a good abstraction to it that allows doing code
> >like the following to distinguish between mouse and stylus input in
> >its motion notify callback, and in this case extract the pressure.
> >
> >  int on_motion_notify_event(GdkEventMotion *event)
> >  {
> >    // The pressure value is:
> >    //   found=false for mouse motion
> >    //   0 for proximity stylus motion
> >    //   >0 for the pen touching the pad
> >    double pressure=-1;
> >    int found = gdk_event_get_axis((GdkEvent*)event,
> >GDK_AXIS_PRESSURE, &pressure);
> >    GdkDeviceTool *tool = gdk_event_get_device_tool((GdkEvent*)event);
> >
> >    // For mouse the tool isn't defined, so we set a default -1
> >    GdkDeviceToolType tool_type = (GdkDeviceToolType)(-1);
> >    if (tool)
> >      // true for stylus only
> >      tool_type = gdk_device_tool_get_tool_type (tool);
> >
> >    printf("motion_notify: tool_type=%d,
> >x=%.3f},y=%.3f},found_stylus=%d,pressure=%.3f\n",
> >          (int)tool_type,
> >          event->x, event->y, found, pressure);
> >    return TRUE;
> >  }
> >
> >To support styluses (i.e. to distinguish them from mouse events) we
> >need something similar in emacs.
> >
> >Regards,
> >
> >
> >On Mon, Jan 16, 2023 at 10:27 AM <tomas@tuxteam.de> wrote:
> >>
> >> On Mon, Jan 16, 2023 at 08:45:55AM +0100, Dr. Arne Babenhauserheide wrote:
> >> > PS: Here is a website with a description that does not rely on unfree
> >> >     platforms: https://misohena.jp/blog/2021-09-21-emacs-easy-draw.html
> >> >
> >> > The clearest description is a gif, though:
> >> > https://misohena.jp/blog/wp-content/uploads/2021-09-21-edraw-example.gif
> >>
> >> Thanks for the non-github link!
> >>
> >> Cheers
> >> --
> >> t
> >



  reply	other threads:[~2023-01-24  8:03 UTC|newest]

Thread overview: 19+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2023-01-12  6:39 Stylus drawing input? Dov Grobgeld
2023-01-14  6:06 ` Richard Stallman
2023-01-14  8:17   ` Dr. Arne Babenhauserheide
2023-01-14  9:38     ` Peter
2023-01-14  9:57     ` Eli Zaretskii
2023-01-14 10:49       ` Dr. Arne Babenhauserheide
2023-01-15  5:13     ` Richard Stallman
2023-01-16  7:41       ` Dr. Arne Babenhauserheide
2023-01-16  7:45       ` Dr. Arne Babenhauserheide
2023-01-16  8:26         ` tomas
2023-01-23 21:15           ` Dov Grobgeld
2023-01-23 23:48             ` Po Lu
2023-01-24  8:03               ` Dov Grobgeld [this message]
2023-01-24 10:50                 ` Po Lu
2023-01-24 12:27                 ` Eli Zaretskii
2023-01-24 15:55                   ` Dov Grobgeld
2023-01-24 17:00                     ` Eli Zaretskii
2023-01-14  9:50   ` Po Lu
2023-01-15  5:13     ` Richard Stallman

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to='CA++fsGEGfKu_baZw7LcqPNUGtWtgduk4ZGh3GbH_9V0pyt=jLg@mail.gmail.com' \
    --to=dov.grobgeld@gmail.com \
    --cc=Luangruo@yahoo.com \
    --cc=emacs-devel@gnu.org \
    --cc=tomas@tuxteam.de \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
Code repositories for project(s) associated with this external index

	https://git.savannah.gnu.org/cgit/emacs.git
	https://git.savannah.gnu.org/cgit/emacs/org-mode.git

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.