mirror of
https://github.com/fadden/6502bench.git
synced 2024-12-01 22:50:35 +00:00
73 lines
2.2 KiB
C#
73 lines
2.2 KiB
C#
/*
|
|
* Copyright 2018 faddenSoft
|
|
*
|
|
* 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.
|
|
*/
|
|
using System;
|
|
using System.Diagnostics;
|
|
using System.Drawing;
|
|
using System.Windows.Forms;
|
|
|
|
namespace SourceGen.AppForms {
|
|
public partial class EditComment : Form {
|
|
/// <summary>
|
|
/// Comment string being edited.
|
|
/// </summary>
|
|
public string Comment { get; set; }
|
|
|
|
private string mNumCharsFormat;
|
|
|
|
private Color mDefaultLabelColor;
|
|
|
|
private const int RECOMMENDED_MAX_LENGTH = 52;
|
|
|
|
|
|
public EditComment() {
|
|
InitializeComponent();
|
|
}
|
|
|
|
private void EditComment_Load(object sender, EventArgs e) {
|
|
mDefaultLabelColor = asciiOnlyLabel.ForeColor;
|
|
|
|
// Extract the format string from the label.
|
|
mNumCharsFormat = numCharsLabel.Text;
|
|
|
|
textBox1.Text = Comment;
|
|
UpdateLengthLabel();
|
|
}
|
|
|
|
private void UpdateLengthLabel() {
|
|
numCharsLabel.Text = string.Format(mNumCharsFormat, textBox1.Text.Length);
|
|
}
|
|
|
|
private void textBox1_TextChanged(object sender, EventArgs e) {
|
|
UpdateLengthLabel();
|
|
|
|
if (!CommonUtil.TextUtil.IsPrintableAscii(textBox1.Text)) {
|
|
asciiOnlyLabel.ForeColor = Color.Red;
|
|
} else {
|
|
asciiOnlyLabel.ForeColor = mDefaultLabelColor;
|
|
}
|
|
if (textBox1.Text.Length > RECOMMENDED_MAX_LENGTH) {
|
|
maxLengthLabel.ForeColor = Color.Red;
|
|
} else {
|
|
maxLengthLabel.ForeColor = mDefaultLabelColor;
|
|
}
|
|
}
|
|
|
|
private void okButton_Click(object sender, EventArgs e) {
|
|
Comment = textBox1.Text;
|
|
}
|
|
}
|
|
}
|