Exemplo n.º 1
0
 private static extern bool SetConsoleWindowInfo([In] IntPtr consoleOutput, [In] bool absolute, [In, Out] ref SmallRect consoleWindow);
Exemplo n.º 2
0
 private static extern bool WriteConsoleOutputW([In] IntPtr hWnd,
                                                [In] FramePixel[] pixels,
                                                [In] Coord bufferSize, [In] Coord bufferCoord, [In, Out] ref SmallRect writeRegion);
Exemplo n.º 3
0
        public static bool SetSize(ref int width, ref int height)
        {
            bool             changed = false;
            ScreenBufferInfo info    = GetScreenBufferInfo();
            //bounds can't be smaller than screen buffer
            int hSize = info.Bounds.Right + 1 + info.Bounds.Left;

            if (width != hSize)
            {
                changed = true;
            }
            int vSize = info.Bounds.Bottom + 1 + info.Bounds.Top;

            if (height != vSize)
            {
                changed = true;
            }

            bool widthDecrease  = false;
            bool heightDecrease = false;

            if (width < info.Size.X)
            {
                widthDecrease = true;
            }
            if (height < info.Size.Y)
            {
                heightDecrease = true;
            }
            if (width == info.Size.X && height == info.Size.Y && info.Bounds.Left == 0 && info.Bounds.Top == 0)
            {
                return(changed);
            }

            if (!widthDecrease && !heightDecrease)            //if screen increases, we have to set buffer first, then window
            {
                CheckError(SetConsoleScreenBufferSize(m_StdOutputHandle, new Coord(width, height)));
                SmallRect rect = new SmallRect(0, 0, width - 1, height - 1);
                CheckError(SetConsoleWindowInfo(m_StdOutputHandle, true, ref rect));
            }
            else if (widthDecrease && heightDecrease)            //in case of decreasing, window changes first or we get an error
            {
                SmallRect rect = new SmallRect(0, 0, width - 1, height - 1);
                CheckError(SetConsoleWindowInfo(m_StdOutputHandle, true, ref rect));
                CheckError(SetConsoleScreenBufferSize(m_StdOutputHandle, new Coord(width, height)));
            }
            else             //for mixed case, each dimension has to be handled separately
            {
                SmallRect rect = new SmallRect(0, 0, width - 1, info.MaximumWindowSize.Y - 1);
                if (widthDecrease)
                {
                    CheckError(SetConsoleWindowInfo(m_StdOutputHandle, true, ref rect));
                    CheckError(SetConsoleScreenBufferSize(m_StdOutputHandle, new Coord(width, info.MaximumWindowSize.Y)));
                }
                else
                {
                    CheckError(SetConsoleScreenBufferSize(m_StdOutputHandle, new Coord(width, info.MaximumWindowSize.Y)));
                    CheckError(SetConsoleWindowInfo(m_StdOutputHandle, true, ref rect));
                }

                rect = new SmallRect(0, 0, width - 1, height - 1);
                if (heightDecrease)
                {
                    CheckError(SetConsoleWindowInfo(m_StdOutputHandle, true, ref rect));
                    CheckError(SetConsoleScreenBufferSize(m_StdOutputHandle, new Coord(width, height)));
                }
                else
                {
                    CheckError(SetConsoleScreenBufferSize(m_StdOutputHandle, new Coord(width, height)));
                    CheckError(SetConsoleWindowInfo(m_StdOutputHandle, true, ref rect));
                }
            }
            ////somehow removes column that was occupied by vertical scrollbar
            Console.SetCursorPosition(0, 0);
            ////same for horizontal
            Console.SetWindowPosition(0, 0);
            return(true);
        }
Exemplo n.º 4
0
        public static bool WriteOutput(FramePixel[] pixels, Coord bufferSize, Coord bufferCoord)
        {
            SmallRect writeRegion = new SmallRect(bufferCoord.X, bufferCoord.Y, bufferSize.X, bufferSize.Y);

            return(WriteConsoleOutputW(m_StdOutputHandle, pixels, bufferSize, bufferCoord, ref writeRegion));
        }