inkstitch/lib/extensions/install.py

117 wiersze
4.1 KiB
Python
Czysty Zwykły widok Historia

2018-06-24 19:55:13 +00:00
# -*- coding: UTF-8 -*-
import sys
import traceback
import os
from glob import glob
import wx
import inkex
2018-07-05 01:16:49 +00:00
from ..utils import guess_inkscape_config_path, get_bundled_dir
2018-08-22 01:43:09 +00:00
from ..i18n import _
2018-06-24 19:55:13 +00:00
class InstallerFrame(wx.Frame):
def __init__(self, *args, **kwargs):
wx.Frame.__init__(self, *args, **kwargs)
self.path = guess_inkscape_config_path()
panel = wx.Panel(self)
sizer = wx.BoxSizer(wx.VERTICAL)
2018-06-24 19:55:13 +00:00
text_sizer = wx.BoxSizer(wx.HORIZONTAL)
2018-08-22 00:50:14 +00:00
text = (_('Ink/Stitch can install files ("add-ons") that make it easier to use Inkscape to create machine embroidery designs. '
'These add-ons will be installed:') +
2018-09-19 00:39:54 +00:00
u"\n\n" + _("thread manufacturer color palettes") +
u"\n" + _("Ink/Stitch visual commands (Object -> Symbols...)"))
2018-06-24 19:55:13 +00:00
static_text = wx.StaticText(panel, label=text)
font = wx.Font(12, wx.DEFAULT, wx.NORMAL, wx.NORMAL)
2018-06-24 19:55:13 +00:00
static_text.SetFont(font)
2018-08-22 00:32:50 +00:00
text_sizer.Add(static_text, proportion=0, flag=wx.ALL | wx.EXPAND, border=10)
sizer.Add(text_sizer, proportion=3, flag=wx.ALL | wx.EXPAND, border=0)
buttons_sizer = wx.BoxSizer(wx.HORIZONTAL)
install_button = wx.Button(panel, wx.ID_ANY, _("Install"))
install_button.SetBitmap(wx.ArtProvider.GetBitmap(wx.ART_TICK_MARK))
2018-08-22 00:32:50 +00:00
buttons_sizer.Add(install_button, proportion=0, flag=wx.ALIGN_RIGHT | wx.ALL, border=5)
cancel_button = wx.Button(panel, wx.ID_CANCEL, _("Cancel"))
2018-08-22 00:32:50 +00:00
buttons_sizer.Add(cancel_button, proportion=0, flag=wx.ALIGN_RIGHT | wx.ALL, border=5)
sizer.Add(buttons_sizer, proportion=1, flag=wx.ALIGN_RIGHT | wx.ALIGN_BOTTOM)
2018-06-24 19:55:13 +00:00
panel.SetSizer(sizer)
panel.Layout()
cancel_button.Bind(wx.EVT_BUTTON, self.cancel_button_clicked)
install_button.Bind(wx.EVT_BUTTON, self.install_button_clicked)
def cancel_button_clicked(self, event):
self.Destroy()
def chooser_button_clicked(self, event):
2018-06-24 19:55:13 +00:00
dialog = wx.DirDialog(self, _("Choose Inkscape directory"))
if dialog.ShowModal() != wx.ID_CANCEL:
self.path_input.SetValue(dialog.GetPath())
def install_button_clicked(self, event):
2018-08-25 01:25:30 +00:00
if sys.platform == "win32":
# On windows, the default icon shows as a broken image. No idea
# why. Workaround: don't show an icon.
style = wx.ICON_NONE
else:
style = 0
try:
2018-06-24 19:55:13 +00:00
self.install_addons('palettes')
self.install_addons('symbols')
2018-08-22 01:43:09 +00:00
except Exception:
wx.MessageDialog(self,
2018-06-24 19:55:13 +00:00
_('Inkscape add-on installation failed') + ': \n' + traceback.format_exc(),
_('Installation Failed'),
2018-08-25 01:25:30 +00:00
wx.OK | style).ShowModal()
else:
wx.MessageDialog(self,
2018-06-24 19:55:13 +00:00
_('Inkscape add-on files have been installed. Please restart Inkscape to load the new add-ons.'),
_('Installation Completed'),
2018-08-25 01:25:30 +00:00
wx.OK | style).ShowModal()
self.Destroy()
2018-06-24 19:55:13 +00:00
def install_addons(self, type):
path = os.path.join(self.path, type)
2018-07-05 01:16:49 +00:00
src_dir = get_bundled_dir(type)
2018-06-24 19:55:13 +00:00
self.copy_files(glob(os.path.join(src_dir, "*")), path)
if (sys.platform == "win32"):
# If we try to just use shutil.copy it says the operation requires elevation.
def copy_files(self, files, dest):
import winutils
2018-08-28 19:20:35 +00:00
if not os.path.exists(dest):
os.makedirs(dest)
winutils.copy(files, dest)
else:
def copy_files(self, files, dest):
import shutil
if not os.path.exists(dest):
os.makedirs(dest)
for palette_file in files:
shutil.copy(palette_file, dest)
2018-08-22 00:32:50 +00:00
2018-06-24 19:55:13 +00:00
class Install(inkex.Effect):
2018-08-22 18:12:39 +00:00
@classmethod
def name(cls):
return "install"
def effect(self):
app = wx.App()
installer_frame = InstallerFrame(None, title=_("Ink/Stitch Add-ons Installer"), size=(550, 250))
installer_frame.Show()
app.MainLoop()