-
Notifications
You must be signed in to change notification settings - Fork 28
/
filechooser.py
151 lines (131 loc) · 5.44 KB
/
filechooser.py
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
#!/usr/bin/env python
# cropgui, a graphical front-end for lossless jpeg cropping
# Copyright (C) 2009 Jeff Epler <[email protected]>
# This program is free software; you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
# the Free Software Foundation; either version 2 of the License, or
# (at your option) any later version.
#
# This program is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
# GNU General Public License for more details.
#
# You should have received a copy of the GNU General Public License
# along with this program; if not, write to the Free Software
# Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
PREVIEW_SIZE = 300
import gi
gi.require_version('Gtk', '3.0')
from gi.repository import Gtk as gtk
from gi.repository import GdkPixbuf as GdkPixbuf
#import gtk.glade
import os
from PIL import Image
import cropgui_common
def apply_rotation(rotation, image):
print("apply_rotation", rotation)
if rotation == 3: return image.transpose(Image.ROTATE_180)
if rotation == 6: return image.transpose(Image.ROTATE_270)
if rotation == 8: return image.transpose(Image.ROTATE_90)
return image
HIGH_WATER, LOW_WATER = 25, 5
image_cache = {}
def update_preview_cb(file_chooser, preview):
file_chooser.set_preview_widget_active(True)
filename = file_chooser.get_preview_filename()
if not filename or os.path.isdir(filename):
preview.set_from_stock(gtk.STOCK_DIRECTORY, gtk.IconSize.LARGE_TOOLBAR)
elif filename in image_cache:
preview.set_from_pixbuf(image_cache[filename])
else:
try:
i = Image.open(filename)
r = cropgui_common.image_rotation(i)
i.thumbnail((PREVIEW_SIZE, PREVIEW_SIZE),
getattr(Image, 'Resampling', Image).LANCZOS)
i = i.convert('RGB')
i = apply_rotation(r, i)
try:
image_data = i.tostring()
except:
image_data = i.tobytes()
pixbuf = GdkPixbuf.Pixbuf.new_from_data(image_data,
GdkPixbuf.Colorspace.RGB, 0, 8, i.size[0], i.size[1],
i.size[0]*3)
preview.set_from_pixbuf(pixbuf)
if len(image_cache) > HIGH_WATER:
while len(image_cache) > LOW_WATER:
image_cache.popitem()
image_cache[filename] = pixbuf
except IOError as detail:
print(detail)
preview.set_from_stock(gtk.STOCK_MISSING_IMAGE,
gtk.IconSize.LARGE_TOOLBAR)
except:
preview.set_from_stock(gtk.STOCK_MISSING_IMAGE,
gtk.IconSize.LARGE_TOOLBAR)
raise
class BaseChooser:
def __init__(self, title, parent):
# Gnome's "attach-modal-dialogs" can be set to false using
# gnome-tweak-tool in order to enable movable modal dialogs. No idea
# how to do that app-specifically though.
self.dialog = dialog = \
gtk.FileChooserDialog(title, parent, self.mode, self.buttons)
def run(self, initdir = None):
if initdir: self.dialog.set_current_folder(initdir)
self.dialog.show()
response = self.dialog.run()
self.dialog.hide()
if response == gtk.ResponseType.OK:
return self.dialog.get_filenames()
else:
return []
class Chooser(BaseChooser):
mode = gtk.FileChooserAction.OPEN
buttons = (gtk.STOCK_QUIT, gtk.ResponseType.CANCEL,
gtk.STOCK_OPEN, gtk.ResponseType.OK)
def __init__(self, title, parent):
BaseChooser.__init__(self, title, parent)
self.dialog.set_default_response(gtk.ResponseType.OK)
self.dialog.set_select_multiple(True)
preview = gtk.Image()
preview.set_size_request(PREVIEW_SIZE, PREVIEW_SIZE)
self.dialog.set_preview_widget(preview)
self.dialog.set_preview_widget_active(True)
self.dialog.connect("update-preview", update_preview_cb, preview)
filter = gtk.FileFilter()
filter.set_name("Images")
filter.add_mime_type("image/*")
filter.add_pattern("*.jpg")
filter.add_pattern("*.jpeg")
filter.add_pattern("*.JPG")
filter.add_pattern("*.JPEG")
filter.add_pattern("*.png")
filter.add_pattern("*.PNG")
filter.add_pattern("*.tif")
filter.add_pattern("*.TIF")
filter.add_pattern("*.tiff")
filter.add_pattern("*.TIFF")
filter.add_pattern("*.gif")
filter.add_pattern("*.GIF")
self.dialog.add_filter(filter)
filter = gtk.FileFilter()
filter.set_name("All files")
filter.add_pattern("*")
self.dialog.add_filter(filter)
class DirChooser(BaseChooser):
mode = gtk.FileChooserAction.SAVE
buttons = (gtk.STOCK_CANCEL, gtk.ResponseType.CANCEL,
gtk.STOCK_SAVE, gtk.ResponseType.OK)
def __init__(self, title, parent):
BaseChooser.__init__(self, title, parent)
self.dialog.set_default_response(gtk.ResponseType.OK)
self.dialog.set_do_overwrite_confirmation(True)
def set_current_name(self, filename):
self.dialog.set_current_name(filename)
def set_title(self, title):
self.dialog.set_title(title)
def set_current_folder(self, directory):
self.dialog.set_current_folder(directory)