/*
 * Copyright (c)  2006-2007 Maskat Project.
 *
 * Licensed under the Apache License, Version 2.0 (the "License");
 * you may not use this file except in compliance with the License.
 * You may obtain a copy of the License at
 * 
 *      http://www.apache.org/licenses/LICENSE-2.0
 *
 * Unless required by applicable law or agreed to in writing, software
 * distributed under the License is distributed on an "AS IS" BASIS,
 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
 * See the License for the specific language governing permissions and
 * limitations under the License.
 */

var rialtoConfig = {version: 0.85, isDebug: false, isDesign: false, isTestVersion: false};
rialtoConfig.skin = 'standart';

rialtoConfig.baseIdCssWithSkin = 'behavior';
rialtoConfig.skinList = ['standart','test'];

rialtoConfig.baseIdCssComposer= 'composer';
rialtoConfig.extIdCssComposerDesignMode = 'design';
rialtoConfig.extIdCssComposerTryMode = 'try';

rialtoConfig.userAgentIsIE = (navigator.appName == "Microsoft Internet Explorer");
rialtoConfig.userAgentIsGecko = (navigator.userAgent.indexOf('Gecko') != -1);

rialtoConfig.pathRialtoE = "maskatFW/rialtoEngine/";

rialtoConfig.language="jp";

// Maskat名前空間
var maskat = {};
maskat.ide = {};
maskat.syntax = {};
maskat.globalVar = {};

// Maskatエラーオブジェクト
function MaskatError(paramOL){
  this.name = paramOL.name;
  this.message = paramOL.message;
  this.fileName = paramOL.fileName;
  this.functionName = paramOL.functionName;
}

MaskatError.prototype = new Error();
// throw new MaskatError({name: "", message: "", fileName: "", functionName: ""});

function MaskatProcessInterruption(paramOL){
  this.name = paramOL.name;
  this.message = paramOL.message;
  this.fileName = paramOL.fileName;
  this.functionName = paramOL.functionName;
}

rialtoConfig.buildImageURL = function(imageName) {
	return rialtoConfig.pathRialtoE + imageName;
}

rialtoConfig.pathRialtoE = "../../../maskatFW/rialtoEngine/";

