1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133
|
# PyDia Rotation
# Copyright (c) 2003, Hans Breuer <hans@breuer.org>
# Copyright (c) 2009, 2011 Steffen Macke <sdteffen@sdteffen.de
#
# This program is free software; you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
# the Free Software Foundation; either version 2 of the License, or
# (at your option) any later version.
#
# This program is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
# GNU General Public License for more details.
#
# You should have received a copy of the GNU General Public License
# along with this program; if not, write to the Free Software
# Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
import warnings
import dia, math
import gettext
_ = gettext.gettext
class CRotateDialog :
def __init__(self, data) :
import gi
gi.require_version('Gtk', '3.0')
with warnings.catch_warnings():
warnings.filterwarnings("ignore", category=RuntimeWarning)
from gi.repository import Gtk
win = Gtk.Window()
win.connect("delete_event", self.on_delete)
win.set_title(_("Rotate counter-clockwise"))
self.diagram = data
self.win = win
box1 = Gtk.VBox()
win.add(box1)
box1.show()
box2 = Gtk.VBox(spacing=10)
box2.set_border_width(10)
box1.pack_start(box2, True, True, 0)
box2.show()
label1 = Gtk.Label()
label1.set_text(_('Rotation around (0,0). Rotation angle in degrees:'))
box2.pack_start(label1, True, True, 0)
label1.show()
self.entry = Gtk.Entry()
self.entry.set_text("0.0")
box2.pack_start(self.entry, True, True, 0)
self.entry.show()
separator = Gtk.HSeparator()
box1.pack_start(separator, 0, True, 0)
separator.show()
box2 = Gtk.VBox(spacing=10)
box2.set_border_width(10)
box1.pack_start(box2, 0, True, 0)
box2.show()
button = Gtk.Button("rotate")
button.connect("clicked", self.on_rotate)
box2.pack_start(button, True, True, 0)
button.set_can_default(True)
button.grab_default()
button.show()
win.show()
def on_rotate(self, *args) :
s = self.entry.get_text()
angle = float(s)
if angle >= 0 and angle <= 360 :
SimpleRotate (self.diagram, angle)
self.diagram.update_extents()
self.diagram.flush()
else :
dia.message(1, "Please enter an angle between 0 and 360 degrees.")
self.win.destroy ()
def on_delete (self, *args) :
self.win.destroy ()
def SimpleRotate(data, angle) :
# Rotation center
xm = 0.0
ym = 0.0
# Convert to radians
angle_rad = 2*math.pi - 2*math.pi*angle/360
objs = data.get_sorted_selected()
if len(objs) == 0 :
objs = data.active_layer.objects
scaleFailed = {}
ptype = dia.get_object_type('Standard - Polygon')
for o in objs :
if o.type.name == 'Standard - Box' :
r = o.properties['obj_bb'].value
p = ptype.create(0,0)
p = p[0]
p.properties['poly_points'] = [(r.left, r.top), (r.right, r.top), (r.right, r.bottom), (r.left, r.bottom)]
p.properties['line_width'] = o.properties['line_width']
p.properties['line_colour'] = o.properties['line_colour']
p.properties['line_style'] = o.properties['line_style']
p.properties['line_colour'] = o.properties['line_colour']
p.properties['fill_colour'] = o.properties['fill_colour']
p.properties['show_background'] = o.properties['show_background']
data.active_layer.add_object(p)
data.active_layer.remove_object(o)
o = p
for h in o.handles:
x = math.cos(angle_rad)*(h.pos.x+xm)-math.sin(angle_rad)*(h.pos.y+ym)
y = math.sin(angle_rad)*(h.pos.x+xm)+math.cos(angle_rad)*(h.pos.y)
o.move_handle(h, (x,y), 0, 0)
data.update_extents ()
dia.active_display().add_update_all()
def rotate_cb(data, flags) :
dlg = CRotateDialog(data)
dia.register_action ("ObjectsSimplerotation", _("Simple _Rotation"),
"/DisplayMenu/Objects/ObjectsExtensionStart",
rotate_cb)
|