-
- var elementContent = this._container().contents();
- var element = this;
- elementContent.each(function() {
- var childElement = element.canvas.getDocumentElement(this);
- if(childElement === undefined) {
- return true;
- }
- toret.push(childElement);
- });
- return toret;
- },
- childIndex: function(child) {
- var children = this.children(),
- toret = null;
- children.forEach(function(c, idx) {
- if(c.sameNode(child)) {
- toret = idx;
- return false;
- }
- });
- return toret;
- },
- getWlxmlTag: function() {
- return this._container().attr('wlxml-tag');
- },
- setWlxmlTag: function(tag) {
- if(tag === this.getWlxmlTag()) {
- return;
- }
-
- this._container().attr('wlxml-tag', tag);
- if(!this.__updatingWlxml) {
- this._updateWlxmlManager();
- }
- },
- getWlxmlClass: function() {
- var klass = this._container().attr('wlxml-class');
- if(klass) {
- return klass.replace(/-/g, '.');
- }
- return undefined;
- },
- setWlxmlClass: function(klass) {
- if(klass === this.getWlxmlClass()) {
- return;
- }
- if(klass) {
- this._container().attr('wlxml-class', klass.replace(/\./g, '-'));
- }
- else {
- this._container().removeAttr('wlxml-class');
- }
- if(!this.__updatingWlxml) {
- this._updateWlxmlManager();
- }
- },
- setWlxml: function(params) {
- this.__updatingWlxml = true;
- if(params.tag !== undefined) {
- this.setWlxmlTag(params.tag);
- }
- if(params.klass !== undefined) {
- this.setWlxmlClass(params.klass);
- }
- this._updateWlxmlManager();
- this.__updatingWlxml = false;
- },
- _updateWlxmlManager: function() {
- this.manager = wlxmlManagers.getFor(this);
- this.manager.setup();
- },
- is: function(what) {
- if(what === 'list' && _.contains(['list.items', 'list.items.enum'], this.getWlxmlClass())) {
- return true;
- }
- return false;
- },