Exemplo n.º 1
0
        public static IControl MakeControl(int rawStartIndex, string rawValue, ArgumentInfoCollection contentArguments, ControlResolveHandler controlResolveHandler)
        {
            Renderless dummy     = new Renderless(rawStartIndex, rawValue, contentArguments);
            string     controlID = DirectiveHelper.CaptureControlID(dummy.Value);

            ControlSettings controlSettings =
                ControlHelper.GetControlSettings(controlID, controlResolveHandler);

            if (controlSettings == null)
            {
                return(new Unknown(rawStartIndex, rawValue, contentArguments, new ControlSettings()));
            }

            switch (controlSettings.Type)
            {
            case ControlTypes.Button:
                return(new Button(rawStartIndex, rawValue, contentArguments, controlSettings));

            case ControlTypes.Checkbox:
                return(new Checkbox(rawStartIndex, rawValue, contentArguments, controlSettings));

            case ControlTypes.ConditionalStatement:
                return(new ConditionalStatement(rawStartIndex, rawValue, contentArguments, controlSettings));

            case ControlTypes.DataList:
                return(new DataList(rawStartIndex, rawValue, contentArguments, controlSettings));

            case ControlTypes.ImageButton:
                return(new ImageButton(rawStartIndex, rawValue, contentArguments, controlSettings));

            case ControlTypes.LinkButton:
                return(new LinkButton(rawStartIndex, rawValue, contentArguments, controlSettings));

            case ControlTypes.Password:
                return(new Password(rawStartIndex, rawValue, contentArguments, controlSettings));

            case ControlTypes.RadioButton:
                return(new RadioButton(rawStartIndex, rawValue, contentArguments, controlSettings));

            case ControlTypes.Textarea:
                return(new Textarea(rawStartIndex, rawValue, contentArguments, controlSettings));

            case ControlTypes.Textbox:
                return(new Textbox(rawStartIndex, rawValue, contentArguments, controlSettings));

            case ControlTypes.VariableBlock:
                return(new VariableBlock(rawStartIndex, rawValue, contentArguments, controlSettings));

            default:
                return(new Unknown(rawStartIndex, rawValue, contentArguments, controlSettings));
            }
        }
Exemplo n.º 2
0
        private static ControlSettings GetControlSettings(string controlID, ControlResolveHandler controlResolveRequested)
        {
            Basics.Domain.IDomain workingInstance = null;
            do
            {
                ControlSettings controlSettings = null;
                controlResolveRequested?.Invoke(controlID, ref workingInstance, out controlSettings);

                if (controlSettings != null)
                {
                    return(controlSettings);
                }

                if (workingInstance == null)
                {
                    return(null);
                }

                workingInstance = workingInstance.Parent;
            } while (workingInstance != null);

            return(null);
        }
Exemplo n.º 3
0
        public Control(int rawStartIndex, string rawValue, ArgumentInfoCollection contentArguments, ControlSettings settings) :
            base(rawStartIndex, rawValue, DirectiveTypes.Control, contentArguments)
        {
            this.Settings = settings;

            this.Type = settings.Type;

            this.ControlID      = DirectiveHelper.CaptureControlID(this.Value);
            this.BoundControlID = DirectiveHelper.CaptureBoundControlID(this.Value);
            this.Leveling       = LevelingInfo.Create(this.Value);

            this.Security   = settings.Security;
            this.Bind       = settings.Bind;
            this.Attributes = settings.Attributes;
        }
Exemplo n.º 4
0
 public RadioButton(int rawStartIndex, string rawValue, Global.ArgumentInfoCollection contentArguments, ControlSettings settings) :
     base(rawStartIndex, rawValue, contentArguments, settings)
 {
     this.Text             = settings.Text;
     this.UpdateLocalBlock = settings.UpdateLocalBlock;
     this.BlockIDsToUpdate = settings.BlockIDsToUpdate;
 }
Exemplo n.º 5
0
 public VariableBlock(int rawStartIndex, string rawValue, Global.ArgumentInfoCollection contentArguments, ControlSettings settings) :
     base(rawStartIndex, rawValue, contentArguments, settings)
 {
 }
Exemplo n.º 6
0
 public ConditionalStatement(int rawStartIndex, string rawValue, Global.ArgumentInfoCollection contentArguments, ControlSettings settings) :
     base(rawStartIndex, rawValue, contentArguments, settings)
 {
 }