예제 #1
0
        public UIScrollBar(ScrollBarOrientation orientation = ScrollBarOrientation.Vertical)
        {
            Orientation = orientation;
            string arrowResource = string.Empty;
            Vector2 sliderSize = Vector2.Zero;

            switch (orientation)
            {
                case ScrollBarOrientation.Vertical:
                    sliderSize = new Vector2(0, 20);
                    arrowResource = "graphics/arrow_down";
                    break;

                case ScrollBarOrientation.Horizontal:
                    sliderSize = new Vector2(20, 0);
                    arrowResource = "graphics/arrow_left";
                    break;
            }

            AutoSize = false;
            scrollStep = 0.02f;
            Color = new Color(240, 240, 240);
            Alpha = 1f;
            DrawBounds = true;

            sliderBackground = new UIPanel();
            sliderBackground.Color = new Color(240, 240, 240);
            sliderBackground.Alpha = 1f;
            sliderBackground.InputMoved += sliderBackground_MouseMoved;
            sliderBackground.InputPressed += sliderBackground_MousePressed;

            slider = new UIPanel();
            slider.Color = new Color(205, 205, 205);
            slider.Alpha = 1f;
            slider.AutoSize = false;
            slider.AbsorbPointer = false;
            slider.Size = sliderSize;
            //slider.InputDown += sliderBackground_MousePressed;

            arrowA = new UIButton();
            var arrowAImg = new UIImage(arrowResource);
            arrowAImg.Color = new Color(96, 96, 96);
            arrowAImg.AddConstraint(Edge.Dock, arrowA, Edge.Dock);
            arrowA.Tag = "bla";
            arrowA.AddDecoration(arrowAImg);
            arrowA.PointedColor = new Color(190, 190, 190);
            arrowA.PressedColor = new Color(120, 120, 120);
            arrowA.HighlightZoom = false;
            arrowA.InputDown += arrowA_MouseHeld;

            arrowB = new UIButton();
            var arrowBImg = new UIImage(arrowResource);
            arrowBImg.Color = new Color(96, 96, 96);
            arrowBImg.AddConstraint(Edge.Dock, arrowB, Edge.Dock);
            arrowB.AddDecoration(arrowBImg);
            arrowB.PointedColor = new Color(190, 190, 190);
            arrowB.PressedColor = new Color(120, 120, 120);
            arrowB.HighlightZoom = false;
            arrowB.InputDown += arrowB_MouseHeld;

            switch (orientation)
            {
                case ScrollBarOrientation.Vertical:
                    arrowAImg.SpriteEffect = SpriteEffects.FlipVertically;
                    arrowA.AddConstraint(Edge.Horizontal | Edge.Top, this, Edge.Horizontal | Edge.Top);
                    arrowB.AddConstraint(Edge.Horizontal, this, Edge.Horizontal);
                    arrowB.AddConstraint(Edge.Bottom, this, Edge.Bottom);
                    sliderBackground.AddConstraint(Edge.Horizontal, this, Edge.Horizontal);
                    sliderBackground.AddConstraint(Edge.Top, arrowA, Edge.Bottom);
                    sliderBackground.AddConstraint(Edge.Bottom, arrowB, Edge.Top);
                    slider.AddConstraint(Edge.Top, sliderBackground, Edge.Top, ConstraintCategory.Initialization);
                    slider.AddConstraint(Edge.Horizontal, sliderBackground, Edge.Horizontal);
                    break;

                case ScrollBarOrientation.Horizontal:
                    arrowBImg.SpriteEffect = SpriteEffects.FlipHorizontally;
                    arrowA.AddConstraint(Edge.Vertical | Edge.Left, this, Edge.Vertical | Edge.Left);
                    arrowB.AddConstraint(Edge.Vertical, this, Edge.Vertical);
                    arrowB.AddConstraint(Edge.Right, this, Edge.Right);
                    sliderBackground.AddConstraint(Edge.Vertical, this, Edge.Vertical);
                    sliderBackground.AddConstraint(Edge.Left, arrowA, Edge.Right);
                    sliderBackground.AddConstraint(Edge.Right, arrowB, Edge.Left);
                    slider.AddConstraint(Edge.Left, sliderBackground, Edge.Left, ConstraintCategory.Initialization);
                    slider.AddConstraint(Edge.Vertical, sliderBackground, Edge.Vertical);
                    break;
            }

            AbsorbPointer = false;
            //base.AbsorbPointer = true;
            //slider.AbsorbPointer = true;
            //arrowDown.AbsorbPointer = true;
            //arrowUp.AbsorbPointer = true;
            sliderBackground.AbsorbPointer = true;

            AddChild(arrowA);
            AddChild(arrowB);
            AddChild(sliderBackground);
            AddChild(slider);
        }
예제 #2
0
        public UIWindow()
        {
            AutoSize = false;
            Alpha = 0f;
            MinimumSize = new Vector2(200);
            Size = new Vector2(350, 250);
            TopPanel = new UIPanel();
            BodyPanel = new UIPanel();
            BottomPanel = new UIPanel();

            // Top panel
            TopPanel.AddConstraint(Edge.Top, this, Edge.Top);
            TopPanel.AddConstraint(Edge.Horizontal, this, Edge.Horizontal);
            TopPanel.Color = Color.White;
            TopPanel.Alpha = 1f;
            TopPanel.Tag = nameof(TopPanel);
            TopPanel.InputMoved += TopPanel_InputMoved;
            TopPanel.InputReleasedAnywhere += TopPanel_InputReleasedAnywhere;

            titleLabel = new UILabel(nameof(UIWindow));
            titleLabel.AddConstraint(Edge.Top, TopPanel, Edge.Top);
            titleLabel.AddConstraint(Edge.Left, TopPanel, Edge.Left, 5);
            titleLabel.Tag = "Titel label";
            TopPanel.AddChild(titleLabel);

            btn_close = new UIButton();
            btn_close.InputEnter += btn_close_InputEnter;
            btn_close.InputLeave += btn_close_InputLeave;
            btn_close.AddDecoration(new UIImage("graphics/btn_close") { Color = Color.Black });
            btn_close.AddConstraint(Edge.TopRight, TopPanel, Edge.TopRight);
            btn_close.HighlightZoom = false;
            btn_close.InputReleased += Btn_close_InputReleased;
            TopPanel.AddChild(btn_close);

            btn_maximize = new UIButton();
            btn_maximize.Color = Color.Transparent;
            btn_maximize.PointedColor = new Color(190, 190, 190);
            btn_maximize.PressedColor = new Color(120, 120, 120);
            btn_maximize.PointedAlpha = 0.5f;
            btn_maximize.PressedAlpha = 0.5f;
            btn_maximize.AddDecoration(new UIImage(RESOURCE_MAXIMIZE) { Color = Color.Black });
            btn_maximize.AddConstraint(Edge.Top, btn_close, Edge.Top);
            btn_maximize.AddConstraint(Edge.Right, btn_close, Edge.Left, -1);
            btn_maximize.HighlightZoom = false;
            btn_maximize.InputReleased += Btn_maximize_InputReleased;
            TopPanel.AddChild(btn_maximize);

            btn_minimize = new UIButton();
            btn_minimize.Color = Color.Transparent;
            btn_minimize.PointedColor = new Color(190, 190, 190);
            btn_minimize.PressedColor = new Color(120, 120, 120);
            btn_minimize.PointedAlpha = 0.5f;
            btn_minimize.PressedAlpha = 0.5f;
            btn_minimize.AddDecoration(new UIImage("graphics/btn_minimize") { Color = Color.Black });
            btn_minimize.AddConstraint(Edge.Top, btn_maximize, Edge.Top);
            btn_minimize.AddConstraint(Edge.Right, btn_maximize, Edge.Left, -1);
            btn_minimize.HighlightZoom = false;
            btn_minimize.InputReleased += Btn_minimize_InputReleased;
            TopPanel.AddChild(btn_minimize);

            // Body panel
            BodyPanel.AddConstraint(Edge.Top, TopPanel, Edge.Bottom);
            BodyPanel.AddConstraint(Edge.Horizontal, this, Edge.Horizontal);
            BodyPanel.AddConstraint(Edge.Bottom, BottomPanel, Edge.Top);
            //BodyPanel.Color = Color.White;
            //BodyPanel.Alpha = 1f;
            BodyPanel.Tag = nameof(BodyPanel);

            // Bottom panel
            BottomPanel.AddConstraint(Edge.Bottom, this, Edge.Bottom);
            BottomPanel.AddConstraint(Edge.Horizontal, this, Edge.Horizontal);
            BottomPanel.Color = Color.White;
            BottomPanel.Alpha = 1f;
            BottomPanel.Tag = nameof(BottomPanel);
            BottomPanel.Size = new Vector2(0, 20);

            // Resize grip
            ResizeGrip = new UIImage("graphics/resizeGrip");
            ResizeGrip.Color = Color.Black;
            ResizeGrip.AddConstraint(Edge.BottomRight, BottomPanel, Edge.BottomRight);
            ResizeGrip.Tag = nameof(ResizeGrip);
            ResizeGrip.InputPressed += ResizeGrip_InputPressed;
            ResizeGrip.InputReleasedAnywhere += ResizeGrip_InputReleasedAnywhere;
            BottomPanel.AddChild(ResizeGrip);

            AddChild(TopPanel);
            AddChild(BodyPanel);
            AddChild(BottomPanel);

            Resizable = true;
        }
예제 #3
0
        private void InitWindow()
        {
            var window = new UIWindow();
            window.AddConstraint(Edge.CenterY, null, Edge.CenterY, 0f, ConstraintCategory.Initialization);
            window.AddConstraint(Edge.Right, null, Edge.Right, 50f, ConstraintCategory.Initialization);

            var contentPanel = new UIScrollWindow(UIScrollWindow.ScrollBarMode.Both);
            contentPanel.AddConstraint(Edge.Dock, window.BodyPanel, Edge.Dock);

            var img = new UIImage("graphics/map");
            img.Tag = "Map";
            img.AddConstraint(Edge.TopLeft, contentPanel.ScrollPanel, Edge.TopLeft, ConstraintCategory.Initialization);
            contentPanel.AddChild(img);

            window.BodyPanel.AddChild(contentPanel);
            uiManager.Add(window);
        }
예제 #4
0
        public UIScrollBar(ScrollBarOrientation orientation = ScrollBarOrientation.Vertical)
        {
            Orientation = orientation;
            string  arrowResource = string.Empty;
            Vector2 sliderSize    = Vector2.Zero;

            switch (orientation)
            {
            case ScrollBarOrientation.Vertical:
                sliderSize    = new Vector2(0, 20);
                arrowResource = "graphics/arrow_down";
                break;

            case ScrollBarOrientation.Horizontal:
                sliderSize    = new Vector2(20, 0);
                arrowResource = "graphics/arrow_left";
                break;
            }

            AutoSize   = false;
            scrollStep = 0.02f;
            Color      = new Color(240, 240, 240);
            Alpha      = 1f;
            DrawBounds = true;

            sliderBackground               = new UIPanel();
            sliderBackground.Color         = new Color(240, 240, 240);
            sliderBackground.Alpha         = 1f;
            sliderBackground.InputMoved   += sliderBackground_MouseMoved;
            sliderBackground.InputPressed += sliderBackground_MousePressed;

            slider               = new UIPanel();
            slider.Color         = new Color(205, 205, 205);
            slider.Alpha         = 1f;
            slider.AutoSize      = false;
            slider.AbsorbPointer = false;
            slider.Size          = sliderSize;
            //slider.InputDown += sliderBackground_MousePressed;

            arrowA = new UIButton();
            var arrowAImg = new UIImage(arrowResource);

            arrowAImg.Color = new Color(96, 96, 96);
            arrowAImg.AddConstraint(Edge.Dock, arrowA, Edge.Dock);
            arrowA.Tag = "bla";
            arrowA.AddDecoration(arrowAImg);
            arrowA.PointedColor  = new Color(190, 190, 190);
            arrowA.PressedColor  = new Color(120, 120, 120);
            arrowA.HighlightZoom = false;
            arrowA.InputDown    += arrowA_MouseHeld;

            arrowB = new UIButton();
            var arrowBImg = new UIImage(arrowResource);

            arrowBImg.Color = new Color(96, 96, 96);
            arrowBImg.AddConstraint(Edge.Dock, arrowB, Edge.Dock);
            arrowB.AddDecoration(arrowBImg);
            arrowB.PointedColor  = new Color(190, 190, 190);
            arrowB.PressedColor  = new Color(120, 120, 120);
            arrowB.HighlightZoom = false;
            arrowB.InputDown    += arrowB_MouseHeld;

            switch (orientation)
            {
            case ScrollBarOrientation.Vertical:
                arrowAImg.SpriteEffect = SpriteEffects.FlipVertically;
                arrowA.AddConstraint(Edge.Horizontal | Edge.Top, this, Edge.Horizontal | Edge.Top);
                arrowB.AddConstraint(Edge.Horizontal, this, Edge.Horizontal);
                arrowB.AddConstraint(Edge.Bottom, this, Edge.Bottom);
                sliderBackground.AddConstraint(Edge.Horizontal, this, Edge.Horizontal);
                sliderBackground.AddConstraint(Edge.Top, arrowA, Edge.Bottom);
                sliderBackground.AddConstraint(Edge.Bottom, arrowB, Edge.Top);
                slider.AddConstraint(Edge.Top, sliderBackground, Edge.Top, ConstraintCategory.Initialization);
                slider.AddConstraint(Edge.Horizontal, sliderBackground, Edge.Horizontal);
                break;

            case ScrollBarOrientation.Horizontal:
                arrowBImg.SpriteEffect = SpriteEffects.FlipHorizontally;
                arrowA.AddConstraint(Edge.Vertical | Edge.Left, this, Edge.Vertical | Edge.Left);
                arrowB.AddConstraint(Edge.Vertical, this, Edge.Vertical);
                arrowB.AddConstraint(Edge.Right, this, Edge.Right);
                sliderBackground.AddConstraint(Edge.Vertical, this, Edge.Vertical);
                sliderBackground.AddConstraint(Edge.Left, arrowA, Edge.Right);
                sliderBackground.AddConstraint(Edge.Right, arrowB, Edge.Left);
                slider.AddConstraint(Edge.Left, sliderBackground, Edge.Left, ConstraintCategory.Initialization);
                slider.AddConstraint(Edge.Vertical, sliderBackground, Edge.Vertical);
                break;
            }


            AbsorbPointer = false;
            //base.AbsorbPointer = true;
            //slider.AbsorbPointer = true;
            //arrowDown.AbsorbPointer = true;
            //arrowUp.AbsorbPointer = true;
            sliderBackground.AbsorbPointer = true;

            AddChild(arrowA);
            AddChild(arrowB);
            AddChild(sliderBackground);
            AddChild(slider);
        }