unofficial mirror of emacs-devel@gnu.org 
 help / color / mirror / code / Atom feed
* [Patch] Draw and scribble notes in GNU Emacs
@ 2021-09-09  7:54 Anand Tamariya
  2021-09-09  8:33 ` Po Lu
  2021-09-09 14:50 ` Lars Ingebrigtsen
  0 siblings, 2 replies; 13+ messages in thread
From: Anand Tamariya @ 2021-09-09  7:54 UTC (permalink / raw)
  To: emacs-devel


[-- Attachment #1.1: Type: text/plain, Size: 963 bytes --]

Here's a proposal for drawing and scribbling notes in GNU Emacs.
*Features:*

   - Draw simple shapes and text
   - Scribble freehand
   - Visual selection using mouse
   - Zoom
   - Undo/delete selection
   - Erase

*Code: https://gitlab.com/atamariya/emacs/-/blob/dev/lisp/svg.el
<https://gitlab.com/atamariya/emacs/-/blob/dev/lisp/svg.el>*
*Screenshots:*
https://lifeofpenguin.blogspot.com/2021/08/scribble-notes-in-gnu-emacs.html
*Video:* https://youtu.be/oj2OR5ytHx

I have few questions:
- Can this be included in Emacs core?
- I've copied two functions from Lars (
https://github.com/larsmagne/ewp/blob/master/ewp.el ). How should
attribution work in this case?

Additionally, following are mandatory patches for svg.el:
- polyline point uses CSV pairs separated by space.
- id should ideally be unique. This will allow changing element type when
different element with same id is added.
- If value is nil, don't include the attribute in the print output.

[-- Attachment #1.2: Type: text/html, Size: 1540 bytes --]

[-- Attachment #2: diff.txt --]
[-- Type: text/plain, Size: 1741 bytes --]

diff --git a/lisp/svg.el b/lisp/svg.el
index 7aadbc2359..45870e0bfe 100644
--- a/lisp/svg.el
+++ b/lisp/svg.el
@@ -154,9 +154,9 @@ svg-polyline
    (dom-node
     'polyline
     `((points . ,(mapconcat (lambda (pair)
-			      (format "%s %s" (car pair) (cdr pair)))
+			      (format "%s,%s" (car pair) (cdr pair)))
 			    points
-			    ", "))
+			    " "))
       ,@(svg--arguments svg args)))))
 
 (defun svg-polygon (svg points &rest args)
@@ -214,16 +214,17 @@ svg--encode-text
     (buffer-string)))
 
 (defun svg--append (svg node)
+  ;; id is expected to be unique.
   (let ((old (and (dom-attr node 'id)
 		  (dom-by-id svg
                              (concat "\\`" (regexp-quote (dom-attr node 'id))
                                      "\\'")))))
     (if old
-        ;; FIXME: This was (dom-set-attributes old (dom-attributes node))
-        ;; and got changed by commit f7ea7aa11f6211b5142bbcfc41c580d75485ca56
-        ;; without any explanation.
-	(setcdr (car old) (cdr node))
-      (dom-append-child svg node)))
+        ;; Remove old node. New node might be a different type.
+        (mapc (lambda (a)
+                  (dom-remove-node svg a))
+                old))
+    (dom-append-child svg node))
   (svg-possibly-update-image svg))
 
 (defun svg--image-data (image image-type datap)
@@ -311,7 +312,8 @@ svg-print
     (insert (format "<%s" (car dom)))
     (dolist (attr (nth 1 dom))
       ;; Ignore attributes that start with a colon.
-      (unless (= (aref (format "%s" (car attr)) 0) ?:)
+      (unless (or (= (aref (format "%s" (car attr)) 0) ?:)
+                  (null (cdr attr)))
         (insert (format " %s=\"%s\"" (car attr) (cdr attr)))))
     (insert ">")
     (dolist (elem (nthcdr 2 dom))

^ permalink raw reply related	[flat|nested] 13+ messages in thread

* Re: [Patch] Draw and scribble notes in GNU Emacs
  2021-09-09  7:54 [Patch] Draw and scribble notes in GNU Emacs Anand Tamariya
@ 2021-09-09  8:33 ` Po Lu
  2021-09-09 12:00   ` Eli Zaretskii
  2021-09-13  5:15   ` Anand Tamariya
  2021-09-09 14:50 ` Lars Ingebrigtsen
  1 sibling, 2 replies; 13+ messages in thread
From: Po Lu @ 2021-09-09  8:33 UTC (permalink / raw)
  To: Anand Tamariya; +Cc: emacs-devel

Anand Tamariya <atamariya@gmail.com> writes:

> Code: https://gitlab.com/atamariya/emacs/-/blob/dev/lisp/svg.el

Good work, but it appears to be comprised solely of modifications to
svg.el.  Is there any particular reason it cannot be separated from the
rest of svg.el, which is geared towards programmatic creation of images,
as opposed to providing a paint program?

  . ;; ewp functions copied from https://github.com/larsmagne/ewp/blob/master/ewp.el
  . (defun ewp-crop-image (&optional square)
  . (defun ewp-crop-image-update (area data size type)
  . (defun ewp-crop-image-1 (svg &optional square image-width image-height)
  . (defun ewp-find-corner (area pos corners)
  . (defun ewp-content-type (image)
  . (defun ewp--image-type ()

It would be good to prefix the names of these functions with something
other than "ewp", because they could conflict with the functions present
in ewp.

Further, I don't believe ewp has undergone copyright assignment to the
FSF.  If the code is to be included in Emacs, that will likely have to
be solved first.



^ permalink raw reply	[flat|nested] 13+ messages in thread

* Re: [Patch] Draw and scribble notes in GNU Emacs
  2021-09-09  8:33 ` Po Lu
@ 2021-09-09 12:00   ` Eli Zaretskii
  2021-09-09 12:23     ` Po Lu
  2021-09-13  5:15   ` Anand Tamariya
  1 sibling, 1 reply; 13+ messages in thread
From: Eli Zaretskii @ 2021-09-09 12:00 UTC (permalink / raw)
  To: Po Lu; +Cc: emacs-devel, atamariya

> From: Po Lu <luangruo@yahoo.com>
> Cc: emacs-devel@gnu.org
> Date: Thu, 09 Sep 2021 16:33:08 +0800
> 
>   . ;; ewp functions copied from https://github.com/larsmagne/ewp/blob/master/ewp.el
>   . (defun ewp-crop-image (&optional square)
>   . (defun ewp-crop-image-update (area data size type)
>   . (defun ewp-crop-image-1 (svg &optional square image-width image-height)
>   . (defun ewp-find-corner (area pos corners)
>   . (defun ewp-content-type (image)
>   . (defun ewp--image-type ()
> 
> It would be good to prefix the names of these functions with something
> other than "ewp", because they could conflict with the functions present
> in ewp.
> 
> Further, I don't believe ewp has undergone copyright assignment to the
> FSF.

If that is Lars, there should be no problem with his existing
assignment (assuming he agrees to include that code in Emacs).



^ permalink raw reply	[flat|nested] 13+ messages in thread

* Re: [Patch] Draw and scribble notes in GNU Emacs
  2021-09-09 12:00   ` Eli Zaretskii
@ 2021-09-09 12:23     ` Po Lu
  2021-09-09 14:51       ` Lars Ingebrigtsen
  0 siblings, 1 reply; 13+ messages in thread
From: Po Lu @ 2021-09-09 12:23 UTC (permalink / raw)
  To: Eli Zaretskii; +Cc: emacs-devel, atamariya

Eli Zaretskii <eliz@gnu.org> writes:

> If that is Lars, there should be no problem with his existing
> assignment (assuming he agrees to include that code in Emacs).

It does seem to be Lars, which is a nice thing.  I wonder what he thinks
about this?




^ permalink raw reply	[flat|nested] 13+ messages in thread

* Re: [Patch] Draw and scribble notes in GNU Emacs
  2021-09-09  7:54 [Patch] Draw and scribble notes in GNU Emacs Anand Tamariya
  2021-09-09  8:33 ` Po Lu
@ 2021-09-09 14:50 ` Lars Ingebrigtsen
  2021-09-13  5:36   ` Anand Tamariya
  1 sibling, 1 reply; 13+ messages in thread
From: Lars Ingebrigtsen @ 2021-09-09 14:50 UTC (permalink / raw)
  To: Anand Tamariya; +Cc: emacs-devel

Anand Tamariya <atamariya@gmail.com> writes:

> Here's a proposal for drawing and scribbling notes in GNU Emacs.
> Features:
>
> * Draw simple shapes and text
> * Scribble freehand
> * Visual selection using mouse
> * Zoom
> * Undo/delete selection
> * Erase

Looks cool -- perhaps something for GNU ELPA?

> I have few questions:
> - Can this be included in Emacs core?
> - I've copied two functions from Lars
> (https://github.com/larsmagne/ewp/blob/master/ewp.el ). How should
> attribution work in this case?

I've been thinking that I should push ewp to GNU ELPA, but I've never
taken the time.  (It's a package for editing Wordpress blogs.)

>  (defun svg--append (svg node)
> +  ;; id is expected to be unique.
>    (let ((old (and (dom-attr node 'id)
>  		  (dom-by-id svg
>                               (concat "\\`" (regexp-quote (dom-attr node 'id))
>                                       "\\'")))))
>      (if old
> -        ;; FIXME: This was (dom-set-attributes old (dom-attributes node))
> -        ;; and got changed by commit f7ea7aa11f6211b5142bbcfc41c580d75485ca56
> -        ;; without any explanation.
> -	(setcdr (car old) (cdr node))
> -      (dom-append-child svg node)))
> +        ;; Remove old node. New node might be a different type.
> +        (mapc (lambda (a)
> +                  (dom-remove-node svg a))
> +                old))
> +    (dom-append-child svg node))

Hm...  I think this is basically correct, but it's a behaviour change --
previously svg--append wouldn't append if the ID already existed, but
would keep the save place in the structure, but with this change, it
really always appends.

So I don't think that's quite right -- the old behaviour was OK, I think
(but undocumented).

-- 
(domestic pets only, the antidote for overdose, milk.)
   bloggy blog: http://lars.ingebrigtsen.no



^ permalink raw reply	[flat|nested] 13+ messages in thread

* Re: [Patch] Draw and scribble notes in GNU Emacs
  2021-09-09 12:23     ` Po Lu
@ 2021-09-09 14:51       ` Lars Ingebrigtsen
  2021-09-10 21:45         ` dalanicolai
  0 siblings, 1 reply; 13+ messages in thread
From: Lars Ingebrigtsen @ 2021-09-09 14:51 UTC (permalink / raw)
  To: Po Lu; +Cc: Eli Zaretskii, atamariya, emacs-devel

Po Lu <luangruo@yahoo.com> writes:

>> If that is Lars, there should be no problem with his existing
>> assignment (assuming he agrees to include that code in Emacs).
>
> It does seem to be Lars, which is a nice thing.  I wonder what he thinks
> about this?

That I should push ewp to GNU ELPA.  :-)

-- 
(domestic pets only, the antidote for overdose, milk.)
   bloggy blog: http://lars.ingebrigtsen.no



^ permalink raw reply	[flat|nested] 13+ messages in thread

* Re: [Patch] Draw and scribble notes in GNU Emacs
  2021-09-09 14:51       ` Lars Ingebrigtsen
@ 2021-09-10 21:45         ` dalanicolai
  2021-09-13  5:32           ` Anand Tamariya
  0 siblings, 1 reply; 13+ messages in thread
From: dalanicolai @ 2021-09-10 21:45 UTC (permalink / raw)
  To: Lars Ingebrigtsen; +Cc: Po Lu, Eli Zaretskii, Emacs Devel, atamariya

[-- Attachment #1: Type: text/plain, Size: 1258 bytes --]

Hey Anand,

this looks cool indeed! Have you seen my announcement of sketch-mode (
https://github.com/dalanicolai/sketch-mode) here?
I think you should check it out, it contains some nice ideas too.
Furthermore, I think your work could be well combined with my work into a
single package.
At first sight, it looks like we have been doing quite complementary
things. Would you be interested in joining efforts? I did not yet have a
closer look at your code b.t.w.,
just I thought it would be handy to notify you about sketch mode right away
(to prevent duplicate work, and to exchange ideas).

It looks like I am using a more updated version of svg.el b.t.w., maybe
you'd like to download and use the latest version of svg.el too.

Best regards,
Daniel



On Thu, 9 Sept 2021 at 16:51, Lars Ingebrigtsen <larsi@gnus.org> wrote:

> Po Lu <luangruo@yahoo.com> writes:
>
> >> If that is Lars, there should be no problem with his existing
> >> assignment (assuming he agrees to include that code in Emacs).
> >
> > It does seem to be Lars, which is a nice thing.  I wonder what he thinks
> > about this?
>
> That I should push ewp to GNU ELPA.  :-)
>
> --
> (domestic pets only, the antidote for overdose, milk.)
>    bloggy blog: http://lars.ingebrigtsen.no
>
>

[-- Attachment #2: Type: text/html, Size: 1954 bytes --]

^ permalink raw reply	[flat|nested] 13+ messages in thread

* Re: [Patch] Draw and scribble notes in GNU Emacs
  2021-09-09  8:33 ` Po Lu
  2021-09-09 12:00   ` Eli Zaretskii
@ 2021-09-13  5:15   ` Anand Tamariya
  1 sibling, 0 replies; 13+ messages in thread
From: Anand Tamariya @ 2021-09-13  5:15 UTC (permalink / raw)
  To: Po Lu; +Cc: emacs-devel

[-- Attachment #1: Type: text/plain, Size: 617 bytes --]

On Thu, Sep 9, 2021 at 2:03 PM Po Lu <luangruo@yahoo.com> wrote:

> Anand Tamariya <atamariya@gmail.com> writes:
>
> > Code: https://gitlab.com/atamariya/emacs/-/blob/dev/lisp/svg.el
>
> Good work, but it appears to be comprised solely of modifications to
> svg.el.  Is there any particular reason it cannot be separated from the
> rest of svg.el, which is geared towards programmatic creation of images,
> as opposed to providing a paint program?
>
Ultimately, it will be a separate package. Right now it also includes some
critical patches to svg.el. Hence it's easier to distribute it this way for
early adopters.

[-- Attachment #2: Type: text/html, Size: 1134 bytes --]

^ permalink raw reply	[flat|nested] 13+ messages in thread

* Re: [Patch] Draw and scribble notes in GNU Emacs
  2021-09-10 21:45         ` dalanicolai
@ 2021-09-13  5:32           ` Anand Tamariya
  0 siblings, 0 replies; 13+ messages in thread
From: Anand Tamariya @ 2021-09-13  5:32 UTC (permalink / raw)
  To: dalanicolai; +Cc: Po Lu, Lars Ingebrigtsen, Eli Zaretskii, Emacs Devel

[-- Attachment #1: Type: text/plain, Size: 1124 bytes --]

>
> this looks cool indeed! Have you seen my announcement of sketch-mode (
> https://github.com/dalanicolai/sketch-mode) here?
> I think you should check it out, it contains some nice ideas too.
> Furthermore, I think your work could be well combined with my work into a
> single package.
> At first sight, it looks like we have been doing quite complementary
> things. Would you be interested in joining efforts? I did not yet have a
> closer look at your code b.t.w.,
> just I thought it would be handy to notify you about sketch mode right
> away (to prevent duplicate work, and to exchange ideas).
>
I learnt about your package after I posted about mine on reddit. I agree we
have similar ideas. We only differ on the UI - you're using transient while
mine is geared towards taking quick notes. With my package, you continue to
use the keyboard. You switch mode only when you want to draw or you feel
it's easier to scribble. I believe both can co-exist.

It looks like I am using a more updated version of svg.el b.t.w., maybe
> you'd like to download and use the latest version of svg.el too.
>
Which version is this?

[-- Attachment #2: Type: text/html, Size: 1650 bytes --]

^ permalink raw reply	[flat|nested] 13+ messages in thread

* Re: [Patch] Draw and scribble notes in GNU Emacs
  2021-09-09 14:50 ` Lars Ingebrigtsen
@ 2021-09-13  5:36   ` Anand Tamariya
  2021-09-13  8:25     ` Lars Ingebrigtsen
  0 siblings, 1 reply; 13+ messages in thread
From: Anand Tamariya @ 2021-09-13  5:36 UTC (permalink / raw)
  To: Lars Ingebrigtsen; +Cc: emacs-devel

[-- Attachment #1: Type: text/plain, Size: 1357 bytes --]

>
> >  (defun svg--append (svg node)
> > +  ;; id is expected to be unique.
> >    (let ((old (and (dom-attr node 'id)
> >                 (dom-by-id svg
> >                               (concat "\\`" (regexp-quote (dom-attr node
> 'id))
> >                                       "\\'")))))
> >      (if old
> > -        ;; FIXME: This was (dom-set-attributes old (dom-attributes
> node))
> > -        ;; and got changed by commit
> f7ea7aa11f6211b5142bbcfc41c580d75485ca56
> > -        ;; without any explanation.
> > -     (setcdr (car old) (cdr node))
> > -      (dom-append-child svg node)))
> > +        ;; Remove old node. New node might be a different type.
> > +        (mapc (lambda (a)
> > +                  (dom-remove-node svg a))
> > +                old))
> > +    (dom-append-child svg node))
>
> Hm...  I think this is basically correct, but it's a behaviour change --
> previously svg--append wouldn't append if the ID already existed, but
> would keep the save place in the structure, but with this change, it
> really always appends.
>
> So I don't think that's quite right -- the old behaviour was OK, I think
> (but undocumented).
>
Existing code doesn't ensure ids are unique. Furthermore, in case id is
duplicated, only the attributes on the first tag gets replaced. That's a
little unpredictable behaviour from an API perspective.

[-- Attachment #2: Type: text/html, Size: 1822 bytes --]

^ permalink raw reply	[flat|nested] 13+ messages in thread

* Re: [Patch] Draw and scribble notes in GNU Emacs
  2021-09-13  5:36   ` Anand Tamariya
@ 2021-09-13  8:25     ` Lars Ingebrigtsen
  2021-09-13  8:31       ` Anand Tamariya
  0 siblings, 1 reply; 13+ messages in thread
From: Lars Ingebrigtsen @ 2021-09-13  8:25 UTC (permalink / raw)
  To: Anand Tamariya; +Cc: emacs-devel

Anand Tamariya <atamariya@gmail.com> writes:

> Existing code doesn't ensure ids are unique.

svg--append isn't the function to ensure this.  It's a very confusing
interface if a function like svg--append would make other nodes suddenly
disappear.

(And besides, `dom-remove-node' is very slow, so it shouldn't be used in
a function like this.)

> Furthermore, in case id is duplicated, only the attributes on the
> first tag gets replaced. That's a little unpredictable behaviour from
> an API perspective.

It's unpredictable, but the new version is still unpredictable -- but in
a different way, so I don't see a net positive here.  We're altering the
behaviour from one slightly odd interface to another slightly odd
interface.

-- 
(domestic pets only, the antidote for overdose, milk.)
   bloggy blog: http://lars.ingebrigtsen.no



^ permalink raw reply	[flat|nested] 13+ messages in thread

* Re: [Patch] Draw and scribble notes in GNU Emacs
  2021-09-13  8:25     ` Lars Ingebrigtsen
@ 2021-09-13  8:31       ` Anand Tamariya
  2021-09-13  8:47         ` Lars Ingebrigtsen
  0 siblings, 1 reply; 13+ messages in thread
From: Anand Tamariya @ 2021-09-13  8:31 UTC (permalink / raw)
  To: Lars Ingebrigtsen; +Cc: emacs-devel

[-- Attachment #1: Type: text/plain, Size: 320 bytes --]

> > Existing code doesn't ensure ids are unique.
>
> svg--append isn't the function to ensure this.

This is an internal function. So it's safe to change its name to something
which describes it's behaviour. However, this is the right function to
change as this is being called by all other svg node creation functions.

[-- Attachment #2: Type: text/html, Size: 552 bytes --]

^ permalink raw reply	[flat|nested] 13+ messages in thread

* Re: [Patch] Draw and scribble notes in GNU Emacs
  2021-09-13  8:31       ` Anand Tamariya
@ 2021-09-13  8:47         ` Lars Ingebrigtsen
  0 siblings, 0 replies; 13+ messages in thread
From: Lars Ingebrigtsen @ 2021-09-13  8:47 UTC (permalink / raw)
  To: Anand Tamariya; +Cc: emacs-devel

Anand Tamariya <atamariya@gmail.com> writes:

>  > Existing code doesn't ensure ids are unique.
>
>  svg--append isn't the function to ensure this. 
>
> This is an internal function. So it's safe to change its name to something
> which describes it's behaviour. However, this is the right function to change
> as this is being called by all other svg node creation functions.

The name isn't the point -- you're changing the way all these functions
work in an incompatible way.

-- 
(domestic pets only, the antidote for overdose, milk.)
   bloggy blog: http://lars.ingebrigtsen.no



^ permalink raw reply	[flat|nested] 13+ messages in thread

end of thread, other threads:[~2021-09-13  8:47 UTC | newest]

Thread overview: 13+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2021-09-09  7:54 [Patch] Draw and scribble notes in GNU Emacs Anand Tamariya
2021-09-09  8:33 ` Po Lu
2021-09-09 12:00   ` Eli Zaretskii
2021-09-09 12:23     ` Po Lu
2021-09-09 14:51       ` Lars Ingebrigtsen
2021-09-10 21:45         ` dalanicolai
2021-09-13  5:32           ` Anand Tamariya
2021-09-13  5:15   ` Anand Tamariya
2021-09-09 14:50 ` Lars Ingebrigtsen
2021-09-13  5:36   ` Anand Tamariya
2021-09-13  8:25     ` Lars Ingebrigtsen
2021-09-13  8:31       ` Anand Tamariya
2021-09-13  8:47         ` Lars Ingebrigtsen

Code repositories for project(s) associated with this public inbox

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

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).