installed pty
[VSoRC/.git] / node_modules / node-pty / deps / winpty / src / agent / Terminal.h
1 // Copyright (c) 2011-2015 Ryan Prichard
2 //
3 // Permission is hereby granted, free of charge, to any person obtaining a copy
4 // of this software and associated documentation files (the "Software"), to
5 // deal in the Software without restriction, including without limitation the
6 // rights to use, copy, modify, merge, publish, distribute, sublicense, and/or
7 // sell copies of the Software, and to permit persons to whom the Software is
8 // furnished to do so, subject to the following conditions:
9 //
10 // The above copyright notice and this permission notice shall be included in
11 // all copies or substantial portions of the Software.
12 //
13 // THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
14 // IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
15 // FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
16 // AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
17 // LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
18 // FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS
19 // IN THE SOFTWARE.
20
21 #ifndef TERMINAL_H
22 #define TERMINAL_H
23
24 #include <windows.h>
25 #include <stdint.h>
26
27 #include <string>
28 #include <vector>
29
30 #include "Coord.h"
31
32 class NamedPipe;
33
34 class Terminal
35 {
36 public:
37     explicit Terminal(NamedPipe &output, bool plainMode, bool outputColor)
38         : m_output(output), m_plainMode(plainMode), m_outputColor(outputColor)
39     {
40     }
41
42     enum SendClearFlag { OmitClear, SendClear };
43     void reset(SendClearFlag sendClearFirst, int64_t newLine);
44     void sendLine(int64_t line, const CHAR_INFO *lineData, int width,
45                   int cursorColumn);
46     void showTerminalCursor(int column, int64_t line);
47     void hideTerminalCursor();
48
49 private:
50     void moveTerminalToLine(int64_t line);
51
52 public:
53     void enableMouseMode(bool enabled);
54
55 private:
56     NamedPipe &m_output;
57     int64_t m_remoteLine = 0;
58     int m_remoteColumn = 0;
59     bool m_lineDataValid = true;
60     std::vector<CHAR_INFO> m_lineData;
61     bool m_cursorHidden = false;
62     int m_remoteColor = -1;
63     std::string m_termLineWorkingBuffer;
64     bool m_plainMode = false;
65     bool m_outputColor = true;
66     bool m_mouseModeEnabled = false;
67 };
68
69 #endif // TERMINAL_H