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
|
# -*- coding: utf-8 -*-
# This file is part of MyPaint.
# Copyright (C) 2009-2013 by Martin Renold <martinxyz@gmx.ch>
# Copyright (C) 2013-2019 by the MyPaint Development Team.
#
# 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.
from __future__ import division, print_function
import logging
from gettext import gettext as _
from lib.gibindings import Gtk
from lib.gibindings import GLib
from . import tileddrawwidget
from . import windowing
import lib.document
from gui.document import CanvasController
from .freehand import FreehandMode
from . import brushmanager
from lib.observable import event
from . import drawutils
logger = logging.getLogger(__name__)
class BrushIconEditorWindow (windowing.SubWindow):
"""Main app subwindow for editing a brush's icon
See `BrushIconEditor` for details of how this operates.
"""
_TITLE_PREVIEWING = _('Brush Icon')
_TITLE_EDITING = _('Brush Icon (editing)')
def __init__(self):
from gui.application import get_app
app = get_app()
self._app = app
windowing.SubWindow.__init__(self, app)
self._editor = BrushIconEditor()
self._editor.mode_changed += self._editor_mode_changed
self.add(self._editor)
self.set_title(self._TITLE_PREVIEWING)
def _editor_mode_changed(self, editor, editing):
if editing:
self.set_title(self._TITLE_EDITING)
else:
self.set_title(self._TITLE_PREVIEWING)
class BrushIconEditor (Gtk.Grid):
"""Widget for previewing and editing a brush's icon at a large size
The editor has two modes: previewing and editing. In preview mode, the
widget's view of the brush icon just tracks the current brush. When the
Edit button is clicked, the icon is locked for editing and made sensitive,
and the user can switch brushes and colors as necessary to draw a pretty
icon. The Clear, Save and Revert buttons do what you'd expect; saving and
reverting also exit the editing mode.
The name of the brush which will be affected is shown at all times, along
with an indication of the current mode.
"""
## Class constants
_SCALE = 2
_NO_BRUSH_NAME = _("No brush selected")
_ICON_INVALID_TMPL = _(
u'<b>%s</b>\n'
'<small>Select a valid brush first</small>')
_ICON_MODIFIED_TMPL = _(
u'<b>%s</b> <i>(modified)</i>\n'
u'<small>Changes are not yet saved</small>')
_ICON_MODIFIABLE_TMPL = _(
u'<b>%s</b> (editing)\n'
u'<small>Paint with any brush or color</small>')
_ICON_PREVIEWING_TMPL = _(
'<b>%s</b>\n'
u'<small>Click ‘Edit’ to make changes to the icon</small>')
## Construction
def __init__(self):
Gtk.Grid.__init__(self)
self.set_row_spacing(6)
self.set_column_spacing(12)
from gui.application import get_app
app = get_app()
self._app = app
self._bm = app.brushmanager
self.set_border_width(12)
self._bm.brush_selected += self._brush_selected_cb
self._brush_to_edit = None
self._preview_modified = False
self._model = lib.document.Document(self._app.brush,
painting_only=True)
self._model.layer_stack.ensure_populated()
self._model.canvas_area_modified += self._preview_area_modified_cb
self._init_widgets()
@staticmethod
def _make_image_button(text, icon_name, cb):
b = Gtk.Button(label=text)
i = Gtk.Image()
i.set_from_icon_name(icon_name, Gtk.IconSize.BUTTON)
b.set_image(i)
b.set_image_position(Gtk.PositionType.TOP)
b.connect("clicked", cb)
b.set_can_focus(False)
b.set_can_default(False)
return b
def _init_widgets(self):
# Icon preview and edit TDW
self._tdw = tileddrawwidget.TiledDrawWidget()
self._tdw.set_model(self._model)
self._tdw.set_size_request(
brushmanager.PREVIEW_W * self._SCALE,
brushmanager.PREVIEW_H * self._SCALE
)
self._tdw.scale = 1 # it will be corrected later
self._tdw.scroll_on_allocate = False
self._tdw.pixelize_threshold = 0
tdw_align = Gtk.Alignment(xalign=0.5, yalign=0.0,
xscale=0.0, yscale=0.0)
tdw_align.add(self._tdw)
self.attach(tdw_align, 0, 0, 1, 1)
ctrlr = CanvasController(self._tdw)
ctrlr.init_pointer_events()
ctrlr.modes.default_mode_class = FreehandMode
# Brush name label
lbl = Gtk.Label()
lbl.set_alignment(0.5, 0.0)
lbl.set_justify(Gtk.Justification.CENTER)
lbl_tmpl = self._ICON_PREVIEWING_TMPL
lbl.set_markup(lbl_tmpl % (lib.xml.escape(self._NO_BRUSH_NAME),))
self.attach(lbl, 0, 1, 1, 1)
self.brush_name_label = lbl
# Action buttons
button_box = Gtk.VButtonBox()
button_box.set_homogeneous(False)
button_box.set_layout(Gtk.ButtonBoxStyle.START)
button_box.set_spacing(4)
b = self._make_image_button(
# TRANSLATORS: begin editing a brush's preview icon
_('Edit'), "mypaint-freehand-symbolic", self._edit_cb
)
b.set_tooltip_text(_("Begin editing this preview icon"))
button_box.pack_start(b, False, True, 0)
self._edit_button = b
b = self._make_image_button(
# TRANSLATORS: revert edits to a brush icon
_('Revert'), "mypaint-document-revert-symbolic", self._revert_cb
)
b.set_tooltip_text(_("Discard changes, and cancel editing"))
button_box.pack_start(b, False, True, 0)
button_box.set_child_secondary(b, False)
self._revert_button = b
b = self._make_image_button(
# TRANSLATORS: clear the brush preview icon being edited
_('Clear'), "mypaint-clear-all-symbolic", self._clear_cb
)
b.set_tooltip_text(_("Clear the preview icon"))
button_box.pack_start(b, False, True, 0)
self._clear_button = b
b = self._make_image_button(
# TRANSLATORS: set the brush icon to a built-in default
_('Auto'), "mypaint-document-new-symbolic", self._default_cb
)
b.set_tooltip_text(_("Use the default icon"))
button_box.pack_start(b, False, True, 0)
self._default_button = b
b = self._make_image_button(
# TRANSLATORS: save edits to a brush icon
_('Save'), "mypaint-document-save-symbolic", self._save_cb
)
b.set_tooltip_text(_("Save this preview icon, and finish editing"))
button_box.pack_start(b, False, True, 0)
button_box.set_child_secondary(b, True)
self._save_button = b
self.attach(button_box, 1, 0, 1, 2)
self.connect_after("show", self._show_cb)
mb = self._bm.selected_brush
preview = mb.preview
self._set_preview_pixbuf(preview)
name = mb.name
if name is None:
name = self._NO_BRUSH_NAME
self.brush_name_label.set_markup(lbl_tmpl % (lib.xml.escape(name),))
## Public subscriber interface
@event
def mode_changed(self, editing):
"""Event: called when the mode changes
:param editing: True if the editor is now in edit-mode.
"""
## Event handling
def _show_cb(self, widget):
self._update_widgets()
def _preview_area_modified_cb(self, preview_model, x, y, w, h):
"""Handles changes made to the preview canvas"""
self._preview_modified = True
GLib.idle_add(self._update_widgets)
def _brush_selected_cb(self, bm, managed_brush, brushinfo):
"""Updates the brush icon preview if it is not in edit mode"""
if not self._brush_to_edit:
self._set_preview_pixbuf(managed_brush.preview)
self._update_widgets()
## Button callbacks
def _clear_cb(self, button):
assert self._brush_to_edit
self._tdw.doc.clear_current_layer()
def _default_cb(self, button):
assert self._brush_to_edit
logger.debug("Set preview of %r to a procedural default",
self._brush_to_edit)
preview = drawutils.render_brush_preview_pixbuf(
self._brush_to_edit.get_brushinfo(),
)
self._set_preview_pixbuf(preview)
self.mode_changed(False)
def _edit_cb(self, button):
mb = self._bm.selected_brush
assert not self._brush_to_edit
self._brush_to_edit = mb
logger.debug("Started editing %r", self._brush_to_edit)
self._update_widgets()
self.mode_changed(True)
def _revert_cb(self, button):
assert self._brush_to_edit
logger.debug("Reverted edits to %r", self._brush_to_edit)
preview = self._bm.selected_brush.preview
self._set_preview_pixbuf(preview)
self._brush_to_edit = None
self._update_widgets()
self.mode_changed(False)
def _save_cb(self, button):
pixbuf = self._get_preview_pixbuf()
assert self._brush_to_edit is not None
b = self._brush_to_edit
assert b.name is not None
b.preview = pixbuf
try:
b.save()
except IOError as err:
logger.warning("Failed to save brush: %r (recoverable!)", err)
else:
for brushes in self._bm.groups.values():
if b in brushes:
self._bm.brushes_changed(brushes)
logger.info("Saved %r", b)
self._brush_to_edit = None
self._update_widgets()
self._bm.select_brush(b)
self.mode_changed(False)
return
# Failed to save the icon.
# This can happen if the user deletes a brush whose icon is being
# edited. To recover, add the saved settings as a new brush
logger.info("Failed to save preview, so saving cached settings"
"as a new brush")
b = self._brush_to_edit.clone(name=None)
group = brushmanager.NEW_BRUSH_GROUP
brushes = self._bm.get_group_brushes(group)
brushes.insert(0, b)
b.save()
b.persistent = True
self._bm.brushes_changed(brushes)
self._bm.select_brush(b)
# Reveal the "New" group if needed
ws = self._app.workspace
ws.reveal_tool_widget("MyPaintBrushGroupTool", (group,))
logger.info("Saved %r (full)", b)
self._brush_to_edit = None
self._update_widgets()
self.mode_changed(False)
## Utility methods
def _update_widgets(self):
editing = self._brush_to_edit is not None
if editing:
brush = self._brush_to_edit
else:
brush = self._bm.selected_brush
# Fairly rare: corresponds to no brush being selected on startup
valid = brush.name is not None
# Button states
self._revert_button.set_sensitive(valid and editing)
self._edit_button.set_sensitive(valid and not editing)
self._clear_button.set_sensitive(valid and editing)
self._default_button.set_sensitive(valid and editing)
self._save_button.set_sensitive(valid and editing)
self._model.layer_stack.current.locked = not (valid and editing)
# Text to display in the various states
if not valid:
tmpl = self._ICON_INVALID_TMPL
elif editing:
if self._preview_modified:
tmpl = self._ICON_MODIFIED_TMPL
else:
tmpl = self._ICON_MODIFIABLE_TMPL
else:
tmpl = self._ICON_PREVIEWING_TMPL
# Update edit flag label
name = brush.name
if (not valid) or name is None:
name = self._NO_BRUSH_NAME
markup = tmpl % (lib.xml.escape(name),)
self.brush_name_label.set_markup(markup)
# TDWs now divide their transform's scale by the HiDPI scale
# factor to make 100% zoom match what the screen does. Correct
# for that correction, because the brush icon editor still needs
# the preview to fill the widget's whole area.
scale_factor = self.get_scale_factor()
scale = round(self._SCALE * scale_factor)
if scale != self._tdw.scale:
self._tdw.scale = scale
self._tdw.queue_draw()
def _set_preview_pixbuf(self, pixbuf):
if pixbuf is None:
self._tdw.doc.clear()
else:
self._tdw.doc.load_from_pixbuf(pixbuf)
self._preview_modified = False
def _get_preview_pixbuf(self):
w, h = brushmanager.PREVIEW_W, brushmanager.PREVIEW_H
rootstack = self._tdw.doc.layer_stack
bbox = (0, 0, w, h)
return rootstack.render_layer_as_pixbuf(rootstack, bbox, alpha=False)
|