| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223 |
- /**
- * Project : Mono
- * Namespace : System.Web.UI.MobileControls
- * Class : DeviceSpecific
- * Author : Gaurav Vaish
- *
- * Copyright : 2003 with Gaurav Vaish, and with
- * Ximian Inc
- */
- using System.Collections;
- using System.Web.UI;
- using System.Web.Mobile;
- namespace System.Web.UI.MobileControls
- {
- public class DeviceSpecific : Control
- {
- private DeviceSpecificChoiceCollection choices;
- private TemplateControl closestTemplateControl = null;
- private bool haveSelectedChoice = false;
- private object owner;
- private DeviceSpecificChoice selectedChoice;
- public DeviceSpecific()
- {
- }
- internal void SetOwner(object owner)
- {
- this.owner = owner;
- }
- internal void SetDesignerChoice(DeviceSpecificChoice choice)
- {
- this.selectedChoice = choice;
- this.haveSelectedChoice = true;
- }
- internal void ApplyProperties()
- {
- if(SelectedChoice != null)
- {
- SelectedChoice.ApplyProperties();
- }
- }
- public new event EventHandler DataBinding
- {
- add
- {
- base.DataBinding += value;
- }
- remove
- {
- base.DataBinding -= value;
- }
- }
- public new event EventHandler Disposed
- {
- add
- {
- base.Disposed += value;
- }
- remove
- {
- base.Disposed -= value;
- }
- }
- public new event EventHandler Init
- {
- add
- {
- base.Init += value;
- }
- remove
- {
- base.Init -= value;
- }
- }
- public new event EventHandler Load
- {
- add
- {
- base.Load += value;
- }
- remove
- {
- base.Load -= value;
- }
- }
- public new event EventHandler PreRender
- {
- add
- {
- base.PreRender += value;
- }
- remove
- {
- base.PreRender -= value;
- }
- }
- public new event EventHandler Unload
- {
- add
- {
- base.Unload += value;
- }
- remove
- {
- base.Unload -= value;
- }
- }
- public DeviceSpecificChoiceCollection Choices
- {
- get
- {
- if(choices == null)
- {
- choices = new DeviceSpecificChoiceCollection(this);
- }
- return choices;
- }
- }
- public TemplateControl ClosestTemplateControl
- {
- get
- {
- if(closestTemplateControl == null)
- {
- MobileControl ctrl = null;
- if(Owner is System.Web.UI.MobileControls.Style)
- {
- ctrl = ((System.Web.UI.MobileControls.Style)Owner).Control;
- } else
- {
- ctrl = (MobileControl) Owner;
- }
- closestTemplateControl = ctrl.FindClosestTemplateControl();
- }
- return closestTemplateControl;
- }
- }
- public override bool EnableViewState
- {
- get
- {
- return base.EnableViewState;
- }
- }
- public bool HasTemplates
- {
- get
- {
- if(SelectedChoice != null)
- {
- return SelectedChoice.HasTemplates;
- }
- return false;
- }
- }
- public MobilePage MobilePage
- {
- get
- {
- throw new NotImplementedException();
- }
- }
- public object Owner
- {
- get
- {
- return this.owner;
- }
- }
- public DeviceSpecificChoice SelectedChoice
- {
- get
- {
- throw new NotImplementedException();
- }
- }
- public override bool Visible
- {
- get
- {
- return base.Visible;
- }
- }
-
- protected override void AddParsedSubObject(object obj)
- {
- if(obj is DeviceSpecificChoice)
- {
- DeviceSpecificChoice dsc = (DeviceSpecificChoice)obj;
- Choices.Add(dsc);
- }
- }
-
- public ITemplate GetTemplate(string templateName)
- {
- ITemplate retVal = null;
- if(SelectedChoice != null)
- {
- retVal = (ITemplate) SelectedChoice.Templates[templateName];
- }
- return retVal;
- }
- }
- }
|