mirror of
https://github.com/claunia/libexeinfo.git
synced 2025-12-16 19:14:24 +00:00
146 lines
5.4 KiB
C#
146 lines
5.4 KiB
C#
//
|
|
// PanelGemText.xeto.cs
|
|
//
|
|
// Author:
|
|
// Natalia Portillo <claunia@claunia.com>
|
|
//
|
|
// Copyright (c) 2017-2018 Copyright © Claunia.com
|
|
//
|
|
// Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
// of this software and associated documentation files (the "Software"), to deal
|
|
// in the Software without restriction, including without limitation the rights
|
|
// to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
// copies of the Software, and to permit persons to whom the Software is
|
|
// furnished to do so, subject to the following conditions:
|
|
//
|
|
// The above copyright notice and this permission notice shall be included in
|
|
// all copies or substantial portions of the Software.
|
|
//
|
|
// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
// FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
// AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
// LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
// OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
|
|
// THE SOFTWARE.
|
|
|
|
using Eto.Forms;
|
|
using Eto.Serialization.Xaml;
|
|
|
|
namespace exeinfogui.GEM
|
|
{
|
|
public class PanelGemText : Panel
|
|
{
|
|
Label lblTemplate;
|
|
Label lblText;
|
|
Label lblValidation;
|
|
TextBox txtBorderColor;
|
|
TextBox txtCoordinates;
|
|
TextBox txtFill;
|
|
TextBox txtFlags;
|
|
TextBox txtFont;
|
|
TextBox txtInsideColor;
|
|
TextBox txtJustification;
|
|
TextBox txtPreview;
|
|
TextBox txtSize;
|
|
TextBox txtState;
|
|
TextBox txtTemplate;
|
|
TextBox txtText;
|
|
TextBox txtTextColor;
|
|
TextBox txtThickness;
|
|
TextBox txtTransparency;
|
|
TextBox txtValidation;
|
|
|
|
public PanelGemText()
|
|
{
|
|
XamlReader.Load(this);
|
|
}
|
|
|
|
public void Update(libexeinfo.GEM.TreeObjectNode node)
|
|
{
|
|
txtFlags.Text = node.flags == 0 ? "None" : node.flags.ToString();
|
|
txtState.Text = node.state == 0 ? "Normal" : node.state.ToString();
|
|
txtCoordinates.Text = $"{node.x},{node.y}";
|
|
txtSize.Text = $"{node.width}x{node.height} pixels";
|
|
txtBorderColor.Text = $"{node.TedInfo.BorderColor}";
|
|
txtFill.Text = $"{node.TedInfo.Fill}";
|
|
txtFont.Text = $"{node.TedInfo.Font}";
|
|
txtInsideColor.Text = $"{node.TedInfo.InsideColor}";
|
|
txtJustification.Text = $"{node.TedInfo.Justification}";
|
|
txtTemplate.Text = node.TedInfo.Template;
|
|
txtText.Text = node.TedInfo.Text;
|
|
txtTextColor.Text = $"{node.TedInfo.TextColor}";
|
|
txtTransparency.Text =
|
|
node.TedInfo.Transparency ? "Transparent mode" : "Replace mode";
|
|
txtValidation.Text = node.TedInfo.Validation;
|
|
if(node.TedInfo.Thickness < 0) txtThickness.Text = $"{node.TedInfo.Thickness * -1} pixels outward";
|
|
else if(node.TedInfo.Thickness < 0)
|
|
txtThickness.Text = $"{node.TedInfo.Thickness} pixels inward";
|
|
else
|
|
txtThickness.Text = "None";
|
|
|
|
if(string.IsNullOrWhiteSpace(node.TedInfo.Template))
|
|
{
|
|
txtTemplate.Visible = false;
|
|
lblTemplate.Visible = false;
|
|
}
|
|
else
|
|
{
|
|
txtTemplate.Visible = true;
|
|
lblTemplate.Visible = true;
|
|
}
|
|
|
|
if(string.IsNullOrWhiteSpace(node.TedInfo.Text))
|
|
{
|
|
txtText.Visible = false;
|
|
lblText.Visible = false;
|
|
}
|
|
else
|
|
{
|
|
txtText.Visible = true;
|
|
lblText.Visible = true;
|
|
}
|
|
|
|
if(string.IsNullOrWhiteSpace(node.TedInfo.Validation))
|
|
{
|
|
txtValidation.Visible = false;
|
|
lblValidation.Visible = false;
|
|
}
|
|
else
|
|
{
|
|
txtValidation.Visible = true;
|
|
lblValidation.Visible = true;
|
|
}
|
|
|
|
if(!string.IsNullOrEmpty(node.TedInfo.Template))
|
|
if(string.IsNullOrEmpty(node.TedInfo.Text))
|
|
txtPreview.Text = node.TedInfo.Template;
|
|
else
|
|
{
|
|
char[] preview = node.TedInfo.Template.ToCharArray();
|
|
char[] template = node.TedInfo.Text.ToCharArray();
|
|
if(template[0] == '@')
|
|
for(int i = 0; i < template.Length; i++)
|
|
template[i] = ' ';
|
|
|
|
int templatePos = 0;
|
|
|
|
for(int i = 0; i < preview.Length; i++)
|
|
{
|
|
if(preview[i] != '_') continue;
|
|
|
|
if(templatePos >= template.Length) continue;
|
|
|
|
preview[i] = template[templatePos];
|
|
templatePos++;
|
|
}
|
|
|
|
txtPreview.Text = new string(preview);
|
|
}
|
|
else txtPreview.Text = txtText.Text;
|
|
|
|
txtPreview.BackgroundColor = GemColor.GemToEtoColor(node.TedInfo.InsideColor);
|
|
txtPreview.TextColor = GemColor.GemToEtoColor(node.TedInfo.TextColor);
|
|
}
|
|
}
|
|
} |