89 lines
2.3 KiB
Plaintext
89 lines
2.3 KiB
Plaintext
|
//::///////////////////////////////////////////////
|
|||
|
//:: 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 = "<c<><63><EFBFBD>>";
|
|||
|
|
|||
|
// the editor color, used for top and bottom lines
|
|||
|
const string sText2ColorTag = "<c<><63><EFBFBD>>";
|
|||
|
|
|||
|
// the color of the cursor
|
|||
|
const string sCursorColorTag = "<c <20> >";
|
|||
|
|
|||
|
// if a block is marked this color gets used
|
|||
|
const string sBlockColorTag = "<c <20><>>";
|
|||
|
|
|||
|
// the color used to highlight the 'keys'
|
|||
|
const string sKeyColorTag = "<c<><63> >";
|
|||
|
|
|||
|
// the color used for the 'OK' button
|
|||
|
const string sExitColorTag = "<c <20>>";
|
|||
|
|
|||
|
// the color used for the 'Cancel' button
|
|||
|
const string sCancelColorTag = "<c<> >";
|
|||
|
|
|||
|
// the color used to highlight the 'Insert' option
|
|||
|
const string sInsertColorTag = "<c<><63> >";
|
|||
|
|
|||
|
// the color of 'Back to main menu'
|
|||
|
const string sBackToMainMenuColor = "<c<><63><EFBFBD>>";
|
|||
|
|
|||
|
// the color used for the 'Help' button.
|
|||
|
const string sHelpColorTag = "<c<><63><EFBFBD>>";
|
|||
|
|
|||
|
// the color used for the Load/Save button
|
|||
|
const string sLoadSaveColorTag = "<c <20> >";
|
|||
|
|
|||
|
const string sLoadFromSlotColorTag = "<c <20> >";
|
|||
|
const string sSaveToSlotColorTag = "<c<> <20>>";
|
|||
|
|
|||
|
// the color used for text 'Color Off'
|
|||
|
const string sColorOffColorTag = "<c<><63><EFBFBD>>";
|
|||
|
|
|||
|
// the close color tag. Don't change it.
|
|||
|
const string sCloseTag = "</c>";
|
|||
|
|
|||
|
const string sColorNameRed = "red";
|
|||
|
const string sColorTagRed = "<c<> >";
|
|||
|
const string sColorNameGreen = "green";
|
|||
|
const string sColorTagGreen = "<c <20> >";
|
|||
|
const string sColorNameBlue = "blue";
|
|||
|
const string sColorTagBlue = "<c <20>>";
|
|||
|
const string sColorNameCyan = "cyan";
|
|||
|
const string sColorTagCyan = "<c <20><>>";
|
|||
|
const string sColorNameMagenta = "magenta";
|
|||
|
const string sColorTagMagenta = "<c<> <20>>";
|
|||
|
const string sColorNameYellow = "yellow";
|
|||
|
const string sColorTagYellow = "<c<><63> >";
|
|||
|
|
|||
|
const float fSpeedUpCursorMovementTime = 250.0f; // Milliseconds
|
|||
|
|
|||
|
/*
|
|||
|
void main()
|
|||
|
{
|
|||
|
|
|||
|
}
|
|||
|
/* */
|