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
|
# (C) Copyright 2005-2023 Enthought, Inc., Austin, TX
# All rights reserved.
#
# This software is provided without warranty under the terms of the BSD
# license included in LICENSE.txt and may be redistributed only under
# the conditions described in the aforementioned license. The license
# is also available online at http://www.enthought.com/licenses/BSD.txt
#
# Thanks for using Enthought open source!
# (C) Copyright 2007 Riverbank Computing Limited
# This software is provided without warranty under the terms of the BSD license.
# However, when used with the GPL version of PyQt the additional terms described in the PyQt GPL exception also apply
import os
from pyface.qt import QtCore, QtGui
from traits.api import Enum, Int, List, provides, Str
from pyface.i_file_dialog import IFileDialog, MFileDialog
from .dialog import Dialog
@provides(IFileDialog)
class FileDialog(MFileDialog, Dialog):
""" The toolkit specific implementation of a FileDialog. See the
IFileDialog interface for the API documentation.
"""
# 'IFileDialog' interface ---------------------------------------------#
action = Enum("open", "open files", "save as")
default_directory = Str()
default_filename = Str()
default_path = Str()
directory = Str()
filename = Str()
path = Str()
paths = List(Str)
wildcard = Str()
wildcard_index = Int(0)
# ------------------------------------------------------------------------
# 'MFileDialog' *CLASS* interface.
# ------------------------------------------------------------------------
# In Windows, Qt needs only a * while wx needs a *.*
WILDCARD_ALL = "All files (*)|*"
@classmethod
def create_wildcard(cls, description, extension):
""" Creates a wildcard for a given extension. """
if isinstance(extension, str):
pattern = extension
else:
pattern = " ".join(extension)
return "%s (%s)|%s|" % (description, pattern, pattern)
# ------------------------------------------------------------------------
# Protected 'IDialog' interface.
# ------------------------------------------------------------------------
def _create_contents(self, parent):
# In PyQt this is a canned dialog.
pass
# ------------------------------------------------------------------------
# 'IWindow' interface.
# ------------------------------------------------------------------------
def close(self):
# Get the path of the chosen directory.
if self.control is not None:
files = self.control.selectedFiles()
else:
files = []
if files:
self.path = str(files[0])
self.paths = [str(file) for file in files]
else:
self.path = ""
self.paths = [""]
# Extract the directory and filename.
self.directory, self.filename = os.path.split(self.path)
# Get the index of the selected filter.
if self.control is not None:
self.wildcard_index = self.control.nameFilters().index(
self.control.selectedNameFilter()
)
# Let the window close as normal.
super().close()
# ------------------------------------------------------------------------
# Protected 'IWidget' interface.
# ------------------------------------------------------------------------
def _create_control(self, parent):
# If the caller provided a default path instead of a default directory
# and filename, split the path into it directory and filename
# components.
if (
len(self.default_path) != 0
and len(self.default_directory) == 0
and len(self.default_filename) == 0
):
default_directory, default_filename = os.path.split(
self.default_path
)
else:
default_directory = self.default_directory
default_filename = self.default_filename
# Convert the filter.
filters = []
for filter_list in self.wildcard.split("|")[::2]:
# Qt uses spaces instead of semicolons for extension separators
filter_list = filter_list.replace(";", " ")
filters.append(filter_list)
# Set the default directory.
if not default_directory:
default_directory = QtCore.QDir.currentPath()
dlg = QtGui.QFileDialog(parent, self.title, default_directory)
dlg.setViewMode(QtGui.QFileDialog.ViewMode.Detail)
dlg.selectFile(default_filename)
dlg.setNameFilters(filters)
if self.wildcard_index < len(filters):
dlg.selectNameFilter(filters[self.wildcard_index])
if self.action == "open":
dlg.setAcceptMode(QtGui.QFileDialog.AcceptMode.AcceptOpen)
dlg.setFileMode(QtGui.QFileDialog.FileMode.ExistingFile)
elif self.action == "open files":
dlg.setAcceptMode(QtGui.QFileDialog.AcceptMode.AcceptOpen)
dlg.setFileMode(QtGui.QFileDialog.FileMode.ExistingFiles)
else:
dlg.setAcceptMode(QtGui.QFileDialog.AcceptMode.AcceptSave)
dlg.setFileMode(QtGui.QFileDialog.FileMode.AnyFile)
return dlg
# ------------------------------------------------------------------------
# Trait handlers.
# ------------------------------------------------------------------------
def _wildcard_default(self):
""" Return the default wildcard. """
return self.WILDCARD_ALL
|