12345678910111213141516171819202122232425262728293031323334353637 |
- #
- # Metrix++, Copyright 2009-2013, Metrix++ Project
- # Link: http://metrixplusplus.sourceforge.net
- #
- # This file is a part of Metrix++ Tool.
- #
- # Metrix++ 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, version 3 of the License.
- #
- # Metrix++ 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 Metrix++. If not, see <http://www.gnu.org/licenses/>.
- #
- import core.api
- # used for testing and development purposes
- class Plugin(core.api.Plugin, core.api.Child):
-
- def initialize(self):
- return
- # do not trigger version property set, it is a module for testing purposes
- core.api.subscribe_by_parents_interface(core.api.ICode, self)
- def callback(self, parent, data, is_updated):
- text = data.get_content()
- for region in data.iterate_regions():
- print "Region:", region.get_name(), region.get_cursor()
- for marker in data.iterate_markers(region_id=region.get_id(), exclude_children = True):
- print "\tMarker:", data.get_marker_types()().to_str(marker.get_type()), text[marker.get_offset_begin():marker.get_offset_end()]
|