| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296 |
- //
- // System.Web.UI.WebControls.RadioButtonList.cs
- //
- // Authors:
- // Jordi Mas i Hernandez ([email protected])
- //
- // (C) 2005 Novell, Inc (http://www.novell.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 System.Collections;
- using System.ComponentModel;
- using System.Collections.Specialized;
- namespace System.Web.UI.WebControls {
- [ValidationProperty ("SelectedItem")]
- public class RadioButtonList : ListControl, IRepeatInfoUser,
- INamingContainer, IPostBackDataHandler {
- public RadioButtonList ()
- {
- }
- #if ONLY_1_1
- [Bindable (true)]
- #endif
- [DefaultValue (-1)]
- [WebSysDescription ("")]
- [WebCategory ("Layout")]
- public virtual int CellPadding {
- get {
- if (ControlStyleCreated == false)
- return -1; // default value
- return ((TableStyle) ControlStyle).CellPadding;
- }
- set {
- ((TableStyle) ControlStyle).CellPadding = value;
- }
- }
- #if ONLY_1_1
- [Bindable (true)]
- #endif
- [DefaultValue (-1)]
- [WebSysDescription ("")]
- [WebCategory ("Layout")]
- public virtual int CellSpacing {
- get {
- if (ControlStyleCreated == false)
- return -1; // default value
- return ((TableStyle) ControlStyle).CellSpacing;
- }
- set {
- ((TableStyle) ControlStyle).CellSpacing = value;
- }
- }
- #if ONLY_1_1
- [Bindable (true)]
- #endif
- [DefaultValue (0)]
- [WebSysDescription ("")]
- [WebCategory ("Layout")]
- public virtual int RepeatColumns {
- get {
- return ViewState.GetInt ("RepeatColumns", 0);
- }
- set {
- if (value < 0)
- throw new ArgumentOutOfRangeException ("The number of columns is set to a negative value.");
- ViewState ["RepeatColumns"] = value;
- }
- }
- #if ONLY_1_1
- [Bindable (true)]
- #endif
- [DefaultValue (RepeatDirection.Vertical)]
- [WebSysDescription ("")]
- [WebCategory ("Layout")]
- public virtual RepeatDirection RepeatDirection {
- get {
- return (RepeatDirection) ViewState.GetInt ("RepeatDirection", (int) RepeatDirection.Vertical);
- }
- set {
- if (value != RepeatDirection.Horizontal && value != RepeatDirection.Vertical)
- throw new ArgumentOutOfRangeException ("he display direction of the list is not one of the RepeatDirection values.");
- ViewState ["RepeatDirection"] = value;
- }
- }
- #if ONLY_1_1
- [Bindable (true)]
- #endif
- [DefaultValue (RepeatLayout.Table)]
- [WebSysDescription ("")]
- [WebCategory ("Layout")]
- public virtual RepeatLayout RepeatLayout {
- get {
- return (RepeatLayout) ViewState.GetInt ("RepeatLayout", (int) RepeatLayout.Table);
- }
- set {
- if (value != RepeatLayout.Flow && value != RepeatLayout.Table)
- throw new ArgumentOutOfRangeException ("The radio buttons layout is not one of the RepeatLayout values.");
- ViewState ["RepeatLayout"] = value;
- }
- }
- #if ONLY_1_1
- [Bindable (true)]
- #endif
- [DefaultValue (TextAlign.Right)]
- [WebSysDescription ("")]
- [WebCategory ("Appearance")]
- public virtual TextAlign TextAlign {
- get {
- return (TextAlign )ViewState.GetInt ("TextAlign", (int) TextAlign.Right);
- }
- set {
- if (value != TextAlign.Left && value != TextAlign.Right)
- throw new ArgumentOutOfRangeException ("The label text alignment associated with the radio buttons is not one of the TextAlign values.");
- ViewState ["TextAlign"] = value;
- }
- }
- // Interface properties
- #if NET_2_0
- [MonoTODO]
- protected virtual bool HasFooter
- {
- get {
- throw new NotImplementedException ();
- }
- }
- [MonoTODO]
- protected virtual bool HasHeader
- {
- get {
- throw new NotImplementedException ();
- }
- }
- [MonoTODO]
- protected virtual bool HasSeparators
- {
- get {
- throw new NotImplementedException ();
- }
- }
-
- [MonoTODO]
- protected virtual int RepeatedItemCount
- {
- get {
- throw new NotImplementedException ();
- }
- }
- #endif
-
- bool IRepeatInfoUser.HasFooter {
- get { return false; }
- }
- bool IRepeatInfoUser.HasHeader {
- get { return false; }
- }
- bool IRepeatInfoUser.HasSeparators {
- get { return false; }
- }
- int IRepeatInfoUser.RepeatedItemCount {
- get { return Items.Count; }
- }
- protected override Style CreateControlStyle ()
- {
- return new TableStyle (ViewState);
- }
- #if NET_2_0
- [MonoTODO]
- protected override Control FindControl (string id, int pathOffset)
- {
- throw new NotImplementedException ();
- }
- [MonoTODO]
- protected virtual Style GetItemStyle (ListItemType itemType, int repeatIndex)
- {
- throw new NotImplementedException ();
- }
- [MonoTODO]
- protected virtual bool LoadPostData (string postDataKey, NameValueCollection postCollection)
- {
- throw new NotImplementedException ();
- }
- [MonoTODO]
- protected virtual void RaisePostDataChangedEvent ()
- {
- throw new NotImplementedException ();
- }
- [MonoTODO]
- protected virtual void RenderItem (ListItemType itemType, int repeatIndex, RepeatInfo repeatInfo, HtmlTextWriter writer)
- {
- throw new NotImplementedException ();
- }
- #endif
- [MonoTODO]
- bool IPostBackDataHandler.LoadPostData (string postDataKey, NameValueCollection postCollection)
- {
- return true;
- }
-
- [MonoTODO]
- void IPostBackDataHandler.RaisePostDataChangedEvent ()
- {
- }
- Style IRepeatInfoUser.GetItemStyle (ListItemType itemType, int repeatIndex)
- {
- return null;
- }
- void IRepeatInfoUser.RenderItem (ListItemType itemType, int repeatIndex, RepeatInfo repeatInfo, HtmlTextWriter writer)
- {
- RadioButton radio = new RadioButton ();
- radio.Text = Items [repeatIndex].Text;
- radio.ID = ClientID + "_" + repeatIndex;
- radio.TextAlign = TextAlign;
- radio.GroupName = UniqueID;
- radio.Page = Page;
- radio.Checked = Items [repeatIndex].Selected;
- radio.Attributes["Value"] = Items [repeatIndex].Value;
- radio.RenderControl (writer);
- }
- #if NET_2_0
- protected internal
- #else
- protected
- #endif
- override void Render (HtmlTextWriter writer)
- {
- RepeatInfo repeat = new RepeatInfo ();
- repeat.RepeatColumns = RepeatColumns;
- repeat.RepeatDirection = RepeatDirection;
- repeat.RepeatLayout = RepeatLayout;
- repeat.RenderRepeater (writer, this, ControlStyle, this);
- }
- }
- }
|