Press n or j to go to the next uncovered block, b, p or k for the previous block.
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 | 1x 12x 12x 1x 1x 12x 1x 16x | /*! * VisualEditor UserInterface SurfaceWindowManager class. * * @copyright See AUTHORS.txt */ /** * Window manager for desktop inspectors. * * @class * @extends ve.ui.WindowManager * * @constructor * @param {ve.ui.Surface} surface Surface this belongs to * @param {Object} [config] Configuration options * @param {ve.ui.Overlay} [config.overlay] Overlay to use for menus */ ve.ui.SurfaceWindowManager = function VeUiSurfaceWindowManager( surface, config ) { // Properties // Set up surface before calling the parent so we can request // specific surface-related details from within the constructor. this.surface = surface; // Parent constructor ve.ui.SurfaceWindowManager.super.call( this, config ); }; /* Inheritance */ OO.inheritClass( ve.ui.SurfaceWindowManager, ve.ui.WindowManager ); /* Methods */ /** * Override the window manager's directionality method to get the * directionality from the surface. The surface sometimes does not * have a directionality set; fallback to direction from the document. * * @return {string} UI directionality */ ve.ui.SurfaceWindowManager.prototype.getDir = function () { return this.surface.getDir() || // Fallback to parent method ve.ui.SurfaceWindowManager.super.prototype.getDir.call( this ); }; /** * Get surface. * * @return {ve.ui.Surface} Surface this belongs to */ ve.ui.SurfaceWindowManager.prototype.getSurface = function () { return this.surface; }; |