2006-10-01 21:22:43 +00:00
|
|
|
/** \file screen.h High level library for handling the terminal screen
|
|
|
|
|
|
|
|
The screen library allows the interactive reader to write its
|
|
|
|
output to screen efficiently by keeping an inetrnal representation
|
2008-01-13 16:47:47 +00:00
|
|
|
of the current screen contents and trying to find a reasonably
|
2006-10-01 21:22:43 +00:00
|
|
|
efficient way for transforming that to the desired screen content.
|
2008-01-13 16:47:47 +00:00
|
|
|
|
|
|
|
The current implementation is less smart than ncurses allows
|
|
|
|
and can not for example move blocks of text around to handle text
|
|
|
|
insertion.
|
|
|
|
*/
|
2006-10-01 16:02:58 +00:00
|
|
|
#ifndef FISH_SCREEN_H
|
|
|
|
#define FISH_SCREEN_H
|
|
|
|
|
2011-12-28 02:41:38 +00:00
|
|
|
#include <vector>
|
|
|
|
|
2012-02-12 01:07:56 +00:00
|
|
|
struct line_entry_t
|
|
|
|
{
|
|
|
|
wchar_t text;
|
|
|
|
int color;
|
2012-02-07 05:25:40 +00:00
|
|
|
};
|
2011-12-28 02:41:38 +00:00
|
|
|
|
|
|
|
/**
|
|
|
|
A class representing a single line of a screen.
|
|
|
|
*/
|
|
|
|
class line_t
|
|
|
|
{
|
|
|
|
public:
|
|
|
|
std::vector<struct line_entry_t> entries;
|
|
|
|
|
|
|
|
void resize(size_t size) {
|
|
|
|
entries.resize(size);
|
|
|
|
}
|
|
|
|
|
|
|
|
line_entry_t &entry(size_t idx) {
|
|
|
|
return entries.at(idx);
|
|
|
|
}
|
|
|
|
|
|
|
|
line_entry_t &create_entry(size_t idx) {
|
|
|
|
if (idx >= entries.size()) {
|
|
|
|
entries.resize(idx + 1);
|
|
|
|
}
|
|
|
|
return entries.at(idx);
|
|
|
|
}
|
|
|
|
|
|
|
|
size_t entry_count(void) {
|
|
|
|
return entries.size();
|
|
|
|
}
|
|
|
|
};
|
|
|
|
|
|
|
|
/**
|
|
|
|
A class representing screen contents.
|
|
|
|
*/
|
|
|
|
class screen_data_t
|
|
|
|
{
|
|
|
|
std::vector<line_t> line_datas;
|
|
|
|
|
|
|
|
public:
|
|
|
|
|
|
|
|
int cursor[2];
|
|
|
|
|
|
|
|
line_t &add_line(void) {
|
|
|
|
line_datas.resize(line_datas.size() + 1);
|
|
|
|
return line_datas.back();
|
|
|
|
}
|
|
|
|
|
|
|
|
void resize(size_t size) {
|
|
|
|
line_datas.resize(size);
|
|
|
|
}
|
|
|
|
|
|
|
|
line_t &create_line(size_t idx) {
|
|
|
|
if (idx >= line_datas.size()) {
|
|
|
|
line_datas.resize(idx + 1);
|
|
|
|
}
|
|
|
|
return line_datas.at(idx);
|
|
|
|
}
|
|
|
|
|
|
|
|
line_t &line(size_t idx) {
|
|
|
|
return line_datas.at(idx);
|
|
|
|
}
|
|
|
|
|
|
|
|
size_t line_count(void) {
|
|
|
|
return line_datas.size();
|
|
|
|
}
|
|
|
|
};
|
|
|
|
|
2006-10-01 21:22:43 +00:00
|
|
|
/**
|
2012-03-25 10:00:38 +00:00
|
|
|
The class representing the current and desired screen contents.
|
2006-10-01 21:22:43 +00:00
|
|
|
*/
|
2012-03-25 10:00:38 +00:00
|
|
|
class screen_t
|
2006-10-01 16:02:58 +00:00
|
|
|
{
|
2012-03-25 10:00:38 +00:00
|
|
|
public:
|
2008-01-13 16:47:47 +00:00
|
|
|
/**
|
2006-10-01 21:22:43 +00:00
|
|
|
The internal representation of the desired screen contents.
|
|
|
|
*/
|
2011-12-28 02:41:38 +00:00
|
|
|
screen_data_t desired;
|
2006-10-01 21:22:43 +00:00
|
|
|
/**
|
|
|
|
The internal representation of the actual screen contents.
|
|
|
|
*/
|
2011-12-28 02:41:38 +00:00
|
|
|
screen_data_t actual;
|
|
|
|
|
2006-10-01 21:22:43 +00:00
|
|
|
/**
|
2011-12-28 02:41:38 +00:00
|
|
|
A string containing the prompt which was last printed to
|
2006-10-01 21:22:43 +00:00
|
|
|
the screen.
|
|
|
|
*/
|
2011-12-28 02:41:38 +00:00
|
|
|
wcstring actual_prompt;
|
2006-10-04 21:45:02 +00:00
|
|
|
|
2008-01-13 16:47:47 +00:00
|
|
|
/**
|
2006-10-04 21:45:02 +00:00
|
|
|
The actual width of the screen at the time of the last screen
|
|
|
|
write.
|
|
|
|
*/
|
2011-12-27 03:18:46 +00:00
|
|
|
int actual_width;
|
2006-10-04 23:33:12 +00:00
|
|
|
|
2006-10-09 13:26:42 +00:00
|
|
|
/**
|
|
|
|
This flag is set to true when there is reason to suspect that
|
|
|
|
the parts of the screen lines where the actual content is not
|
|
|
|
filled in may be non-empty. This means that a clr_eol command
|
|
|
|
has to be sent to the terminal at the end of each line.
|
|
|
|
*/
|
|
|
|
int need_clear;
|
2011-12-27 03:18:46 +00:00
|
|
|
|
2006-10-04 23:33:12 +00:00
|
|
|
/**
|
|
|
|
These status buffers are used to check if any output has occurred
|
|
|
|
other than from fish's main loop, in which case we need to redraw.
|
|
|
|
*/
|
|
|
|
struct stat prev_buff_1, prev_buff_2, post_buff_1, post_buff_2;
|
2012-03-25 10:00:38 +00:00
|
|
|
};
|
2006-10-01 16:02:58 +00:00
|
|
|
|
2006-10-01 21:22:43 +00:00
|
|
|
/**
|
|
|
|
This is the main function for the screen putput library. It is used
|
|
|
|
to define the desired contents of the screen. The screen command
|
|
|
|
will use it's knowlege of the current contents of the screen in
|
|
|
|
order to render the desired output using as few terminal commands
|
|
|
|
as possible.
|
|
|
|
*/
|
2011-12-27 03:18:46 +00:00
|
|
|
void s_write( screen_t *s,
|
2011-12-28 20:36:47 +00:00
|
|
|
const wchar_t *prompt,
|
|
|
|
const wchar_t *commandline,
|
|
|
|
const int *colors,
|
|
|
|
const int *indent,
|
2006-10-01 21:22:43 +00:00
|
|
|
int cursor_pos );
|
|
|
|
|
2011-12-27 03:18:46 +00:00
|
|
|
/**
|
2007-09-30 22:53:54 +00:00
|
|
|
This function resets the screen buffers internal knowledge about
|
|
|
|
the contents of the screen. Use this function when some other
|
|
|
|
function than s_write has written to the screen.
|
|
|
|
|
|
|
|
\param s the screen to reset
|
2011-12-27 03:18:46 +00:00
|
|
|
\param reset_cursor whether the line on which the curor has changed should be assumed to have changed. If \c reset_cursor is set to 0, the library will attempt to make sure that the screen area does not seem to move up or down on repaint.
|
2007-09-30 22:53:54 +00:00
|
|
|
|
|
|
|
If reset_cursor is incorreclt set to 0, this may result in screen
|
|
|
|
contents being erased. If it is incorrectly set to one, it may
|
|
|
|
result in one or more lines of garbage on screen on the next
|
|
|
|
repaint. If this happens during a loop, such as an interactive
|
|
|
|
resizing, there will be one line of garbage for every repaint,
|
|
|
|
which will quicly fill the screen.
|
2006-10-01 21:22:43 +00:00
|
|
|
*/
|
2012-03-25 10:00:38 +00:00
|
|
|
void s_reset( screen_t *s, bool reset_cursor );
|
2006-10-01 16:02:58 +00:00
|
|
|
|
|
|
|
#endif
|