|
8c834c9d7c
|
start to do some cursor movement again
|
2016-12-21 21:11:29 -05:00 |
|
|
08dab099a7
|
add BufferPane::walk_line() to commonize logic for laying out a line to the screen
|
2016-12-21 19:43:54 -05:00 |
|
|
24fced221f
|
start re-implementing BufferPane::draw_buffer_line()
|
2016-12-21 19:23:39 -05:00 |
|
|
83d4a86e4b
|
fix BufferPane::rows_in_line_with_iterator_offset() comparing to reference iterator
|
2016-12-21 19:07:28 -05:00 |
|
|
9733d577a7
|
take into account tab characters when counting line row heights
|
2016-12-21 18:36:47 -05:00 |
|
|
f7d0c8189a
|
fix BufferPane::screen_rows_below_line() while loop
|
2016-12-21 18:18:19 -05:00 |
|
|
1486cdf7f4
|
update BufferPane::update_cursor_row() in preparation for drawing again
|
2016-12-20 23:24:06 -05:00 |
|
|
975b7763a8
|
add two more BufferPane utility functions to calculate available screen rows before and after the cursor line
|
2016-12-20 23:07:00 -05:00 |
|
|
cf4723854e
|
add some utility functions in preparation for drawing screen with multi-column characters
|
2016-12-20 23:01:30 -05:00 |
|
|
bc3309a328
|
Prepare for screen drawing again after Cursor removal.
Add BufferPane::character_width() to handle multi-column characters.
|
2016-12-20 20:22:19 -05:00 |
|
|
6b27fafb26
|
test no EOL at EOF with CRLF-formatted files
|
2016-12-18 19:52:41 -05:00 |
|
|
e78a3672c5
|
improve GapBuffer test coverage
|
2016-12-18 19:20:48 -05:00 |
|
|
24eb47b0ad
|
do not echo coverage-generating commands
|
2016-12-18 19:04:19 -05:00 |
|
|
71920ddbcb
|
generate HTML coverage reports for unit tests
|
2016-12-18 16:09:06 -05:00 |
|
|
82036458e6
|
build unit tests with --coverage
|
2016-12-18 15:34:03 -05:00 |
|
|
fc10da76e7
|
Build main application and test suite separately from make targets
|
2016-12-18 15:22:17 -05:00 |
|
|
968db413e6
|
Remove Cursor and move line-tracking into Iterator
|
2016-12-18 14:51:52 -05:00 |
|
|
39088f6518
|
Add output parameter to Encoding::decode() to get encoded size
|
2016-12-17 10:54:50 -05:00 |
|
|
ee37616f82
|
Give BufferPane a reference to a Window
|
2016-12-13 21:48:04 -05:00 |
|
|
659a64b367
|
add Window::request_redraw()
|
2016-12-11 20:39:02 -05:00 |
|
|
1232539495
|
Move buffer-related keypress handling from Window to BufferPane
|
2016-12-11 20:29:15 -05:00 |
|
|
bd1d5adfab
|
add enum type
|
2016-12-11 20:18:10 -05:00 |
|
|
3422df51d6
|
BufferPane: replace colrow_to_xy() with col_x() and row_y()
|
2016-12-11 19:58:16 -05:00 |
|
|
129716e28f
|
Draw cursor again
|
2016-12-11 15:58:31 -05:00 |
|
|
3d57b03af7
|
fix infinite loop drawing an empty buffer
|
2016-12-11 15:48:22 -05:00 |
|
|
a2b2156016
|
Move encoding and tabstop out of Iterator/Cursor classes
|
2016-12-11 15:32:05 -05:00 |
|
|
f41b59aa81
|
remove a few unused Iterator/Cursor interfaces
|
2016-12-11 15:23:39 -05:00 |
|
|
9b6b21a1d0
|
Move Iterator and Cursor classes into Buffer class.
|
2016-12-11 15:17:15 -05:00 |
|
|
b880397b7e
|
Split up Cursor module into BufferIterator / BufferCursor
|
2016-12-11 14:00:15 -05:00 |
|
|
6f244e5c8f
|
Add unit tests for GapBuffer and fix an insert() bug.
|
2016-12-07 23:37:52 -05:00 |
|
|
595d74c8c4
|
update documentation for GapBuffer
|
2016-12-07 23:27:36 -05:00 |
|
|
be67996d04
|
remove unused includes from GapBuffer.h
|
2016-12-07 23:10:57 -05:00 |
|
|
1b6038a3cd
|
remove tabstop from GapBuffer
|
2016-12-07 23:09:06 -05:00 |
|
|
5f3831965e
|
remove encoding from GapBuffer
|
2016-12-07 23:05:38 -05:00 |
|
|
3784b89ca9
|
remove knowledge of Cursor from GapBuffer
|
2016-12-07 23:01:03 -05:00 |
|
|
7384128d40
|
remove more logic from GapBuffer
|
2016-12-07 22:56:08 -05:00 |
|
|
41c65f2dd9
|
Begin more refactoring to shrink GapBuffer class
|
2016-12-07 22:47:33 -05:00 |
|
|
6c8e860fb5
|
Test that files consisting of just 1 or 2 newline characters are written correctly
|
2016-12-07 22:20:41 -05:00 |
|
|
085a8a556a
|
allow loading a Buffer from in-memory data
|
2016-11-30 21:21:19 -05:00 |
|
|
95884a2b85
|
add Buffer::insert() alias for GapBuffer::insert()
|
2016-11-30 21:07:57 -05:00 |
|
|
f14db217d2
|
add Buffer::Cursor type alias for GapBuffer::Cursor
|
2016-11-30 21:06:59 -05:00 |
|
|
e57c71855a
|
add Buffer::get_string() and GapBuffer::get_string()
|
2016-11-27 18:54:03 -05:00 |
|
|
1404c33a46
|
insert at a cursor position; adjust all cursors after inserting
|
2016-11-27 17:51:16 -05:00 |
|
|
915d62ceef
|
add GapBuffer::insert()
|
2016-11-27 17:24:59 -05:00 |
|
|
8631a94a2b
|
Add BufferStatusPane
move status bar drawing logic from Window to BufferStatusPane
|
2016-11-27 13:56:58 -05:00 |
|
|
8bffc05f09
|
add a BufferPane class to hold logic for rendering a buffer
|
2016-11-27 13:17:20 -05:00 |
|
|
fa8872bcda
|
move gl3w-related sources to src/gui/gl3w
|
2016-11-26 15:30:25 -05:00 |
|
|
ddbd78b5be
|
draw last character of line
|
2016-11-26 15:28:58 -05:00 |
|
|
21e65d95f9
|
variable rename
|
2016-11-25 10:56:46 -05:00 |
|
|
289af1b8c7
|
draw status bar again
|
2016-11-25 09:53:54 -05:00 |
|