Skip to content
Snippets Groups Projects
Commit b935468c authored by Paul McCarthy's avatar Paul McCarthy
Browse files

fsl/__init__ now builds GUI interface stuff things on the wx.MainLoop,

instead of before the main loop. This is because forcing widget
refreshes whilst running off the main loop is more difficult than it
should be.
parent 6d81bf36
No related branches found
No related tags found
No related merge requests found
...@@ -54,8 +54,10 @@ import warnings ...@@ -54,8 +54,10 @@ import warnings
import os import os
import sys import sys
import time
import argparse import argparse
import importlib import importlib
import threading
import subprocess import subprocess
...@@ -90,25 +92,58 @@ def main(args=None): ...@@ -90,25 +92,58 @@ def main(args=None):
allTools = _getFSLToolNames() allTools = _getFSLToolNames()
fslTool, args, toolArgs = _parseArgs(args, allTools) fslTool, args, toolArgs = _parseArgs(args, allTools)
# Is this a GUI tool?
if fslTool.interface is not None: if fslTool.interface is not None:
import wx
app = wx.App()
# Context creation may assume that a wx.App has been created
if fslTool.context is not None: ctx = fslTool.context(toolArgs)
else: ctx = None
_fslDirWarning(fslTool.toolName, fslEnvActive)
frame = _buildGUI(toolArgs, fslTool, ctx, fslEnvActive) import wx
frame.Show()
if args.wxinspect: # The main interface is created on the
import wx.lib.inspection # wx.MainLoop, because it is difficult
wx.lib.inspection.InspectionTool().Show() # to force immediate GUI refreshes when
# not running on the main loop - this
# is important for, e.g. FSLEyes, which
# displays status updates to the user
# while it is loading overlays and
# setting up the interface.
#
# To make this work, this buildGUI
# function is called on a separate thread
# (so it is executed after wx.MainLoop
# has been called), but it schedules its
# work to be done on the wx.MainLoop.
def buildGUI():
def realBuild():
if fslTool.context is not None: ctx = fslTool.context(toolArgs)
else: ctx = None
_fslDirWarning(fslTool.toolName, fslEnvActive)
frame = _buildGUI(toolArgs, fslTool, ctx, fslEnvActive)
frame.Show()
# See comment below
dummyFrame.Destroy()
if args.wxinspect:
import wx.lib.inspection
wx.lib.inspection.InspectionTool().Show()
time.sleep(0.1)
wx.CallAfter(realBuild)
# Create the wx.App object, and create a dummy
# frame. If we don't create a dummy frame, the
# wx.MainLoop call will just return immediately.
# The buildGUI function above will kill the dummy
# frame when it has created the real interface.
app = wx.App()
dummyFrame = wx.Frame(None)
threading.Thread(target=buildGUI).start()
app.MainLoop() app.MainLoop()
# Or is this a CLI tool?
elif fslTool.execute is not None: elif fslTool.execute is not None:
if fslTool.context is not None: ctx = fslTool.context(toolArgs) if fslTool.context is not None: ctx = fslTool.context(toolArgs)
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment