Mercurial > repos > IBDev-IBBoard.WarFoundry.GUI.GTK
view Widgets/TransformXmlWidget.cs @ 135:fda46380dd68
Re #329: "Points" system should be used in UI
* Replace fixed "pts" or "pt" with game system's text
(May be fixed, but needs more testing)
author | IBBoard <dev@ibboard.co.uk> |
---|---|
date | Sun, 09 Oct 2011 21:03:09 +0100 |
parents | cff58ea990c4 |
children | 9808adf2d566 |
line wrap: on
line source
// This file (TransformXmlWidget.cs) is a part of the IBBoard.WarFoundry.GUI.GTK project and is copyright 2011 IBBoard // // The file and the library/program it is in are licensed and distributed, without warranty, under the GNU Affero GPL license, either version 3 of the License or (at your option) any later version. Please see COPYING for more information and the full license. using System; using System.IO; using System.Collections.Generic; using IBBoard.GtkSharp; using IBBoard.GtkSharp.Translatable; namespace IBBoard.WarFoundry.GUI.GTK { [System.ComponentModel.ToolboxItem(true)] public partial class TransformXmlWidget : Gtk.Bin { public event EventHandler TransformChanged; public TransformXmlWidget() { this.Build(); FillXsltList(); ControlTranslator.TranslateWidget(this); } private void FillXsltList() { DirectoryInfo dir = new DirectoryInfo(System.IO.Path.Combine(Constants.ExecutablePath, "xsl")); List<FileInfo> files = new List<FileInfo>(dir.GetFiles("*.xsl")); ComboBoxUtils.FillCombo(transformList, files, delegate(FileInfo file) { return file.Name; }); } public bool IsValid { get { return !doTransformWidget.Active || ComboBoxUtils.GetSelectedItem<FileInfo>(transformList) != null; } } public bool TransformEnabled { get { return doTransformWidget.Active; } } public string GetXsltPath() { return ComboBoxUtils.GetSelectedItem<FileInfo>(transformList).FullName; } protected void OnDoTransformWidgetToggled(object sender, System.EventArgs e) { bool enabled = doTransformWidget.Active; lblTransform.Sensitive = enabled; transformList.Sensitive = enabled; FireTransformChanged(); } protected void OnTransformListChanged(object sender, System.EventArgs e) { FireTransformChanged(); } private void FireTransformChanged() { if (TransformChanged!= null) { TransformChanged(this, EventArgs.Empty); } } } }