1
0
mirror of https://github.com/fadden/6502bench.git synced 2024-08-07 20:28:55 +00:00
6502bench/SourceGen/AppForms/EditComment.cs

76 lines
2.4 KiB
C#
Raw Normal View History

2018-09-28 17:05:11 +00:00
/*
* 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>
/// Edited comment string. Will be empty if the comment is to be deleted.
2018-09-28 17:05:11 +00:00
/// </summary>
public string Comment { get; private set; }
2018-09-28 17:05:11 +00:00
private string mNumCharsFormat;
private Color mDefaultLabelColor;
private const int RECOMMENDED_MAX_LENGTH = 52;
public EditComment(string comment) {
2018-09-28 17:05:11 +00:00
InitializeComponent();
// The initial label string is used as the format arg.
mNumCharsFormat = numCharsLabel.Text;
// Remember the default color.
2018-09-28 17:05:11 +00:00
mDefaultLabelColor = asciiOnlyLabel.ForeColor;
Debug.Assert(comment != null);
commentTextBox.Text = comment;
}
2018-09-28 17:05:11 +00:00
private void EditComment_Load(object sender, EventArgs e) {
2018-09-28 17:05:11 +00:00
UpdateLengthLabel();
}
private void UpdateLengthLabel() {
numCharsLabel.Text = string.Format(mNumCharsFormat, commentTextBox.Text.Length);
2018-09-28 17:05:11 +00:00
}
private void commentTextBox_TextChanged(object sender, EventArgs e) {
2018-09-28 17:05:11 +00:00
UpdateLengthLabel();
if (!CommonUtil.TextUtil.IsPrintableAscii(commentTextBox.Text)) {
2018-09-28 17:05:11 +00:00
asciiOnlyLabel.ForeColor = Color.Red;
} else {
asciiOnlyLabel.ForeColor = mDefaultLabelColor;
}
if (commentTextBox.Text.Length > RECOMMENDED_MAX_LENGTH) {
2018-09-28 17:05:11 +00:00
maxLengthLabel.ForeColor = Color.Red;
} else {
maxLengthLabel.ForeColor = mDefaultLabelColor;
}
}
private void okButton_Click(object sender, EventArgs e) {
Comment = commentTextBox.Text;
2018-09-28 17:05:11 +00:00
}
}
}