|
|
|
~ |
[virtual]
View * |
[pure virtual]
Create a view that will display the document data. You can create as many views as you like. When the user modifies data in one view then all other views will be updated as well.
QList<View> |
[const virtual]
QString |
[const pure virtual]
Returns: All the text from the requested line.
void |
[pure virtual]
bool |
[const pure virtual]
QString |
[const pure virtual]
int |
[const pure virtual]
Returns: The current number of lines in the document
void |
[pure virtual]
Insert line(s) at the given line number. If the line number is -1 (the default) then the line is added to end of the document
void |
[pure virtual]
Add the line(s) into the document at the given line and column.
void |
[pure virtual]
QString |
[const pure virtual]
Returns: the complete document as a single QString
int |
[const pure virtual]
Returns: the number of characters in the document
void |
[pure virtual slot]
Set the given text into the view. Warning: This will overwrite any data currently held in this view.
void |
[signal]
When the user changes the text then this signal is emitted TODO: - explain why and what type of change trigger this?
void |
[protected virtual]
Call this method in your document implementation whenever you created a new view. (like in createView )
void |
[protected virtual]
Call this method in your document implementation whenever you delete a view.
QList<View> |
[protected]
Generated by: prospector@porky.devel.redhat.com on Thu Aug 24 05:36:34 2000, using kdoc 2.0a36. |