/usr/lib/python2.7/dist-packages/DisplayCAL/wxMeasureFrame.py is in dispcalgui 3.1.0.0-1.
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 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 | # -*- coding: utf-8 -*-
import os
import re
import sys
import config
import localization as lang
from config import (defaults, getcfg, geticon, get_argyll_display_number,
get_default_dpi, get_display_number,
get_display_rects, scale_adjustment_factor, setcfg,
writecfg)
from debughelpers import handle_error
from log import safe_print
from meta import name as appname
from options import debug
from util_list import floatlist, strlist
from util_str import safe_unicode
from wxaddons import wx
from wxwindows import BaseApp, ConfirmDialog, InfoDialog, InvincibleFrame
from wxfixes import GenBitmapButton as BitmapButton
try:
import RealDisplaySizeMM as RDSMM
except ImportError, exception:
RDSMM = None
handle_error(u"Error - couldn't import RealDisplaySizeMM: " +
safe_unicode(exception), silent=True)
def get_default_size():
"""
Get and return the default size for the window in pixels.
The default size is always equivalent to 100 x 100 mm according
to the display's size as returned by the RealDisplaySizeMM function,
which uses the same code as Argyll to determine that size.
This function is used internally.
"""
display_sizes = []
display_sizes_mm = []
for display_no in xrange(len(getcfg("displays"))):
display_no = get_display_number(display_no)
display_size = wx.Display(display_no).Geometry[2:]
display_size_mm = []
if RDSMM:
try:
display_size_mm = RDSMM.RealDisplaySizeMM(display_no)
except Exception, exception:
handle_error(u"Error - RealDisplaySizeMM() failed: " +
safe_unicode(exception), silent=True)
else:
display_size_mm = floatlist(display_size_mm)
if debug:
safe_print("[D] display_size_mm:", display_size_mm)
if not len(display_size_mm) or 0 in display_size_mm:
ppi_def = get_default_dpi()
method = 1
if method == 0:
# use configurable screen diagonal
inch = 20.0
mm = inch * 25.4
f = mm / math.sqrt(math.pow(display_size[0], 2) + \
math.pow(display_size[1], 2))
w_mm = math.sqrt(math.pow(mm, 2) - \
math.pow(display_size[1] * f, 2))
h_mm = math.sqrt(math.pow(mm, 2) - \
math.pow(display_size[0] * f, 2))
display_size_mm = w_mm, h_mm
elif method == 1:
# use the first display
display_size_1st = wx.DisplaySize()
display_size_mm = floatlist(wx.DisplaySizeMM())
if 0 in display_size_mm:
# bogus
display_size_mm = [display_size_1st[0] / ppi_def * 25.4,
display_size_1st[1] / ppi_def * 25.4]
if display_no > 0:
display_size_mm[0] = display_size[0] / (
display_size_1st[0] / display_size_mm[0])
display_size_mm[1] = display_size[1] / (
display_size_1st[1] / display_size_mm[1])
else:
# use assumed ppi
display_size_mm = (display_size[0] / ppi_def * 25.4,
display_size[1] / ppi_def * 25.4)
display_sizes.append(display_size)
display_sizes_mm.append(display_size_mm)
if sum(mm[0] for mm in display_sizes_mm) / \
len(display_sizes_mm) == display_sizes_mm[0][0] and \
sum(mm[1] for mm in display_sizes_mm) / \
len(display_sizes_mm) == display_sizes_mm[0][1]:
# display_size_mm is the same for all screens, use the 1st one
display_size = display_sizes[0]
display_size_mm = display_sizes_mm[0]
else:
if getcfg("display_lut.link"):
display_no = getcfg("display.number") - 1
else:
display_no = getcfg("display_lut.number") - 1
display_size = display_sizes[display_no]
display_size_mm = display_sizes_mm[display_no]
px_per_mm = (display_size[0] / display_size_mm[0],
display_size[1] / display_size_mm[1])
if debug:
safe_print("[D] H px_per_mm:", px_per_mm[0])
safe_print("[D] V px_per_mm:", px_per_mm[1])
return round(100.0 * max(px_per_mm))
class MeasureFrame(InvincibleFrame):
"""
A rectangular window to set the measure area size for dispcal/dispread.
"""
exitcode = 1
def __init__(self, parent=None, id=-1):
InvincibleFrame.__init__(self, parent, id,
lang.getstr("measureframe.title"),
style=wx.DEFAULT_FRAME_STYLE &
~(wx.RESIZE_BORDER | wx.MAXIMIZE_BOX),
name="measureframe")
self.SetIcons(config.get_icon_bundle([256, 48, 32, 16], appname))
self.Bind(wx.EVT_CLOSE, self.close_handler, self)
self.Bind(wx.EVT_MOVE, self.move_handler, self)
self.panel = wx.Panel(self, -1)
self.sizer = wx.GridSizer(3, 1, 0, 0)
self.panel.SetSizer(self.sizer)
self.hsizer = wx.BoxSizer(wx.HORIZONTAL)
self.sizer.Add(self.hsizer, flag=wx.ALIGN_CENTER_HORIZONTAL | wx.ALL |
wx.ALIGN_TOP, border=10)
self.zoommaxbutton = BitmapButton(self.panel, -1,
geticon(32, "zoom-best-fit"),
style=wx.NO_BORDER)
self.Bind(wx.EVT_BUTTON, self.zoommax_handler, self.zoommaxbutton)
self.hsizer.Add(self.zoommaxbutton, flag=wx.ALIGN_CENTER)
self.zoommaxbutton.SetToolTipString(lang.getstr("measureframe.zoommax"))
self.hsizer.Add((2, 1))
self.zoominbutton = BitmapButton(self.panel, -1,
geticon(32, "zoom-in"),
style=wx.NO_BORDER)
self.Bind(wx.EVT_BUTTON, self.zoomin_handler, self.zoominbutton)
self.hsizer.Add(self.zoominbutton, flag=wx.ALIGN_CENTER)
self.zoominbutton.SetToolTipString(lang.getstr("measureframe.zoomin"))
self.hsizer.Add((2, 1))
self.zoomnormalbutton = BitmapButton(self.panel, -1,
geticon(32, "zoom-original"),
style=wx.NO_BORDER)
self.Bind(wx.EVT_BUTTON, self.zoomnormal_handler, self.zoomnormalbutton)
self.hsizer.Add(self.zoomnormalbutton, flag=wx.ALIGN_CENTER)
self.zoomnormalbutton.SetToolTipString(lang.getstr("measureframe."
"zoomnormal"))
self.hsizer.Add((2, 1))
self.zoomoutbutton = BitmapButton(self.panel, -1,
geticon(32, "zoom-out"),
style=wx.NO_BORDER)
self.Bind(wx.EVT_BUTTON, self.zoomout_handler, self.zoomoutbutton)
self.hsizer.Add(self.zoomoutbutton, flag=wx.ALIGN_CENTER)
self.zoomoutbutton.SetToolTipString(lang.getstr("measureframe.zoomout"))
self.centerbutton = BitmapButton(self.panel, -1,
geticon(32, "window-center"),
style=wx.NO_BORDER)
self.Bind(wx.EVT_BUTTON, self.center_handler, self.centerbutton)
self.sizer.Add(self.centerbutton, flag=wx.ALIGN_CENTER | wx.LEFT |
wx.RIGHT, border=10)
self.centerbutton.SetToolTipString(lang.getstr("measureframe.center"))
self.vsizer = wx.BoxSizer(wx.VERTICAL)
self.sizer.Add(self.vsizer, flag=wx.ALIGN_BOTTOM |
wx.ALIGN_CENTER_HORIZONTAL)
self.measure_darken_background_cb = wx.CheckBox(self.panel, -1,
lang.getstr("measure.darken_background"))
self.measure_darken_background_cb.SetValue(
bool(int(getcfg("measure.darken_background"))))
self.Bind(wx.EVT_CHECKBOX, self.measure_darken_background_ctrl_handler,
id=self.measure_darken_background_cb.GetId())
self.vsizer.Add(self.measure_darken_background_cb,
flag=wx.ALIGN_BOTTOM | wx.ALIGN_CENTER_HORIZONTAL |
wx.LEFT | wx.RIGHT | wx.TOP, border=10)
self.measurebutton = wx.Button(self.panel, -1,
lang.getstr("measureframe.measurebutton"))
self.Bind(wx.EVT_BUTTON, self.measure_handler, self.measurebutton)
self.vsizer.Add(self.measurebutton, flag=wx.ALIGN_BOTTOM |
wx.ALIGN_CENTER_HORIZONTAL |
wx.ALL, border=10)
self.measurebutton.SetMaxFontSize(11)
self.measurebutton.SetDefault()
self.measurebutton.SetFocus()
self.display_no = wx.Display.GetFromWindow(self)
self.display_rects = get_display_rects()
def measure_darken_background_ctrl_handler(self, event):
if self.measure_darken_background_cb.GetValue() and \
getcfg("measure.darken_background.show_warning"):
dlg = ConfirmDialog(self,
msg=lang.getstr("measure.darken_background."
"warning"),
ok=lang.getstr("ok"),
cancel=lang.getstr("cancel"),
bitmap=geticon(32, "dialog-warning"))
chk = wx.CheckBox(dlg, -1, lang.getstr("dialog.do_not_show_again"))
dlg.Bind(wx.EVT_CHECKBOX,
self.measure_darken_background_warning_handler,
id=chk.GetId())
dlg.sizer3.Add(chk, flag=wx.TOP | wx.ALIGN_LEFT, border=12)
dlg.sizer0.SetSizeHints(dlg)
dlg.sizer0.Layout()
rslt = dlg.ShowModal()
if rslt == wx.ID_CANCEL:
self.measure_darken_background_cb.SetValue(False)
setcfg("measure.darken_background",
int(self.measure_darken_background_cb.GetValue()))
def measure_darken_background_warning_handler(self, event):
setcfg("measure.darken_background.show_warning",
int(not event.GetEventObject().GetValue()))
def info_handler(self, event):
InfoDialog(self, msg=lang.getstr("measureframe.info"),
ok=lang.getstr("ok"),
bitmap=geticon(32, "dialog-information"),
log=False)
def measure_handler(self, event):
if self.Parent and hasattr(self.Parent, "call_pending_function"):
self.Parent.call_pending_function()
else:
MeasureFrame.exitcode = 255
self.Close()
def Show(self, show=True):
if show:
self.measure_darken_background_cb.SetValue(
bool(int(getcfg("measure.darken_background"))))
if self.Parent and hasattr(self.Parent, "display_ctrl"):
display_no = self.Parent.display_ctrl.GetSelection()
else:
display_no = getcfg('display.number') - 1
if display_no < 0 or display_no > wx.Display.GetCount() - 1:
display_no = 0
else:
display_no = get_display_number(display_no)
x, y = wx.Display(display_no).Geometry[:2]
self.SetPosition((x, y)) # place measure frame on correct display
self.place_n_zoom(
*floatlist(getcfg("dimensions.measureframe").split(",")))
self.display_no = wx.Display.GetFromWindow(self)
elif self.IsShownOnScreen():
setcfg("dimensions.measureframe", self.get_dimensions())
if self.Parent and hasattr(self.Parent, "get_set_display"):
self.Parent.get_set_display()
wx.Frame.Show(self, show)
def Hide(self):
self.Show(False)
def place_n_zoom(self, x=None, y=None, scale=None):
"""
Place and scale the window.
x, y and scale need to be in Argyll coordinates (0.0...1.0)
if given. Without arguments, they are read from the user
configuration.
"""
if debug: safe_print("[D] measureframe.place_n_zoom")
if None in (x, y, scale):
cur_x, cur_y, cur_scale = floatlist(self.get_dimensions().split(","))
if x is None:
x = cur_x
if y is None:
y = cur_y
if scale is None:
scale = cur_scale
if scale > 50.0: # Argyll max
scale = 50
if debug: safe_print(" x:", x)
if debug: safe_print(" y:", y)
if debug: safe_print(" scale:", scale)
if debug:
safe_print("[D] scale_adjustment_factor:", scale_adjustment_factor)
scale /= scale_adjustment_factor
if debug: safe_print("[D] scale / scale_adjustment_factor:", scale)
display = self.get_display(getcfg("display.number") - 1)
display_client_rect = display[2]
if debug: safe_print("[D] display_client_rect:", display_client_rect)
display_client_size = display_client_rect[2:]
if debug: safe_print("[D] display_client_size:", display_client_size)
measureframe_min_size = [max(self.sizer.GetMinSize())] * 2
if debug: safe_print("[D] measureframe_min_size:", measureframe_min_size)
default_measureframe_size = get_default_size()
defaults["size.measureframe"] = default_measureframe_size
size = [min(display_client_size[0],
default_measureframe_size * scale),
min(display_client_size[1],
default_measureframe_size * scale)]
if measureframe_min_size[0] > size[0]:
size = measureframe_min_size
if size[0] > display_client_size[0]:
size[0] = display_client_size[0]
if size[1] > display_client_size[1]:
size[1] = display_client_size[1]
if max(size) >= max(display_client_size):
scale = 50
if debug: safe_print("[D] measureframe_size:", size)
self.SetMaxSize((-1, -1))
self.SetMinSize(size)
self.SetSize(size)
self.SetMaxSize(size)
display_rect = display[1]
if debug: safe_print("[D] display_rect:", display_rect)
display_size = display_rect[2:]
if debug: safe_print("[D] display_size:", display_size)
if sys.platform in ("darwin", "win32"):
titlebar = 0 # size already includes window decorations
else:
titlebar = 25 # assume titlebar height of 25px
measureframe_pos = [display_rect[0] + round((display_size[0] -
size[0]) *
x),
display_rect[1] + round((display_size[1] -
size[1]) *
y) - titlebar]
if measureframe_pos[0] < display_client_rect[0]:
measureframe_pos[0] = display_client_rect[0]
if measureframe_pos[1] < display_client_rect[1]:
measureframe_pos[1] = display_client_rect[1]
if debug: safe_print("[D] measureframe_pos:", measureframe_pos)
setcfg("dimensions.measureframe", ",".join(strlist((x, y, scale))))
self.SetPosition(measureframe_pos)
def zoomin_handler(self, event):
if debug: safe_print("[D] measureframe_zoomin_handler")
# We can't use self.get_dimensions() here because if we are near
# fullscreen, next magnification step will be larger than normal
display_size = self.get_display()[1][2:]
default_measureframe_size = get_default_size()
size = floatlist(self.GetSize())
x, y = None, None
self.place_n_zoom(x, y, scale=(display_size[0] /
default_measureframe_size) /
(display_size[0] /
size[0]) + .125)
def zoomout_handler(self, event):
if debug: safe_print("[D] measureframe_zoomout_handler")
# We can't use self.get_dimensions() here because if we are
# fullscreen, scale will be 50, thus changes won't be visible quickly
display_size = self.get_display()[1][2:]
default_measureframe_size = get_default_size()
size = floatlist(self.GetSize())
x, y = None, None
self.place_n_zoom(x, y, scale=(display_size[0] /
default_measureframe_size) /
(display_size[0] /
size[0]) - .125)
def zoomnormal_handler(self, event):
if debug: safe_print("[D] measureframe_zoomnormal_handler")
x, y = None, None
scale = floatlist(defaults["dimensions.measureframe"].split(","))[2]
self.place_n_zoom(x, y, scale=scale)
def zoommax_handler(self, event):
if debug: safe_print("[D] measureframe_zoommax_handler")
display_client_rect = self.get_display()[2]
if debug: safe_print("[D] display_client_rect:", display_client_rect)
display_client_size = display_client_rect[2:]
if debug: safe_print("[D] display_client_size:", display_client_size)
size = self.GetSize()
if debug: safe_print(" size:", size)
if max(size) >= max(display_client_size) - 50:
dim = getcfg("dimensions.measureframe.unzoomed")
self.place_n_zoom(*floatlist(dim.split(",")))
else:
setcfg("dimensions.measureframe.unzoomed", self.get_dimensions())
self.place_n_zoom(x=.5, y=.5, scale=50.0)
def center_handler(self, event):
if debug: safe_print("[D] measureframe_center_handler")
x, y = floatlist(defaults["dimensions.measureframe"].split(","))[:2]
self.place_n_zoom(x, y)
def close_handler(self, event):
if debug: safe_print("[D] measureframe_close_handler")
self.Hide()
if self.Parent:
self.Parent.Show()
if getattr(self.Parent, "restore_measurement_mode"):
self.Parent.restore_measurement_mode()
if getattr(self.Parent, "restore_testchart"):
self.Parent.restore_testchart()
else:
writecfg()
self.Destroy()
if MeasureFrame.exitcode != 255:
MeasureFrame.exitcode = 0
def get_display(self, display_no=None):
"""
Get the display number, geometry and client area, taking into
account separate X screens, TwinView and similar
"""
if wx.Display.GetCount() == 1 and len(self.display_rects) > 1:
# Separate X screens, TwinView or similar
display = wx.Display(0)
geometry = display.Geometry
union = wx.Rect()
xy = []
for rect in self.display_rects:
if rect[:2] in xy or rect[2:] == geometry[2:]:
# Overlapping x y coordinates or screen filling whole
# reported geometry, so assume separate X screens
union = None
break
xy.append(rect[:2])
union = union.Union(rect)
if union == geometry:
# Assume TwinView or similar where Argyll enumerates 1+n
# displays but wx only 'sees' one that is the union of them
framerect = self.Rect
if display_no is not None:
geometry = self.display_rects[display_no]
else:
display_no = 0
for i, coord in enumerate(framerect[:2]):
if coord < 0:
framerect[i] = 0
elif coord > geometry[i + 2]:
framerect[i] = geometry[i]
for i, display_rect in enumerate(self.display_rects):
if display_rect.Contains(framerect[:2]):
display_no = i
geometry = display_rect
break
elif display_no is None:
# Assume separate X screens
display_no = 0
client_rect = wx.Rect(*tuple(geometry)).Intersect(display.GetRealClientArea())
else:
display_no = wx.Display.GetFromWindow(self)
display = self.GetDisplay()
geometry = display.Geometry
client_rect = display.GetRealClientArea()
return display_no, geometry, client_rect
def move_handler(self, event):
if not self.IsShownOnScreen():
return
display_no, geometry, client_area = self.get_display()
if display_no != self.display_no:
self.display_no = display_no
# Translate from wx display index to Argyll display index
n = get_argyll_display_number(geometry)
if n is not None:
# Save Argyll display index to configuration
setcfg("display.number", n + 1)
def get_dimensions(self):
"""
Calculate and return the relative dimensions from the pixel values.
Returns x, y and scale in Argyll coordinates (0.0...1.0).
"""
if debug: safe_print("[D] measureframe.get_dimensions")
display = self.get_display()
display_rect = display[1]
display_size = display_rect[2:]
display_client_rect = display[2]
display_client_size = display_client_rect[2:]
if debug: safe_print("[D] display_size:", display_size)
if debug: safe_print("[D] display_client_size:", display_client_size)
default_measureframe_size = get_default_size()
if debug:
safe_print("[D] default_measureframe_size:",
default_measureframe_size)
measureframe_pos = floatlist(self.GetScreenPosition())
measureframe_pos[0] -= display_rect[0]
measureframe_pos[1] -= display_rect[1]
if debug: safe_print("[D] measureframe_pos:", measureframe_pos)
size = floatlist(self.GetSize())
if debug: safe_print(" size:", size)
if max(size) >= max(display_client_size) - 50:
# Fullscreen?
scale = 50.0 # Argyll max is 50
measureframe_pos = [.5, .5]
else:
scale = (display_size[0] / default_measureframe_size) / \
(display_size[0] / size[0])
if debug: safe_print("[D] scale:", scale)
if debug:
safe_print("[D] scale_adjustment_factor:",
scale_adjustment_factor)
scale *= scale_adjustment_factor
if size[0] >= display_client_size[0]:
measureframe_pos[0] = .5
elif measureframe_pos[0] != 0:
if display_size[0] - size[0] < measureframe_pos[0]:
measureframe_pos[0] = display_size[0] - size[0]
measureframe_pos[0] = 1.0 / ((display_size[0] - size[0]) /
(measureframe_pos[0]))
if size[1] >= display_client_size[1]:
measureframe_pos[1] = .5
elif measureframe_pos[1] != 0:
if display_size[1] - size[1] < measureframe_pos[1]:
measureframe_pos[1] = display_size[1] - size[1]
if sys.platform in ("darwin", "win32"):
titlebar = 0 # size already includes window decorations
else:
titlebar = 25 # assume titlebar height of 25px
measureframe_pos[1] = 1.0 / ((display_size[1] - size[1]) /
(measureframe_pos[1] + titlebar))
if debug: safe_print("[D] scale:", scale)
if debug: safe_print("[D] measureframe_pos:", measureframe_pos)
measureframe_dimensions = ",".join(str(max(0, n)) for n in
measureframe_pos + [scale])
if debug:
safe_print("[D] measureframe_dimensions:", measureframe_dimensions)
return measureframe_dimensions
def main():
config.initcfg()
lang.init()
app = BaseApp(0)
app.TopWindow = MeasureFrame()
app.TopWindow.Show()
app.MainLoop()
if __name__ == "__main__":
main()
sys.exit(MeasureFrame.exitcode)
|