InputText: Improved formula/section variables support in options.

- Added formula support for InputText measure option: X, Y, W, H, FontSize
- Added formula/section variables support for inline CommandN option. The formula support is same as above options.
This commit is contained in:
spx 2013-03-07 01:36:27 +09:00
parent 7f8e739ae6
commit c5df90bbee
2 changed files with 91 additions and 63 deletions

View File

@ -111,6 +111,7 @@ namespace InputText
ExecuteBatch ExecuteBatch
}; };
internal Dictionary<string, string> Options; internal Dictionary<string, string> Options;
internal List<Dictionary<string, string>> OverrideOptions;
internal List<string> Commands; internal List<string> Commands;
internal string Command; internal string Command;
internal BangType Type; internal BangType Type;
@ -118,6 +119,7 @@ namespace InputText
internal ExecuteBangParam(string args) internal ExecuteBangParam(string args)
{ {
this.Options = new Dictionary<string, string>(); this.Options = new Dictionary<string, string>();
this.OverrideOptions = new List<Dictionary<string, string>>();
this.Commands = new List<string>(); this.Commands = new List<string>();
this.Command = args.Trim(); this.Command = args.Trim();
this.Type = BangType.Unknown; this.Type = BangType.Unknown;

View File

@ -29,16 +29,16 @@ namespace InputText
{ {
// Get default options // Get default options
ReadOption("DefaultValue", param.Options); ReadOption("DefaultValue", param.Options);
ReadOption("X", param.Options); ReadOption("X", param.Options, true);
ReadOption("Y", param.Options); ReadOption("Y", param.Options, true);
ReadOption("W", param.Options); ReadOption("W", param.Options, true);
ReadOption("H", param.Options); ReadOption("H", param.Options, true);
ReadOption("StringStyle", param.Options); ReadOption("StringStyle", param.Options);
ReadOption("StringAlign", param.Options); ReadOption("StringAlign", param.Options);
ReadOption("FocusDismiss", param.Options); ReadOption("FocusDismiss", param.Options);
ReadOption("FontColor", param.Options); ReadOption("FontColor", param.Options);
ReadOption("FontFace", param.Options); ReadOption("FontFace", param.Options);
ReadOption("FontSize", param.Options); ReadOption("FontSize", param.Options, true);
ReadOption("SolidColor", param.Options); ReadOption("SolidColor", param.Options);
ReadOption("Password", param.Options); ReadOption("Password", param.Options);
ReadOption("TopMost", param.Options); ReadOption("TopMost", param.Options);
@ -120,13 +120,42 @@ namespace InputText
for (int i = iMin; i <= iMax; i++) for (int i = iMin; i <= iMax; i++)
{ {
// Read this command's line // Read this command's line
string sCurrentLine = rm.ReadString("Command" + i.ToString(), "", false); string sLine = rm.ReadString("Command" + i.ToString(), "", false);
// If empty/non-existent, abort // If empty/non-existent, abort
if (string.IsNullOrEmpty(sCurrentLine)) if (string.IsNullOrEmpty(sLine))
break; break;
param.Commands.Add(sCurrentLine); #region Handle in-line overrides
// Create a blank list of overrides
Dictionary<string, string> Overrides = new Dictionary<string, string>();
// Start looking for overridable settings and adjust the list accordingly,
// stripping out settings from the line if they are discovered.
//
// The supporting TagData() function allows for whitespace if quotes are
// used. For example:
//
// DefaultValue="hello there, how are you"
sLine = ScanAndReplace(sLine, "DefaultValue", Overrides);
sLine = ScanAndReplace(sLine, "X", Overrides, true);
sLine = ScanAndReplace(sLine, "Y", Overrides, true);
sLine = ScanAndReplace(sLine, "W", Overrides, true);
sLine = ScanAndReplace(sLine, "H", Overrides, true);
sLine = ScanAndReplace(sLine, "StringStyle", Overrides);
sLine = ScanAndReplace(sLine, "StringAlign", Overrides);
sLine = ScanAndReplace(sLine, "FocusDismiss", Overrides);
sLine = ScanAndReplace(sLine, "FontColor", Overrides);
sLine = ScanAndReplace(sLine, "FontFace", Overrides);
sLine = ScanAndReplace(sLine, "FontSize", Overrides, true);
sLine = ScanAndReplace(sLine, "SolidColor", Overrides);
sLine = ScanAndReplace(sLine, "Password", Overrides);
sLine = ScanAndReplace(sLine, "TopMost", Overrides);
param.OverrideOptions.Add(Overrides);
#endregion
param.Commands.Add(sLine);
} }
#endregion #endregion
@ -167,11 +196,11 @@ namespace InputText
case ExecuteBangParam.BangType.ExecuteBatch: case ExecuteBangParam.BangType.ExecuteBatch:
{ {
foreach (string sCurrentLine in param.Commands) for (int i = 0; i < param.Commands.Count; ++i)
{ {
// Execute the line, but if there's a problem (error or they cancel the // Execute the line, but if there's a problem (error or they cancel the
// input textbox), then abort // input textbox), then abort
if (!ExecuteLine(sCurrentLine, param.Options)) if (!ExecuteLine(param.Commands[i], param.Options, param.OverrideOptions[i]))
break; break;
// Continue to the next line, if there is any // Continue to the next line, if there is any
@ -184,7 +213,7 @@ namespace InputText
#region This is all code custom to this plugin #region This is all code custom to this plugin
#region Parse the current command line #region Parse the current command line
private bool ExecuteLine(string sLine, Dictionary<string, string> Options) private bool ExecuteLine(string sLine, Dictionary<string, string> Options, Dictionary<string, string> Overrides)
{ {
// If this line contains a $UserInput$ token, then we need to do some extra // If this line contains a $UserInput$ token, then we need to do some extra
// parsing // parsing
@ -192,33 +221,6 @@ namespace InputText
{ {
try try
{ {
#region Handle in-line overrides
// Create a blank list of overrides
Dictionary<string, string> Overrides = new Dictionary<string, string>();
// Start looking for overridable settings and adjust the list accordingly,
// stripping out settings from the line if they are discovered.
//
// The supporting TagData() function allows for whitespace if quotes are
// used. For example:
//
// DefaultValue="hello there, how are you"
sLine = ScanAndReplace(sLine, "DefaultValue", Overrides);
sLine = ScanAndReplace(sLine, "X", Overrides);
sLine = ScanAndReplace(sLine, "Y", Overrides);
sLine = ScanAndReplace(sLine, "W", Overrides);
sLine = ScanAndReplace(sLine, "H", Overrides);
sLine = ScanAndReplace(sLine, "StringStyle", Overrides);
sLine = ScanAndReplace(sLine, "StringAlign", Overrides);
sLine = ScanAndReplace(sLine, "FocusDismiss", Overrides);
sLine = ScanAndReplace(sLine, "FontColor", Overrides);
sLine = ScanAndReplace(sLine, "FontFace", Overrides);
sLine = ScanAndReplace(sLine, "FontSize", Overrides);
sLine = ScanAndReplace(sLine, "SolidColor", Overrides);
sLine = ScanAndReplace(sLine, "Password", Overrides);
sLine = ScanAndReplace(sLine, "TopMost", Overrides);
#endregion
// Get user input // Get user input
string sInput = GetUserInput(Options, Overrides); string sInput = GetUserInput(Options, Overrides);
if (sInput == null) if (sInput == null)
@ -368,15 +370,31 @@ namespace InputText
} }
#endregion #endregion
#region ReadOption() -- reads given option's value from Rainmeter #region ReadOption(), ParseInlineOption() -- reads given option's value from Rainmeter
private void ReadOption(string optionName, Dictionary<string, string> Options) private void ReadOption(string optionName, Dictionary<string, string> Options, bool formula = false)
{ {
string value = rm.ReadString(optionName, ""); string value = rm.ReadString(optionName, "");
if (!string.IsNullOrEmpty(value)) if (!string.IsNullOrEmpty(value))
{ {
Options.Add(optionName, value); if (formula && value[0] == '(')
Options.Add(optionName, rm.ReadInt(optionName, 0).ToString());
else
Options.Add(optionName, value);
} }
} }
private string ParseInlineOption(string data, bool formula = false)
{
IntPtr skin = rm.GetSkin();
string keyName = "__InputText_ParseInline_TemporaryKey__";
string bang = "!SetOption \"" + rm.GetMeasureName() + "\" " + keyName + " ";
string quote = (data.IndexOf('"') >= 0) ? "\"\"\"" : "\"";
API.Execute(skin, bang + quote + data + quote); // set temporarily
string value = formula ? rm.ReadInt(keyName, 0).ToString() : rm.ReadString(keyName, "");
API.Execute(skin, bang + "\"\""); // remove
return value;
}
#endregion #endregion
#region Replace() -- case-insensitive string replacement #region Replace() -- case-insensitive string replacement
@ -389,7 +407,7 @@ namespace InputText
if (iReplace > 0) if (iReplace > 0)
sLineNew += sIn.Substring(0, iReplace); sLineNew += sIn.Substring(0, iReplace);
sLineNew += sReplace; sLineNew += sReplace;
sLineNew += sIn.Substring(iReplace + (sFind.ToUpper()).Length); sLineNew += sIn.Substring(iReplace + sFind.Length);
return sLineNew; return sLineNew;
} }
@ -407,21 +425,24 @@ namespace InputText
return sLineNew; return sLineNew;
} }
#endregion #endregion
#region TagLoc(), TagData(), FindTag() -- text parsing utilities for the override tags #region TagLoc(), TagData() -- text parsing utilities for the override tags
private int TagLoc(string sLine, string sTag) private int TagLoc(string sLine, string sTag)
{ {
if (!FindTag(sLine, sTag)) if (!string.IsNullOrEmpty(sLine) && !string.IsNullOrEmpty(sTag))
return -1; {
int loc = sLine.ToUpper().IndexOf(" " + sTag.ToUpper() + "=");
return sLine.ToUpper().IndexOf(" " + sTag.ToUpper() + "=") + 1; if (loc >= 0)
return loc + 1;
}
return -1;
} }
private string TagData(string sLine, string sTag) private string TagData(string sLine, string sTag, int iStart)
{ {
if (!FindTag(sLine, sTag)) if (iStart < 0)
return string.Empty; return string.Empty;
int iStart = TagLoc(sLine, sTag) + sTag.Length + 1; iStart += sTag.Length + 1;
string sTagData = string.Empty; string sTagData = string.Empty;
bool bInQuote = false; bool bInQuote = false;
@ -457,24 +478,29 @@ namespace InputText
return sTagData; return sTagData;
} }
private bool FindTag(string sLine, string sTag)
{
return (sLine.ToUpper().Contains(" " + sTag.ToUpper() + "="));
}
#endregion #endregion
#region ScanAndReplace() -- searches for a tag and its value, adding it to overrides if found, and then removing it from the input line #region ScanAndReplace() -- searches for a tag and its value, adding it to overrides if found, and then removing it from the input line
private string ScanAndReplace(string sLine, string sTagName, Dictionary<string, string> Overrides) private string ScanAndReplace(string sLine, string sTagName, Dictionary<string, string> Overrides, bool formula = false)
{ {
if (FindTag(sLine, sTagName)) int loc = TagLoc(sLine, sTagName);
if (loc >= 0)
{ {
string sTagData = TagData(sLine, sTagName); string sTagData = TagData(sLine, sTagName, loc);
// API.Log(API.LogType.Debug, "InputText: Overriding " + sTagName + " with " + sTagData); // API.Log(API.LogType.Debug, "InputText: Overriding " + sTagName + " with " + sTagData);
if (sTagData.StartsWith("\""))
Overrides.Add(sTagName, sTagData.Substring(1, sTagData.Length - 2)); string data = (sTagData.StartsWith("\"")) ? sTagData.Substring(1, sTagData.Length - 2) : sTagData;
else if (!string.IsNullOrEmpty(data))
Overrides.Add(sTagName, sTagData); {
sLine = Replace(sLine, TagLoc(sLine, sTagName) - 1, 1 + sTagName.Length + 1 + sTagData.Length, string.Empty); int index;
if (formula && data[0] == '(')
data = ParseInlineOption(data, true);
else if ((index = data.IndexOf('[')) >= 0 && data.IndexOf(']', index) > 0)
data = ParseInlineOption(data, false);
}
Overrides.Add(sTagName, data);
sLine = Replace(sLine, loc - 1, 1 + sTagName.Length + 1 + sTagData.Length, string.Empty);
} }
return sLine; return sLine;