diff options
author | Ken Moore <ken@pcbsd.org> | 2016-09-12 10:47:47 -0400 |
---|---|---|
committer | Ken Moore <ken@pcbsd.org> | 2016-09-12 10:47:47 -0400 |
commit | 11f26a3cb825823f2e89b2b3d2a5a1a34965d73e (patch) | |
tree | 548315c7ab55de2b984e206ffb0291efa032ccd6 /src-qt5/desktop-utils/lumina-textedit/PlainTextEditor.h | |
parent | Add a font selector option to LTE, so monospaced fonts can be used as needed ... (diff) | |
download | lumina-11f26a3cb825823f2e89b2b3d2a5a1a34965d73e.tar.gz lumina-11f26a3cb825823f2e89b2b3d2a5a1a34965d73e.tar.bz2 lumina-11f26a3cb825823f2e89b2b3d2a5a1a34965d73e.zip |
Add status tips for the cursor position.
Now you can see which column the cursor is on if the user needs to keep under a particular number.
Diffstat (limited to 'src-qt5/desktop-utils/lumina-textedit/PlainTextEditor.h')
-rw-r--r-- | src-qt5/desktop-utils/lumina-textedit/PlainTextEditor.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src-qt5/desktop-utils/lumina-textedit/PlainTextEditor.h b/src-qt5/desktop-utils/lumina-textedit/PlainTextEditor.h index 075ed742..64ff256b 100644 --- a/src-qt5/desktop-utils/lumina-textedit/PlainTextEditor.h +++ b/src-qt5/desktop-utils/lumina-textedit/PlainTextEditor.h @@ -63,6 +63,7 @@ private slots: void checkMatchChar(); //Functions for notifying the parent widget of changes void textChanged(); + void cursorMoved(); //Function for prompting the user if the file changed externally void fileChanged(); @@ -72,7 +73,7 @@ protected: signals: void UnsavedChanges(QString); //filename void FileLoaded(QString); - + void statusTipChanged(); }; //=========================================================== |