about summary refs log tree commit diff
path: root/pkgs/aszlig
diff options
context:
space:
mode:
authoraszlig <aszlig@nix.build>2020-05-21 05:00:02 +0200
committeraszlig <aszlig@nix.build>2020-05-21 05:06:21 +0200
commitfc8ef6d22fa4cfea661a094b88d4315e00673cba (patch)
treecc48712e25d351f2e5579c7a5c373609a6862e95 /pkgs/aszlig
parente71d8d665a7450369096712de3d606c8ac6268ff (diff)
pkgs/aszlig/xournal: Switch to xournal++
The patch I added to xournal was for keeping the aspect ratio when
annotating PDFs with images. However, looking at xournal++ the aspect
ratio is kept by default when resizing via corners so the patch is not
needed.

Since I don't really care a lot whether it's xournal or xournal++ and as
long as it does the very little things I intend to use it for, I don't
mind if it has too many features for my taste.

Signed-off-by: aszlig <aszlig@nix.build>
Diffstat (limited to 'pkgs/aszlig')
-rw-r--r--pkgs/aszlig/default.nix3
-rw-r--r--pkgs/aszlig/xournal/aspect-ratio.patch83
-rw-r--r--pkgs/aszlig/xournal/default.nix5
3 files changed, 1 insertions, 90 deletions
diff --git a/pkgs/aszlig/default.nix b/pkgs/aszlig/default.nix
index d1dbcb73..bc4e6150 100644
--- a/pkgs/aszlig/default.nix
+++ b/pkgs/aszlig/default.nix
@@ -1,4 +1,4 @@
-{ callPackage, callPackage_i686, vim_configurable, xournal, gopass }:
+{ callPackage, callPackage_i686, vim_configurable, gopass }:
 
 {
   aacolorize = callPackage ./aacolorize { };
@@ -11,5 +11,4 @@
   psi = callPackage ./psi { };
   pvolctrl = callPackage ./pvolctrl { };
   vim = callPackage ./vim { vim = vim_configurable; };
-  xournal = callPackage ./xournal { inherit xournal; };
 }
diff --git a/pkgs/aszlig/xournal/aspect-ratio.patch b/pkgs/aszlig/xournal/aspect-ratio.patch
deleted file mode 100644
index 23819904..00000000
--- a/pkgs/aszlig/xournal/aspect-ratio.patch
+++ /dev/null
@@ -1,83 +0,0 @@
-commit 4b95a904d81753b73c6ed24f65b5ff2ee84e97e2
-Author: David Barton <db9052@sourceforge.net>
-Date:   Mon Sep 4 06:27:12 2017 +0200
-
-    Preserve aspect ratio when resizing
-
-    To make the image patch even more useful, I've written this patch to
-    allow the aspect ratio to be preserved when resizing selections. (It
-    doesn't just apply to images.) Simply resize using the right mouse
-    button (button-3) rather than the left mouse button.
-
-    This patch should be applied after the enhanced image patch. (Though
-    it'd be easy enough to make the changes to the raw 0.4.5 source directly
-    since it doesn't change any of the image patch related areas.)
-
-diff --git a/src/xo-selection.c b/src/xo-selection.c
-index 7359bd8..05132b4 100644
---- a/src/xo-selection.c
-+++ b/src/xo-selection.c
-@@ -347,6 +347,12 @@ gboolean start_resizesel(GdkEvent *event)
-     ui.selection->new_x2 = ui.selection->bbox.right;
-     gnome_canvas_item_set(ui.selection->canvas_item, "dash", NULL, NULL);
-     update_cursor_for_resize(pt);
-+
-+    // Check whether we should preserve the aspect ratio
-+    if (event->button.button == 3)
-+        ui.cur_brush->tool_options |= TOOLOPT_SELECT_PRESERVE;
-+    else
-+        ui.cur_brush->tool_options &= ~TOOLOPT_SELECT_PRESERVE;
-     return TRUE;
-   }
-   return FALSE;
-@@ -498,6 +504,38 @@ void continue_resizesel(GdkEvent *event)
-   if (ui.selection->resizing_left) ui.selection->new_x1 = pt[0];
-   if (ui.selection->resizing_right) ui.selection->new_x2 = pt[0];
- 
-+  if (ui.cur_brush->tool_options & TOOLOPT_SELECT_PRESERVE) {
-+	  double aspectratio = (ui.selection->bbox.top - ui.selection->bbox.bottom)/(ui.selection->bbox.right - ui.selection->bbox.left);
-+	  double newheight = ui.selection->new_y1 - ui.selection->new_y2;
-+	  double newwidth = ui.selection->new_x2 - ui.selection->new_x1;
-+	  gboolean boundheight;
-+
-+	  // Resizing from top or bottom only
-+	  if ((ui.selection->resizing_top || ui.selection->resizing_bottom) && !(ui.selection->resizing_left || ui.selection->resizing_right))
-+		  boundheight = 0;
-+	  // Resizing from right or left only
-+	  else if (!(ui.selection->resizing_top || ui.selection->resizing_bottom) && (ui.selection->resizing_left || ui.selection->resizing_right))
-+		  boundheight = 1;
-+	  // Resizing from a corner
-+	  else if (newheight/aspectratio > newwidth)
-+		  boundheight = 0;
-+	  else
-+		  boundheight = 1;
-+
-+	  if (boundheight) {
-+		  // Bound the height
-+		  newheight = newwidth*aspectratio;
-+		  if (ui.selection->resizing_top) ui.selection->new_y1 = ui.selection->new_y2 + newheight;
-+		  else ui.selection->new_y2 = ui.selection->new_y1 - newheight;
-+	  }
-+	  else {
-+		  // Bound the width
-+		  newwidth = newheight/aspectratio;
-+		  if (ui.selection->resizing_left) ui.selection->new_x1 = ui.selection->new_x2 - newwidth;
-+		  else ui.selection->new_x2 = ui.selection->new_x1 + newwidth;
-+	  }
-+  }
-+
-   gnome_canvas_item_set(ui.selection->canvas_item, 
-     "x1", ui.selection->new_x1, "x2", ui.selection->new_x2,
-     "y1", ui.selection->new_y1, "y2", ui.selection->new_y2, NULL);
-diff --git a/src/xournal.h b/src/xournal.h
-index 3599e77..e8ad4ed 100644
---- a/src/xournal.h
-+++ b/src/xournal.h
-@@ -160,6 +160,7 @@ extern guint predef_bgcolors_rgba[COLOR_MAX];
- #define TOOLOPT_ERASER_STANDARD     0
- #define TOOLOPT_ERASER_WHITEOUT     1
- #define TOOLOPT_ERASER_STROKES      2
-+#define TOOLOPT_SELECT_PRESERVE     1 // Preserve the aspect ratio of the selection when resizing
- 
- extern double predef_thickness[NUM_STROKE_TOOLS][THICKNESS_MAX];
- 
diff --git a/pkgs/aszlig/xournal/default.nix b/pkgs/aszlig/xournal/default.nix
deleted file mode 100644
index bdccc210..00000000
--- a/pkgs/aszlig/xournal/default.nix
+++ /dev/null
@@ -1,5 +0,0 @@
-{ xournal }:
-
-xournal.overrideAttrs (attrs: {
-  patches = (attrs.patches or []) ++ [ ./aspect-ratio.patch ];
-})