Web   ·   Wiki   ·   Activities   ·   Blog   ·   Lists   ·   Chat   ·   Meeting   ·   Bugs   ·   Git   ·   Translate   ·   Archive   ·   People   ·   Donate
summaryrefslogtreecommitdiffstats
path: root/resources.py
blob: f00fa7ee8602bbc69595604881f0edb403d3e294 (plain)
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
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
from gi.repository import Gtk
from gi.repository import Gdk
from gi.repository import GdkPixbuf
from gi.repository import GObject
from gi.repository import WebKit
import logging
import os
import shutil

from gettext import gettext as _

from sugar3.activity import activity
from sugar3.graphics.objectchooser import ObjectChooser
from sugar3.graphics.objectchooser import FILTER_TYPE_GENERIC_MIME

class CollectResourcesWin(Gtk.HBox):

    __gsignals__ = {
        'resource_updated': (GObject.SignalFlags.RUN_FIRST, None, [])
    }

    def __init__(self, activity):
        self._activity = activity
        GObject.GObject.__init__(self)
        self.model = activity.model
        """
        +---------+------------------------------+
        |Listview | Title   [                  ] |
        |         +------------------------------+
        |         | +--------------+ Size        |
        |         | | ImageView    | Load from   |
        |         | |              | Journal     |
        |         | |              | Show as     |
        |         | +--------------+ |IconView | |
        |         | +--------------------------+ |
        |         | | Text                     | |
        |         | +--------------------------+ |
        +---------+------------------------------+
        """
        # Listview
        self.resource_listview = Gtk.TreeView()
        width = int(Gdk.Screen.width() / 4)
        self.resource_listview.set_size_request(width, -1)

        self.resource_listview.connect('cursor-changed', self.select_resource)

        # title and id_resource
        self.treemodel = Gtk.ListStore(GObject.TYPE_STRING,
                GObject.TYPE_STRING)
        self.resource_listview.set_model(self.treemodel)
        renderer = Gtk.CellRendererText()
        renderer.set_property('wrap-mode', Gtk.WrapMode.WORD)
        self.treecol = Gtk.TreeViewColumn(_('Resources'), renderer, text=0)
        self.resource_listview.append_column(self.treecol)
        self.tree_scroller = Gtk.ScrolledWindow(hadjustment=None,
                vadjustment=None)
        self.tree_scroller.set_policy(Gtk.PolicyType.NEVER,
                Gtk.PolicyType.AUTOMATIC)
        self.tree_scroller.add(self.resource_listview)
        self.pack_start(self.tree_scroller, False, True, 0)

        vbox = Gtk.VBox()
        self.pack_start(vbox, True, True, 0)

        hbox_title = Gtk.HBox()
        hbox_title.pack_start(Gtk.Label(_('Title')), False, True, padding=5)
        self.title_entry = Gtk.Entry()
        self.title_entry.connect('changed', self.__information_changed_cb)
        hbox_title.pack_start(self.title_entry, True, True, padding=5)
        vbox.pack_start(hbox_title, False, True, padding=5)

        hbox_image = Gtk.HBox()
        scrollwin = Gtk.ScrolledWindow()
        scrollwin.set_policy(Gtk.PolicyType.AUTOMATIC, Gtk.PolicyType.AUTOMATIC)
        self.image = Gtk.Image()
        scrollwin.add_with_viewport(self.image)
        scrollwin.set_size_request(Gdk.Screen.width() / 2, -1)
        hbox_image.pack_start(scrollwin, True, True, padding=5)
        vbox_image = Gtk.VBox()
        self.load_image_button = Gtk.Button(_('Load Image'))
        self.load_image_button.connect('clicked', self.__load_image_cb)
        vbox_image.pack_start(self.load_image_button, False, False, padding=5)

        size_label = Gtk.Label(label=_('Image size:'))
        vbox_image.pack_start(size_label, False, False, padding=5)
        self.size_label_value = Gtk.Label(label='')
        vbox_image.pack_start(self.size_label_value, False, False, padding=5)
        hbox_image.pack_start(vbox_image, False, False, padding=5)
        vbox.pack_start(hbox_image, True, True, padding=5)

        # show as icon
        self.show_as_icon_check = Gtk.CheckButton()
        self._set_show_as_icon_label()
        self.show_as_icon_check.connect('toggled', self.__show_as_toggled_cb)
        vbox_image.pack_start(self.show_as_icon_check, False, False, padding=5)

        self._icons_store = Gtk.ListStore(str, GdkPixbuf.Pixbuf, str)
        self._icons_store.set_sort_column_id(0, Gtk.SortType.ASCENDING)
        self._iconview = Gtk.IconView(self._icons_store)
        self._iconview.set_text_column(0)
        self._iconview.set_pixbuf_column(1)
        self._iconview.set_sensitive(False)
        self._iconview.set_selection_mode(Gtk.SelectionMode.SINGLE)
        #self._iconview.set_size_request(Gdk.Screen.width() / 5, -1)
        self.load_icons()
        self._iconview.connect('item-activated', self.__iconview_activated_cb)
        scrolled = Gtk.ScrolledWindow()
        scrolled.set_policy(Gtk.PolicyType.AUTOMATIC, Gtk.PolicyType.AUTOMATIC)
        scrolled.add_with_viewport(self._iconview)
        #scrolled.set_size_request(Gdk.Screen.width() / 5, -1)
        vbox_image.pack_start(scrolled, True, True, padding=5)

        #hbox_editor = Gtk.HBox()
        self.editor = WebKit.WebView()
        self.title_entry.connect('changed',
                self.__information_changed_cb)
        self.editor.set_editable(True)
        height = int(Gdk.Screen.height() / 3)
        self.editor.set_size_request(-1, height)
        #hbox_editor.pack_start(self.editor, False, True, padding=5)
        vbox.pack_start(self.editor, False, True, padding=5)

        self._load_treemodel()
        self.show_all()
        self._modified_data = False
        self._selected_key = self.model.get_new_resource_id()

        self._image_resource_path = None

    def __show_as_toggled_cb(self, button):
        self._iconview.set_sensitive(button.get_active())
        if not button.get_active():
            self._set_show_as_icon_label()
        self._modified_data = True

    def __iconview_activated_cb(self, widget, item):
        model = widget.get_model()
        image_file_name = model[item][2]
        self._set_show_as_icon_label(self._get_image_name(image_file_name))

    def _get_image_name(self, image_file_name):
        image_name = image_file_name[image_file_name.rfind('/') + 1:]
        return image_name[:image_name.find('.')]

    def _set_show_as_icon_label(self, text=None):
        if text is None:
            self.show_as_icon_check.set_label(_('Show as Icon:'))
        else:
            self.show_as_icon_check.set_label(_('Show as %s') % text)

    def load_icons(self):
        images_path = os.path.join(activity.get_bundle_path(),
                'images/resource_icons')
        logging.error('Loading resource icons from %s', images_path)
        for file_name in os.listdir(images_path):
            if not file_name.endswith('.txt'):
                image_file_name = os.path.join(images_path, file_name)
                logging.error('Adding %s', image_file_name)
                pxb = GdkPixbuf.Pixbuf.new_from_file_at_size(image_file_name,
                        100, 100)
                self._icons_store.append(['', pxb, image_file_name])

    def __load_image_cb(self, button):
        chooser = ObjectChooser(self._activity, what_filter='Image',
                                filter_type=FILTER_TYPE_GENERIC_MIME,
                                show_preview=True)
        try:
            result = chooser.run()
            if result == Gtk.ResponseType.ACCEPT:
                logging.debug('ObjectChooser: %r',
                        chooser.get_selected_object())
                jobject = chooser.get_selected_object()
                if jobject and jobject.file_path:
                    self.__load_image(jobject.file_path)
        finally:
            chooser.destroy()
            del chooser

    def __load_image(self, file_path):
        self.image.set_from_file(file_path)
        width = self.image.props.pixbuf.get_width()
        height = self.image.props.pixbuf.get_height()
        self.size_label_value.set_text('%s x %s px' % (width, height))
        # copy to resources directory
        self.model.check_resources_directory()
        resource_path = os.path.join(activity.get_activity_root(),
                'instance', 'resources')
        shutil.copy(file_path, resource_path)
        self._image_resource_path = os.path.join(resource_path,
                os.path.basename(file_path))
        self._modified_data = True

    def __information_changed_cb(self, entry):
        self._modified_data = True

    def _load_treemodel(self):
        logging.error('loading treemodel')
        for resource in self.model.data['resources']:
            logging.error('adding resource %s', resource)
            self.treemodel.append([resource['title'], resource['id_resource']])

    def select_resource(self, treeview):
        if treeview.get_selection() is None:
            return
        treestore, coldex = treeview.get_selection().get_selected()
        if coldex is None:
            return
        logging.debug('selected resource %s', treestore.get_value(coldex, 1))
        if self._modified_data:
            # update data
            self._update_model(self._selected_key)
        self._selected_key = treestore.get_value(coldex, 1)
        self._display_model(self._selected_key)

    def _update_model(self, key):
        logging.error('_update model key %s class %s', key, key.__class__)
        resource = self.model.get_resource(key)
        new_entry = False
        if resource == None:
            resource = {}
            new_entry = True
        logging.error('_update_model new entry %s', new_entry)
        # save text with the same name as the image and extension .html
        with open(self._image_resource_path + '.html', 'w') as html_file:
            html_file.write(self._get_html())

        # show_as
        show_as = None
        if self.show_as_icon_check.get_active():
            item = self._iconview.get_selected_items()[0][0]
            show_as = self._icons_store[item][2]

        resource = {'title': self.title_entry.get_text(),
                    'file_image': self._image_resource_path,
                    'file_text': self._image_resource_path + '.html',
                    'show_as': show_as,
                    'id_resource': key}

        if new_entry:
            self.model.data['resources'].append(resource)
            self.treemodel.append([self.title_entry.get_text(), str(key)])

        self._modified_data = False

    def _get_html(self):
        script = 'document.title=document.documentElement.innerHTML;'
        self.editor.execute_script(script)
        return self.editor.get_main_frame().get_title()

    def _display_model(self, key):
        key = str(key)
        # logging.error('model %s', self.model.data)
        resource = self.model.get_resource(key)
        self._display_resource(resource)

    def _display_resource(self, resource):
        self.title_entry.set_text(resource['title'])
        if resource['file_text'] != '':
            if os.path.exists(resource['file_text']):
                with open(resource['file_text'], 'r') as html_file:
                    self.editor.load_html_string(html_file.read(), 'file:///')
        else:
            self.editor.load_html_string('', 'file:///')

        if resource['file_image'] != '':
            if os.path.exists(resource['file_image']):
                self.image.set_from_file(resource['file_image'])
                self._image_resource_path = resource['file_image']
        else:
            self.image.clear()
            self._image_resource_path = None

        # show as
        self.show_as_icon_check.set_active(resource['show_as'] is not None)
        self._iconview.set_sensitive(self.show_as_icon_check.get_active())
        if resource['show_as'] is not None:
            self._set_show_as_icon_label(
                    self._get_image_name(resource['show_as']))

        self._modified_data = False

    def del_resource(self):
        logging.debug('del resource')
        # TODO
        if self._selected_key is not None:
            logging.debug('select key %s', self._selected_key)
            model, tree_iter = \
                    self.resource_listview.get_selection().get_selected()
            model.remove(tree_iter)
            self.model.data['resources'].remove(self.model.get_resource(
                                                        self._selected_key))
            self._modified_data = False
            self._selected_key = None
            self.emit('resource_updated')

    def add_resource(self):
        if self._modified_data:
            # update data
            logging.error('update data (add resource modified data)')
            self._update_model(self._selected_key)

        self._selected_key = self.model.get_new_resource_id()
        resource = {'title': '',
                    'file_image': '',
                    'file_text': '',
                    'show_as': None,
                    'id_resource': self._selected_key}
        self._display_resource(resource)
        self.emit('resource_updated')