📄 window.js
字号:
if (r2.visible()) {
var h = this.element.getHeight() - dh
r2.hide()
this.element.setStyle({height: h + "px"})
if (! this.useTop) {
var bottom = parseFloat(this.element.getStyle('bottom'));
this.element.setStyle({bottom: (bottom + dh) + 'px'});
}
}
else {
var h = this.element.getHeight() + dh;
this.element.setStyle({height: h + "px"})
if (! this.useTop) {
var bottom = parseFloat(this.element.getStyle('bottom'));
this.element.setStyle({bottom: (bottom - dh) + 'px'});
}
r2.show();
this.toFront();
}
Windows.notify("onMinimize", this);
// Store new location/size if need be
this._saveCookie()
},
maximize: function() {
if (this.storedLocation != null) {
this._restoreLocation();
if(this.iefix)
this.iefix.hide();
}
else {
this._storeLocation();
Windows.unsetOverflow(this);
var windowScroll = WindowUtilities.getWindowScroll();
var pageSize = WindowUtilities.getPageSize();
this.element.setStyle(this.useLeft ? {left: windowScroll.left} : {right: windowScroll.left});
this.element.setStyle(this.useTop ? {top: windowScroll.top} : {bottom: windowScroll.top});
this.setSize(pageSize.windowWidth - this.widthW - this.widthE, pageSize.windowHeight - this.heightN - this.heightS)
this.toFront();
if (this.iefix)
this._fixIEOverlapping();
}
Windows.notify("onMaximize", this);
// Store new location/size if need be
this._saveCookie()
},
isMinimized: function() {
var r2 = $(this.getId() + "_row2");
return !r2.visible();
},
isMaximized: function() {
return (this.storedLocation != null);
},
setOpacity: function(opacity) {
if (Element.setOpacity)
Element.setOpacity(this.element, opacity);
},
setZIndex: function(zindex) {
this.element.setStyle({zIndex: zindex});
Windows.updateZindex(zindex, this);
},
setTitle: function(newTitle) {
if (!newTitle || newTitle == "")
newTitle = " ";
Element.update(this.element.id + '_top', newTitle);
},
setStatusBar: function(element) {
var statusBar = $(this.getId() + "_bottom");
if (typeof(element) == "object") {
if (this.bottombar.firstChild)
this.bottombar.replaceChild(element, this.bottombar.firstChild);
else
this.bottombar.appendChild(element);
}
else
this.bottombar.innerHTML = element;
},
_checkIEOverlapping: function() {
if(!this.iefix && (navigator.appVersion.indexOf('MSIE')>0) && (navigator.userAgent.indexOf('Opera')<0) && (this.element.getStyle('position')=='absolute')) {
new Insertion.After(this.element.id, '<iframe id="' + this.element.id + '_iefix" '+ 'style="display:none;position:absolute;filter:progid:DXImageTransform.Microsoft.Alpha(opacity=0);" ' + 'src="javascript:false;" frameborder="0" scrolling="no"></iframe>');
this.iefix = $(this.element.id+'_iefix');
}
if(this.iefix)
setTimeout(this._fixIEOverlapping.bind(this), 50);
},
_fixIEOverlapping: function() {
Position.clone(this.element, this.iefix);
this.iefix.style.zIndex = this.element.style.zIndex - 1;
this.iefix.show();
},
_getWindowBorderSize: function(event) {
// Hack to get real window border size!!
var div = this._createHiddenDiv(this.options.className + "_n")
this.heightN = Element.getDimensions(div).height;
div.parentNode.removeChild(div)
var div = this._createHiddenDiv(this.options.className + "_s")
this.heightS = Element.getDimensions(div).height;
div.parentNode.removeChild(div)
var div = this._createHiddenDiv(this.options.className + "_e")
this.widthE = Element.getDimensions(div).width;
div.parentNode.removeChild(div)
var div = this._createHiddenDiv(this.options.className + "_w")
this.widthW = Element.getDimensions(div).width;
div.parentNode.removeChild(div);
// Workaround for IE!!
if (isIE) {
this.heightS = $(this.getId() +"_row3").getDimensions().height;
this.heightN = $(this.getId() +"_row1").getDimensions().height;
}
// Safari size fix
if (/Konqueror|Safari|KHTML/.test(navigator.userAgent))
this.setSize(this.width, this.height);
if (this.doMaximize)
this.maximize();
if (this.doMinimize)
this.minimize();
},
_createHiddenDiv: function(className) {
var objBody = document.body;
var win = document.createElement("div");
win.setAttribute('id', this.element.id+ "_tmp");
win.className = className;
win.style.display = 'none';
win.innerHTML = '';
objBody.insertBefore(win, objBody.firstChild);
return win;
},
_storeLocation: function() {
if (this.storedLocation == null) {
this.storedLocation = {useTop: this.useTop, useLeft: this.useLeft,
top: this.element.getStyle('top'), bottom: this.element.getStyle('bottom'),
left: this.element.getStyle('left'), right: this.element.getStyle('right'),
width: this.width, height: this.height };
}
},
_restoreLocation: function() {
if (this.storedLocation != null) {
this.useLeft = this.storedLocation.useLeft;
this.useTop = this.storedLocation.useTop;
this.element.setStyle(this.useLeft ? {left: this.storedLocation.left} : {right: this.storedLocation.right});
this.element.setStyle(this.useTop ? {top: this.storedLocation.top} : {bottom: this.storedLocation.bottom});
this.setSize(this.storedLocation.width, this.storedLocation.height);
Windows.resetOverflow();
this._removeStoreLocation();
}
},
_removeStoreLocation: function() {
this.storedLocation = null;
},
_saveCookie: function() {
if (this.cookie) {
var value = "";
if (this.useLeft)
value += "l:" + (this.storedLocation ? this.storedLocation.left : this.element.getStyle('left'))
else
value += "r:" + (this.storedLocation ? this.storedLocation.right : this.element.getStyle('right'))
if (this.useTop)
value += ",t:" + (this.storedLocation ? this.storedLocation.top : this.element.getStyle('top'))
else
value += ",b:" + (this.storedLocation ? this.storedLocation.bottom :this.element.getStyle('bottom'))
value += "," + (this.storedLocation ? this.storedLocation.width : this.width);
value += "," + (this.storedLocation ? this.storedLocation.height : this.height);
value += "," + this.isMinimized();
value += "," + this.isMaximized();
WindowUtilities.setCookie(value, this.cookie)
}
},
_createWiredElement: function() {
if (! this.wiredElement) {
if (isIE)
this._getWindowBorderSize();
var div = document.createElement("div");
div.className = "wired_frame " + this.options.className + "_wired_frame";
//div.style.display = "none";
div.style.position = 'absolute';
document.body.insertBefore(div, document.body.firstChild);
div = $(div);
var dim = this.element.getDimensions();
div.setStyle({width: dim.width + "px", height: dim.height +"px"});
if (this.useLeft)
div.setStyle({left: this.element.getStyle('left')});
else
div.setStyle({right: this.element.getStyle('right')});
if (this.useTop)
div.setStyle({top: this.element.getStyle('top')});
else
div.setStyle({bottom: this.element.getStyle('bottom')});
this.wiredElement = div
}
this.wiredElement.setStyle({zIndex: Windows.maxZIndex+30});
return this.wiredElement;
},
_hideWiredElement: function() {
if (! this.wiredElement)
return;
if (this.currentDrag == this.element)
this.currentDrag = null;
else {
if (this.useLeft)
this.element.setStyle({left: this.currentDrag.getStyle('left')});
else
this.element.setStyle({right: this.currentDrag.getStyle('right')});
if (this.useTop)
this.element.setStyle({top: this.currentDrag.getStyle('top')});
else
this.element.setStyle({bottom: this.currentDrag.getStyle('bottom')});
this.currentDrag.hide();
this.currentDrag = null;
this.setSize(this.width, this.height);
}
}
};
// Windows containers, register all page windows
var Windows = {
windows: [],
modalWindows: [],
observers: [],
focusedWindow: null,
maxZIndex: 0,
addObserver: function(observer) {
this.removeObserver(observer);
this.observers.push(observer);
},
removeObserver: function(observer) {
this.observers = this.observers.reject( function(o) { return o==observer });
},
notify: function(eventName, win) { // onStartResize(), onEndResize(), onStartMove(), onEndMove(), onClose(), onDestroy(), onMinimize(), onMaximize(), onHide(), onShow(), onFocus()
this.observers.each( function(o) {if(o[eventName]) o[eventName](eventName, win);});
},
// Gets window from its id
getWindow: function(id) {
return this.windows.detect(function(d) { return d.getId() ==id });
},
// Gets the last focused window
getFocusedWindow: function() {
return this.focusedWindow;
},
// Registers a new window (called by Windows constructor)
register: function(win) {
this.windows.push(win);
},
// Add a modal window in the stack
addModalWindow: function(win) {
// Disable screen if first modal window
if (this.modalWindows.length == 0)
WindowUtilities.disableScreen(win.options.className, 'overlay_modal', win.getId());
else {
// Move overlay over all windows
if (Window.keepMultiModalWindow) {
$('overlay_modal').style.zIndex = Windows.maxZIndex + 20;
Windows.maxZIndex += 20;
WindowUtilities._hideSelect(this.modalWindows.last().getId());
}
// Hide current modal window
else
this.modalWindows.last().element.hide();
// Fucking IE select issue
WindowUtilities._showSelect(win.getId());
}
this.modalWindows.push(win);
},
removeModalWindow: function(win) {
this.modalWindows.pop();
// No more modal windows
if (this.modalWindows.length == 0)
WindowUtilities.enableScreen();
else {
if (Window.keepMultiModalWindow) {
this.modalWindows.last().toFront();
WindowUtilities._showSelect(this.modalWindows.last().getId());
}
else
this.modalWindows.last().element.show();
}
},
// Registers a new window (called by Windows constructor)
register: function(win) {
this.windows.push(win);
},
// Unregisters a window (called by Windows destructor)
unregister: function(win) {
this.windows = this.windows.reject(function(d) { return d==win });
},
// Closes a window with its id
close: function(id, event) {
var win = this.getWindow(id);
// Asks delegate if exists
if (win && win.visible) {
if (win.getDelegate() && ! win.getDelegate().canClose(win))
return;
this.focusedWindow = this.windows.length >=2 ? this.windows[this.windows.length-2] : null;
this.notify("onClose", win);
win.hide();
}
if (event)
Event.stop(event);
},
// Closes all windows
closeAll: function() {
this.windows.each( function(w) {Windows.close(w.getId())} );
},
closeAllModalWindows: function() {
WindowUtilities.enableScreen();
this.modalWindows.each( function(win) {win.hide()});
},
// Minimizes a window with its id
minimize: function(id, event) {
var win = this.getWindow(id)
if (win && win.visible)
win.minimize();
Event.stop(event);
},
// Maximizes a window with its id
maximize: function(id, event) {
var win = this.getWindow(id)
if (win && win.visible)
win.maximize();
Event.stop(event);
},
unsetOverflow: function(except) {
this.windows.each(function(d) { d.oldOverflow = d.getContent().getStyle("overflow") || "auto" ; d.getContent().setStyle({overflow: "hidden"}) });
if (except && except.oldOverflow)
except.getContent().setStyle({overflow: except.oldOverflow});
},
resetOverflow: function() {
this.windows.each(function(d) { if (d.oldOverflow) d.getContent().setStyle({overflow: d.oldOverflow}) });
},
updateZindex: function(zindex, win) {
if (zindex > this.maxZIndex)
this.maxZIndex = zindex;
this.focusedWindow = win;
}
};
var Dialog = {
dialogId: null,
onCompleteFunc: null,
callFunc: null,
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -