comparison browser_side/base_widget.py @ 232:0ed09cc0566f

browser_side: added UIs for rich text editor and addressing to multiple recipients The rich text format is set according to a user parameter which is for now not created, so you will get a warning on the backend and no toolbar will be displayed. For testing purpose: - you can set _debug to True in RichTextEditor: that will display one toolbar per format. - you can add this parameter to any plugin (the same will be added later in XEP-0071): # DEBUG: TO BE REMOVED LATER, THIS BELONGS TO RICH TEXT EDITOR FORMATS = {"markdown": {}, "bbcode": {}, "dokuwiki": {}, "html": {}} FORMAT_PARAM_KEY = "Composition and addressing" FORMAT_PARAM_NAME = "Format for rich text message composition" # In the parameter definition: <category name="%(format_category_name)s" label="%(format_category_label)s"> <param name="%(format_param_name)s" label="%(format_param_label)s" value="%(format_param_default)s" type="list" security="0"> %(format_options)s </param> </category> # Strings for the placeholders: 'format_category_name': FORMAT_PARAM_KEY, 'format_category_label': _(FORMAT_PARAM_KEY), 'format_param_name': FORMAT_PARAM_NAME, 'format_param_label': _(FORMAT_PARAM_NAME), 'format_param_default': FORMATS.keys()[0], 'format_options': ['<option value="%s"/>' % format for format in FORMATS.keys()]
author souliane <souliane@mailoo.org>
date Tue, 08 Oct 2013 14:12:38 +0200
parents 266e9678eec0
children 63e9b680d3e7
comparison
equal deleted inserted replaced
231:fab7aa366576 232:0ed09cc0566f
110 self.removeStyleName('dragover') 110 self.removeStyleName('dragover')
111 return 111 return
112 widgets_panel.removeWidget(_new_panel) 112 widgets_panel.removeWidget(_new_panel)
113 elif item_type in self.drop_keys: 113 elif item_type in self.drop_keys:
114 _new_panel = self.drop_keys[item_type](self.host, item) 114 _new_panel = self.drop_keys[item_type](self.host, item)
115 elif item_type == "RECIPIENT_TEXTBOX":
116 # eventually open a window?
117 pass
115 else: 118 else:
116 print "WARNING: unmanaged item type" 119 print "WARNING: unmanaged item type"
117 return 120 return
118 if isinstance(self, LiberviaWidget): 121 if isinstance(self, LiberviaWidget):
119 self.host.unregisterWidget(self) 122 self.host.unregisterWidget(self)
618 return 621 return
619 _new_panel = LiberviaDragWidget.current 622 _new_panel = LiberviaDragWidget.current
620 _new_panel.getWidgetsPanel().removeWidget(_new_panel) 623 _new_panel.getWidgetsPanel().removeWidget(_new_panel)
621 elif item_type in DropCell.drop_keys: 624 elif item_type in DropCell.drop_keys:
622 _new_panel = DropCell.drop_keys[item_type](self.tab_panel.host, item) 625 _new_panel = DropCell.drop_keys[item_type](self.tab_panel.host, item)
626 elif item_type == "RECIPIENT_TEXTBOX":
627 # eventually open a window?
628 pass
623 else: 629 else:
624 print "WARNING: unmanaged item type" 630 print "WARNING: unmanaged item type"
625 return 631 return
626 632
627 widgets_panel = self.tab_panel.getWidget(self._getIndex()) 633 widgets_panel = self.tab_panel.getWidget(self._getIndex())