-
Notifications
You must be signed in to change notification settings - Fork 38
/
Copy pathprogress.py
78 lines (59 loc) · 2.31 KB
/
progress.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
# -*- coding: utf-8 -*-
"""Progress indicator for processed items."""
from __future__ import absolute_import, division, print_function, unicode_literals
from future.builtins import *
import pygtk
pygtk.require('2.0')
import gtk
import gimp
from export_layers import pygimplib as pg
class ItemProgressIndicator(object):
"""
This class controls a single progress bar to indicate the number of processed
items and the status of the currently processed item.
"""
def __init__(self, progress_bar, progress_updater):
self._progress_bar = progress_bar
self._progress_updater = progress_updater
self._progress_callback = None
self._progress_set_fraction_func = self._progress_set_fraction
def install_progress_for_status(
self, progress_set_value=None, progress_reset_value=None):
"""
Initialize the progress bar for the current item status to update according
to GIMP PDB calls.
"""
if gimp.version >= (2, 9):
return
if progress_set_value is not None:
self._progress_set_fraction_func = progress_set_value
else:
self._progress_set_fraction_func = self._progress_set_fraction
if progress_reset_value is None:
def progress_reset_value_default(*args):
self._progress_set_fraction(0.0)
progress_reset_value = progress_reset_value_default
self._progress_callback = gimp.progress_install(
progress_reset_value,
progress_reset_value,
pg.utils.empty_func,
self._progress_set_value_for_status)
def uninstall_progress_for_status(self):
"""
Reset the progress bar for the current item status so that it no longer
updates according to GIMP PDB calls.
"""
if gimp.version >= (2, 9):
return
if self._progress_callback is not None:
gimp.progress_uninstall(self._progress_callback)
self._progress_callback = None
def _progress_set_fraction(self, fraction):
self._progress_bar.set_fraction(fraction)
while gtk.events_pending():
gtk.main_iteration()
def _progress_set_value_for_status(self, fraction):
relative_fraction = (
(self._progress_updater.num_finished_tasks / self._progress_updater.num_total_tasks)
+ (fraction / self._progress_updater.num_total_tasks))
self._progress_set_fraction_func(relative_fraction)