//-----------------------------------------------------------------------------
// wx.NET/Utils - WxSpinCtrlObject.cs
//
// wx.NET "WxSpinCtrlObject".
//
// Written by Alexander Olk (xenomorph2@onlinehome.de)
// (C) 2004 Alexander Olk
// Licensed under the wxWidgets license, see LICENSE.txt for details.
//
// $Id: WxSpinCtrlObject.cs,v 1.4 2004/06/14 19:56:36 t9mike Exp $
//-----------------------------------------------------------------------------
using System;
using System.Xml;
using System.Collections;
using System.Collections.Specialized;
using System.Text;
namespace wx.ToWxNet{
public class WxSpinCtrlObject : WxObjectBase
{
public override void GenerateCSharpCode()
{
StringBuilder ctorline = new StringBuilder();
ctorline.Append( "\t\t\t" + name + "= new " + classname + "( " + GetParent( parent ) + ", " );
ctorline.Append( id.Length > 0 ? "(int)Cmd." + id : "-1" );
ctorline.Append( ", \"" + value + "\", wxDefaultPosition, wxDefaultSize, " );
//ctorline += style.Length > 0 ? style : "SpinCtrl.wxSP_ARROW_KEYS";
ctorline.Append( CorrectStyle( "wx.SpinCtrl.wxSP_ARROW_KEYS" ) );
ctorline.Append( ", " );
ctorline.Append( range.Length > 0 ? range : "0, 100" );
ctorline.Append( " ,0 );" );
ctorlines.Add( ctorline.ToString() );
AddProperties( propertylines );
}
//---------------------------------------------------------------------
public override void GenerateBasicCode()
{
StringBuilder ctorline = new StringBuilder();
ctorline.Append( "\t\t\t" + name + "= New " + classname + "( " + GetParent( parent ) + ", " );
ctorline.Append( id.Length > 0 ? "Cmd." + id : "-1" );
ctorline.Append( ", \"" + value + "\", wxDefaultPosition, wxDefaultSize, " );
//ctorline += style.Length > 0 ? style : "SpinCtrl.wxSP_ARROW_KEYS";
ctorline.Append( CorrectStyle( "wx.SpinCtrl.wxSP_ARROW_KEYS" ) );
ctorline.Append( ", " );
ctorline.Append( range.Length > 0 ? range : "0, 100" );
ctorline.Append( " ,0 )" );
ctorlines.Add( ctorline.ToString() );
AddProperties( propertylines );
}
}
}
|