No Name:
1. Is it possible to have a border line between the margin area and the actual text editing area?
Yes, add a single pixel wide margin.
2. Does the API make it possible for me to change the cursor when it is over the margin area to display as a regular cursor instead of the reverse style? I know there is a way to change the cursor's appearance, but one thing that might make this easy is does Scintilla send any kind of notification of when the cursor is over the margin?
It is not easy to change the behaviour here. It may be possible to use platform facilities (such as subclassing on Windows) to do this. There is no mouse over margin notification.
3. I was reading the mailing lists and saw that recently support has been added to that selection highlighting spans the entire screen. How can I enable this?
SCI_SETSELEOLFILLED
4. Is there a way to change Scintilla so that highlighting an entire line through double click doesn't a) send the caret to the next line and b) act as if there is an extra space on the end of the line?
Selecting a whole line selects the new line character(s) and this is indicated by the effects you mentioned. If you only want to select the text of the line (so that pressing Delete leaves an empty line) then you'll probably have to take over all mouse click processing since there is no simple override. Neil _______________________________________________ Scintilla-interest mailing list [email protected] http://mailman.lyra.org/mailman/listinfo/scintilla-interest
