2019-09-10 10:06:56 +00:00
|
|
|
#!/usr/bin/env python3
|
|
|
|
#
|
|
|
|
# RoarCanvasCommandsHelp.py
|
|
|
|
# Copyright (c) 2018, 2019 Lucio Andrés Illanes Albornoz <lucio@lucioillanes.de>
|
|
|
|
#
|
|
|
|
|
2019-10-24 19:14:00 +00:00
|
|
|
from GuiFrame import GuiCommandDecorator
|
2019-09-10 10:06:56 +00:00
|
|
|
from RoarWindowAbout import RoarWindowAbout
|
2019-09-24 14:46:02 +00:00
|
|
|
from RoarWindowMelp import RoarWindowMelp
|
2019-09-27 18:17:39 +00:00
|
|
|
import webbrowser, wx
|
2019-09-10 10:06:56 +00:00
|
|
|
|
|
|
|
class RoarCanvasCommandsHelp():
|
2019-09-24 14:46:02 +00:00
|
|
|
@GuiCommandDecorator("About roar", "&About roar", None, None, True)
|
2019-09-10 10:06:56 +00:00
|
|
|
def canvasAbout(self, event):
|
|
|
|
RoarWindowAbout(self.parentFrame)
|
Various bugfixes & usability improvements.
1) Add background colour toolbar beneath (foreground) colour toolbar.
2) Add colour flipping command w/ {accelerator,{menu,toolbar} item}.
3) Add {de,in}crease {brush,canvas} size accelerator.
4) Add {hide,show} assets window toolbar item.
5) Circle tool: draw outline with foreground colour.
6) Circle tool: honour transparency.
7) Fill tool: change comprehensive fill modifier key from <Shift> to <Ctrl>.
8) Fill tool: fill with {back,fore}ground colour given <[RL]MB>
9) Fix arrow keys cursor motion when scrolled down.
10 Instantly reflect {brush size,colour,tool} changes in canvas.
11) Object tool: honour transparency w/ non-external objects.
12) Object tool: update selection rectangle during <LMB> whilst dragging, set w/ release of <LMB>.
13) Rectangle tool: draw outline with foreground colour.
14) Rectangle tool: honour transparency.
15) Replace wx.ToolBar() w/ wx.lib.agw.aui.AuiToolBar() & custom wx.lib.agw.aui.AuiDefaultToolBarArt().
16) Restore scrolling position after resizing canvas.
.TODO: deleted.
assets/audio/roar{arab8,spoke11}.wav: added.
assets/text/hotkeys.txt: added to document hotkeys.
assets/text/requirements.txt, requirements.txt: moved.
assets/text/TODO: updated.
{assets/tools,lib{canvas,gui,roar,rtl,tools}}/*.py: remove Vim fold markers.
libroar/RoarCanvasCommandsFile.py:_importFile(): update wx.FileDialog() message.
libroar/RoarCanvasCommandsOperators.py:canvasOperator(): update invert colours {caption,label}.
2019-09-23 16:49:33 +00:00
|
|
|
|
2019-09-27 18:17:39 +00:00
|
|
|
@GuiCommandDecorator("View melp?", "View &melp?", None, [wx.MOD_NONE, wx.WXK_F1], True)
|
2019-09-24 14:46:02 +00:00
|
|
|
def canvasMelp(self, event):
|
|
|
|
RoarWindowMelp(self.parentFrame)
|
|
|
|
|
|
|
|
@GuiCommandDecorator("Open &issue on GitHub", "Open &issue on GitHub", None, None, True)
|
|
|
|
def canvasNewIssueGitHub(self, event):
|
|
|
|
webbrowser.open("https://github.com/lalbornoz/roar/issues/new")
|
|
|
|
|
|
|
|
@GuiCommandDecorator("Visit GitHub website", "Visit &GitHub website", None, None, True)
|
|
|
|
def canvasVisitGitHub(self, event):
|
|
|
|
webbrowser.open("https://www.github.com/lalbornoz/roar")
|
|
|
|
|
2019-09-10 10:06:56 +00:00
|
|
|
# vim:expandtab foldmethod=marker sw=4 ts=4 tw=0
|