
CuteNotes
Source (link to git-repo or to original if based on someone elses unmodified work): Add the source-code for this project on opencode.net
DESCRIPTION
CuteNotes is a plain text editor with extra features.
SOME OF THE FEATURES
Combine lines
Decrease indent
Delete Empty Lines
Delete Same Lines
Filter Lines
Find And Replace
Generate Word List
Go To Line
Increase indent
Insert Numbers
Insert Text Into Beginning Or End Of Lines
Multiple find and replcae
Lowercase And Uppercase Conversion
Randomize Lines
Remove Numbers
Reverse Lines
Reverse line contents
Sort Lines
Split lines with...
Surround lines with...
Trim Lines
Uppercase and lowercase
Configure Editor
Configure Toolbar
Recent Files
PLANNED FEATURES FOR THE NEXT VERSION
Statistical Text Analysis (Character, word, line frequency)
Command System For Extracting The Desired Text
I tried to use free icons. If you recognize anything illegal, please inform me and I'll do whatever is necessary.
Braaiinnzz
6 years ago
Report
Furkanzmc
6 years ago
Report
Braaiinnzz
6 years ago
+cutenotes.cpp loadSettings()
CuteNotes::resize(settings->value("ScreenX").toInt(),settings->value("ScreenY").toInt());
+cutenotes.cpp closeEvent(QCloseEvent *event)
QSettings settings("CuteNotes", "CuteNotes");
settings.setValue("ScreenX", CuteNotes::size().width());
settings.setValue("ScreenY", CuteNotes::size().height());
Report
Braaiinnzz
6 years ago
Report