SVN commit 464484 by knight: GUI: - Added basic syntax highlighting - Valid cell references in formulae are now coloured in as the user enters them, and a thin coloured border (a "highlight") is drawn around the area on the spreadsheet. It is possible to change the size of a range referenced in a formula by dragging the size grip on the coloured border, but this is still work in progress. - Changed cell text edit widget (KSpreadTextEdit) to respect line wrap settings of cell being edited. - Cell text edit widget no longer has a border around it. Ideally the cell edit widget should fit inside the cell, so that the existing cell border can be drawn around it, but unfortunately the Qt 3 QTextEdit class has several pixels padding at the top and left sides, so the widget has to be slightly taller than the text itself. This can be fixed during the Qt 4 port. - Spreadsheet names in formulae are no longer case sensitive (Documentation needs to be updated to reflect this) [Robert Knight - robertknight@gmail.com] M +1 -1 TODO M +9 -4 kspread.kdevelop M +522 -55 kspread_canvas.cc M +113 -0 kspread_canvas.h M +107 -8 kspread_cell.cc M +48 -15 kspread_cell.h M +26 -16 kspread_doc.cc M +352 -20 kspread_editors.cc M +96 -4 kspread_editors.h M +1 -1 kspread_map.cc M +1 -0 kspread_sheet.cc M +14 -7 kspread_sheetprint.cc M +69 -1 kspread_util.cc M +16 -1 kspread_util.h M +2 -1 kspread_view.cc