/usr/lib/bkchem/bkchem/plugins/tk2cairo.py is in bkchem 0.13.0-5.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
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 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 | #--------------------------------------------------------------------------
# This file is part of BKchem - a chemical drawing program
# Copyright (C) 2004 Beda Kosata <beda@zirael.org>
# 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.
# Complete text of GNU GPL can be found in the file gpl.txt in the
# main directory of the program
#--------------------------------------------------------------------------
import cairo
import tkFont
from oasa import transform
from oasa import geometry
import math
import misc
import string
class tk2cairo:
_caps = {'butt': cairo.LINE_CAP_BUTT,
'round': cairo.LINE_CAP_ROUND,
'projecting': cairo.LINE_CAP_SQUARE}
_font_remap = {'helvetica': 'Arial',
'times': 'Times New Roman'}
_joins = {'round': cairo.LINE_JOIN_ROUND,
'miter': cairo.LINE_JOIN_MITER,
'bevel': cairo.LINE_JOIN_BEVEL}
_font_size_remap_cache = {}
def __init__( self):
pass
def export_to_cairo( self, tk_canvas, cairo_context, transformer=None):
self.context = cairo_context
self.paper = tk_canvas
if not transformer:
self.transformer = self.prepare_dumb_transformer()
else:
self.transformer = transformer
self.width_scaling = self.transformer.get_scaling()
self.draw_document()
def set_cairo_color( self, color):
if not color:
self.context.set_source_rgba( 0,0,0,0)
else:
colors = self.paper.winfo_rgb( color)
self.context.set_source_rgb( *map( lambda x: x/65535.0, colors))
def prepare_dumb_transformer( self):
tr = transform.transform()
tr.set_scaling( 1)
return tr
def p2c_width( self, w):
"""converts a paper width to canvas width using the value of self.width_scaling"""
return self.width_scaling * w
def draw_document( self):
# initial values
self.context.set_fill_rule( cairo.FILL_RULE_EVEN_ODD)
# the conversion function for coordinates
for item in self.paper.find_all():
if not "no_export" in self.paper.gettags( item):
method = "_draw_" + self.paper.type( item)
if not hasattr( self, method):
print "method to draw %s is not implemented" % self.paper.type( item)
else:
getattr( self, method)( item)
self.context.show_page()
def _draw_line( self, item):
if self.paper.itemcget( item, 'fill') != '':
# arrows at first as they make the lines bellow them shorter
start = None
end = None
arrows = self.paper.itemcget( item, 'arrow')
if arrows != "none":
color = self.paper.itemcget( item, 'fill')
coords = self.paper.coords( item)
if arrows in ("last", "both"):
end = self._create_arrow( self.paper.itemcget( item, 'arrowshape'), coords[-4:-2], coords[-2:], color)
if arrows in ("first", "both"):
start = self._create_arrow( self.paper.itemcget( item, 'arrowshape'), coords[2:4], coords[0:2], color)
coords = self.transformer.transform_xy_flat_list( self.paper.coords( item))
if start:
coords[0] = start[0]
coords[1] = start[1]
if end:
coords[-2] = end[0]
coords[-1] = end[1]
# cap style
cap = self.paper.itemcget( item, 'capstyle')
self.context.set_line_cap( self._caps[ cap])
# join style
join = self.paper.itemcget( item, 'joinstyle')
self.context.set_line_join( self._joins[ join])
# color
self.set_cairo_color( self.paper.itemcget( item, 'fill'))
# line width
width = self.p2c_width( float( self.paper.itemcget( item, 'width')))
self.context.set_line_width( width)
# the path itself
cs = self._flat_list_to_list_of_tuples( coords)
if self.paper.itemcget( item, 'smooth') != "0":
# smooth lines
xycoords = self._flat_list_to_list_of_tuples( coords)
beziers = geometry.tkspline_to_cubic_bezier( xycoords)
for bez in beziers:
self._create_cairo_curve( bez, closed=False)
else:
self._create_cairo_path( cs, closed=False)
# stroke it
self.context.stroke()
else:
pass #transparent things
def _draw_text( self, item):
text = unicode( self.paper.itemcget( item, 'text')).encode('utf-8')
x1, y1, x2, y2 = self.paper.bbox( item)
x1, y1, x2, y2 = self.transformer.transform_4( (x1+1, y1, x2-2, y2))
afont = tkFont.Font( font=self.paper.itemcget( item, 'font'))
conf = afont.config()
font_family = conf['family']
slant = 'italic' in conf['slant'] and cairo.FONT_SLANT_ITALIC or cairo.FONT_SLANT_NORMAL
weight = 'bold' in conf['weight'] and cairo.FONT_WEIGHT_BOLD or cairo.FONT_WEIGHT_NORMAL
# color
self.set_cairo_color( self.paper.itemcget( item, 'fill'))
# helvetica which is often used does not work for me - therefore I use remap
font_name = self._font_remap.get( font_family, font_family)
self.context.select_font_face( font_name, slant, weight)
# here we compute the font_size so that it matches what is on the screen
# it the text is short, we use scaling based on some sample text, otherwise we compute it exactly for the string
if len( text) <= 5:
cairo_size = self._get_cairo_font_size( afont)
else:
cairo_size = self._compute_cairo_font_size( afont, text=text)
self.context.set_font_size( cairo_size)
xbearing, ybearing, width, height, x_advance, y_advance = self.context.text_extents( text)
y = max(y1,y2)- self.transformer.get_scaling_xy()[1] * afont.metrics()['descent'] # * cairo_size / conf['size']
self.context.new_path()
self.context.move_to( x1 - (width - x2 + x1)/2 - xbearing, y)
self.context.text_path( text)
self.context.fill()
def _draw_rectangle( self, item):
coords = self.transformer.transform_4( self.paper.coords( item))
outline = self.paper.itemcget( item, 'outline')
fill = self.paper.itemcget( item, 'fill')
width = self.p2c_width( float( self.paper.itemcget( item, 'width')))
x1, y1, x2, y2 = coords
self.context.set_line_join( cairo.LINE_JOIN_MITER)
self.context.rectangle( x1, y1, x2-x1, y2-y1)
self.set_cairo_color( fill)
self.context.fill_preserve()
self.context.set_line_width( width)
self.set_cairo_color( outline)
self.context.stroke()
def _draw_polygon( self, item):
coords = self.transformer.transform_xy_flat_list( self.paper.coords( item))
outline = self.paper.itemcget( item, 'outline')
fill = self.paper.itemcget( item, 'fill')
width = self.p2c_width( float( self.paper.itemcget( item, 'width')))
cs = self._flat_list_to_list_of_tuples( coords)
# join style
join = self.paper.itemcget( item, 'joinstyle')
self.context.set_line_join( self._joins[ join])
self._create_cairo_path( cs, closed=True)
self.set_cairo_color( fill)
self.context.fill_preserve()
self.set_cairo_color( outline)
self.context.set_line_width( width)
self.context.stroke()
def _draw_oval( self, item):
coords = self.transformer.transform_4( self.paper.coords( item))
outline = self.paper.itemcget( item, 'outline')
fill = self.paper.itemcget( item, 'fill')
width = self.p2c_width( float( self.paper.itemcget( item, 'width')))
x1, y1, x2, y2 = coords
w = x2 - x1
h = y2 - y1
self.context.save()
self.context.translate( x1+w/2, y1+h/2)
self.context.scale( w/2.0, h/2.0)
self.context.arc( 0, 0, 1, 0, 2 * math.pi)
self.context.restore()
self.set_cairo_color( fill)
self.context.fill_preserve()
self.context.set_line_width( width)
self.set_cairo_color( outline)
self.context.stroke()
# other than drawing private methods
def _create_arrow( self, shape, start, to, color):
"""creates an arrow with 'shape' pointing from 'start' to 'to' filled with 'color'
and returns x, y - where the to should be to not to overlay the arrow"""
a, b, c = map( float, shape.split())
points = [a,0, a-b,c, 0,0, a-b,-c]
ang = geometry.clockwise_angle_from_east( to[0]-start[0], to[1]-start[1])
tr = transform.transform()
tr.set_move( -a, 0)
tr.set_rotation( ang)
tr.set_move( to[0], to[1])
points = tr.transform_xy_flat_list( points)
points = self.transformer.transform_xy_flat_list( points)
points = self._flat_list_to_list_of_tuples( points)
self.context.set_line_join( cairo.LINE_JOIN_MITER)
self._create_cairo_path( points, closed=True)
self.set_cairo_color( color)
self.context.fill()
return points[1]
def _flat_list_to_list_of_tuples( self, coords):
i = 0
cs = []
for c in coords:
if i == 0:
x = c
i = 1
else:
cs.append( (x, c))
i = 0
return cs
def _create_cairo_path( self, points, closed=False):
x, y = points.pop( 0)
self.context.move_to( x, y)
for (x,y) in points:
self.context.line_to( x, y)
if closed:
self.context.close_path()
def _create_cairo_curve( self, points, closed=False):
x1, y1, x2, y2, x3, y3, x4, y4 = points
self.context.move_to( x1, y1)
self.context.curve_to( x2, y2, x3, y3, x4, y4)
if closed:
self.context.close_path()
# the following methods deal with font_size remapping between cairo and Tk
def _get_cairo_font_size( self, tk_font):
conf = tk_font.config()
family = conf['family']
tk_font_size = conf['size']
if family in self._font_size_remap_cache:
if tk_font_size in self._font_size_remap_cache[family]:
return self._font_size_remap_cache[family][tk_font_size]
else:
self._font_size_remap_cache[family] = {}
cairo_size = self._compute_cairo_font_size( tk_font)
self._font_size_remap_cache[family][tk_font_size] = cairo_size
return cairo_size
def _compute_cairo_font_size( self, tk_font, text=""):
if text:
test_string = text
else:
test_string = string.ascii_letters + string.punctuation
tk_length = self.p2c_width( tk_font.measure( test_string))
cairo_size = self.p2c_width( tk_font.config()['size'])
self.context.set_font_size( cairo_size)
for i in range(2): # two iterations should be enough
xbearing, ybearing, width, height, x_advance, y_advance = self.context.text_extents( test_string)
cairo_size *= tk_length/width
self.context.set_font_size( cairo_size)
return cairo_size
|