//:://///////////////////////////////////////////// //:: Name //:: FileName mk_inc_editor_c //:: Copyright (c) 2008 //::////////////////////////////////////////////// /* */ //::////////////////////////////////////////////// //:: Created By: Kamiryn //:: Created On: 2008-03-03 //::////////////////////////////////////////////// // Cursor used by the editor const string sCursor = "|"; // Name of a color 2DA file const string sColor2DA = "mk_colors"; // Name of column of the color name const string sColor2DAName = "Color"; // Name of column of the color tag const string sColor2DATag = "Code"; // the text color, used for the text const string sText1ColorTag = ""; // the editor color, used for top and bottom lines const string sText2ColorTag = ""; // the color of the cursor const string sCursorColorTag = ""; // if a block is marked this color gets used const string sBlockColorTag = ""; // the color used to highlight the 'keys' const string sKeyColorTag = ""; // the color used for the 'OK' button const string sExitColorTag = ""; // the color used for the 'Cancel' button const string sCancelColorTag = ""; // the color used to highlight the 'Insert' option const string sInsertColorTag = ""; // the color of 'Back to main menu' const string sBackToMainMenuColor = ""; // the color used for the 'Help' button. const string sHelpColorTag = ""; // the color used for the Load/Save button const string sLoadSaveColorTag = ""; const string sLoadFromSlotColorTag = ""; const string sSaveToSlotColorTag = ""; // the color used for text 'Color Off' const string sColorOffColorTag = ""; // the close color tag. Don't change it. const string sCloseTag = ""; const string sColorNameRed = "red"; const string sColorTagRed = ""; const string sColorNameGreen = "green"; const string sColorTagGreen = ""; const string sColorNameBlue = "blue"; const string sColorTagBlue = ""; const string sColorNameCyan = "cyan"; const string sColorTagCyan = ""; const string sColorNameMagenta = "magenta"; const string sColorTagMagenta = ""; const string sColorNameYellow = "yellow"; const string sColorTagYellow = ""; const float fSpeedUpCursorMovementTime = 250.0f; // Milliseconds /* void main() { } /* */