aboutsummaryrefslogtreecommitdiff
path: root/screen.c
Commit message (Collapse)AuthorAge
* Clear blank area properly on redraw, and add a marker line below it.Nicholas Marriott2008-06-14
|
* Per-session configuration options.Nicholas Marriott2008-06-03
|
* Some key tweaks, fix status bar to not rely on attr.Nicholas Marriott2008-01-03
|
* Filling with the right attr should be done in screen-display.c.Nicholas Marriott2007-12-06
|
* Use the current attr/colours for filling in new areas, this fixes the echo ↵Nicholas Marriott2007-12-06
| | | | \\033[35\;46m\\033[2J bug.
* Major reorganisation of screen handling.Nicholas Marriott2007-12-06
|
* The tty code already stores attributes and doesn't modify them if unaltered, ↵Nicholas Marriott2007-12-02
| | | | so the screen drawing code doesn't need to do so too. This probably also fixes bugs when switching screens where the actual tty attributes may not have been what the draw code (erroneously) expected.
* Change window name on \ek...\e\.Nicholas Marriott2007-11-30
|
* Turn mouse on/off as appropriate.Nicholas Marriott2007-11-28
|
* Flush data on tty open. Also reset colour before clearing line/screen.Nicholas Marriott2007-11-27
|
* Minor tweaks/missed bits.Nicholas Marriott2007-11-27
|
* Big internal reorganisation to move tty control into parent.Nicholas Marriott2007-11-27
|
* This is better than disabling it.Nicholas Marriott2007-11-26
|
* Rv EOL optimisation, it screws up selection.Nicholas Marriott2007-11-26
|
* Disable this optimisation since cursor can be updated by stuff outside.Nicholas Marriott2007-11-25
|
* Oops, use correct y.Nicholas Marriott2007-11-25
|
* Redo output logging in local.c. Optimise line drawing.Nicholas Marriott2007-11-25
|
* Scroll region reset homes the cursor, so start at 0,0 when drawing. Also ↵Nicholas Marriott2007-11-24
| | | | don't set region after DECRC.
* Use screen_draw_* to write message, avoids leaving attribute changes around.Nicholas Marriott2007-11-24
|
* Only show history size.Nicholas Marriott2007-11-23
|
* history-limit option.Nicholas Marriott2007-11-23
|
* Tidier code by moving mess into functions.Nicholas Marriott2007-11-22
|
* Make C-space toggle. Fix sel on same line.Nicholas Marriott2007-11-22
|
* Text selection with C-space.Nicholas Marriott2007-11-22
|
* Partial copy mode. Currently does the same as scroll mode but using a ↵Nicholas Marriott2007-11-22
| | | | cursor. Also fix bug where resizing would leave crap lying around.
* Split SCREEN_BACKGROUND flag into BACKGROUND/NOCURSOR in preparation for ↵Nicholas Marriott2007-11-22
| | | | copy mode.
* Cut memory consumption by only allocating lines when there is actually data ↵Nicholas Marriott2007-11-21
| | | | on them, and only as much as the right-most data. Everything else is filled in at runtime.
* Free entire screen when destroyed.Nicholas Marriott2007-11-21
|
* Sort out cursors with a new flag - BACKGROUND - for window modes. Free text ↵Nicholas Marriott2007-11-21
| | | | on more exit.
* Redo screen.c functions to make them readable and more flexible. Make scroll ↵Nicholas Marriott2007-11-21
| | | | mode only redraw waht it needs.
* Horizontal history/scrolling.Nicholas Marriott2007-11-21
|
* Move from the right place.Nicholas Marriott2007-11-21
|
* Use screen_* versions to avoid range checks (s->dy may be wrong), fix ↵Nicholas Marriott2007-11-21
| | | | miscalculated free.
* Initial history support.Nicholas Marriott2007-11-21
|
* Damnit, wrong variable name..Nicholas Marriott2007-11-20
|
* Oops, mustn't forget this.Nicholas Marriott2007-11-20
|
* Mass screen.c rename/tidy. Add a actual size (ysize) as distinct from ↵Nicholas Marriott2007-11-20
| | | | display size (now dx,dy). Move functions which work on the displayed area into screen-display.c and tidy. Use macros consistently when accessing screen data (may want to move everything about again later!). This the first step on the road to scrollback.
* Style: ry_* -> r*Nicholas Marriott2007-11-20
|
* Accept colours as strings.Nicholas Marriott2007-10-12
|
* Wrap lines properly.Nicholas Marriott2007-10-05
|
* Don't resize if sx AND sy haven't changed. Also tweak some logging, and ↵Nicholas Marriott2007-10-04
| | | | reset attrs after clear.
* Incomplete resize support.Nicholas Marriott2007-10-04
|
* Pass attributes around as flags rather than as a list of escape codes.Nicholas Marriott2007-10-01
|
* Destroy screens properly.Nicholas Marriott2007-10-01
|
* Grr missed one.Nicholas Marriott2007-09-29
|
* Whoooops. lower not upper.Nicholas Marriott2007-09-29
|
* Dl/Il should follow scrolling region.Nicholas Marriott2007-09-29
|
* Spc fix.Nicholas Marriott2007-09-29
|
* Nuke CLEAR_SCREEN/ENDOFSCREEN and assert scroll region when drawing. These ↵Nicholas Marriott2007-09-29
| | | | will be reqd for status line(s).
* New input parser via state machine.Nicholas Marriott2007-09-28
|