Get preferences dialog up and running

This commit is contained in:
Ryan Holmes
2017-07-02 16:32:39 -04:00
parent 57783fe80f
commit 987c55ed8f

View File

@@ -8,7 +8,7 @@ from gui.bitmap_loader import BitmapLoader
import gui.mainFrame import gui.mainFrame
from service.settings import HTMLExportSettings from service.settings import HTMLExportSettings
import wx.lib.agw.hyperlink
class PFHTMLExportPref(PreferenceView): class PFHTMLExportPref(PreferenceView):
title = "HTML Export" title = "HTML Export"
@@ -37,10 +37,9 @@ class PFHTMLExportPref(PreferenceView):
self.stDesc.Wrap(dlgWidth - 50) self.stDesc.Wrap(dlgWidth - 50)
mainSizer.Add(self.stDesc, 0, wx.ALL, 5) mainSizer.Add(self.stDesc, 0, wx.ALL, 5)
self.PathLinkCtrl = wx.HyperlinkCtrl(panel, wx.ID_ANY, self.HTMLExportSettings.getPath(), self.PathLinkCtrl = wx.lib.agw.hyperlink.HyperLinkCtrl(panel, wx.ID_ANY, self.HTMLExportSettings.getPath(),
'file:///{}'.format(self.HTMLExportSettings.getPath()),
wx.DefaultPosition, wx.DefaultSize, wx.DefaultPosition, wx.DefaultSize,
wx.HL_ALIGN_LEFT | wx.NO_BORDER | wx.HL_CONTEXTMENU) URL='file:///{}'.format(self.HTMLExportSettings.getPath()),)
mainSizer.Add(self.PathLinkCtrl, 0, wx.ALL | wx.EXPAND, 5) mainSizer.Add(self.PathLinkCtrl, 0, wx.ALL | wx.EXPAND, 5)
self.fileSelectDialog = wx.FileDialog(None, "Save Fitting As...", self.fileSelectDialog = wx.FileDialog(None, "Save Fitting As...",