aboutsummaryrefslogtreecommitdiff
path: root/src-qt5/desktop-utils/lumina-textedit/MainUI.cpp
Commit message (Collapse)AuthorAge
* Add shortcut Ctrl+F4 for closing the current tabKen Moore2019-01-27
|
* De-activate all the hunspell integrations in lumina-text-editor.Ken Moore2018-08-16
| | | | | They do not work (crash as soon as calling the hunspell library). The hunspell functions are just commented out at the moment so that the library is not needed for the build until such time as the hunspell integration works.
* Began adding Syntax Support for formats to enable/disable spellcheck by defaultZackaryWelch2018-06-04
|
* Removed extra file and whitespaceZackaryWelch2018-06-04
|
* Added spellchecking per Hunspell, which is currently disabled.ZackaryWelch2018-06-04
|
* A couple more cleanup operations for lumina texteditKen Moore2018-05-21
| | | | Main change being that when opening the file select dialog it will automatically re-highlight the current file.
* Couple quick updates to lumina-textedit:Ken Moore2018-05-21
| | | | | 1. Support the forward/back keyboard shortcuts to switch between tabs (Alt+[Left/Right] typically). 2. Make sure that the "drag" start of a tab is when the cursor leaves the entire window - not just the tab bar.
* Add better handling of read-only files in LTE.Ken Moore2017-12-06
|
* Make sure that on closing, it attempts to save *all* files with pending changes.Ken Moore2017-12-06
| | | | | If popup warnings are disabled just close the app (never automatically change the underlying file(s) - this can be disastrous) Add status reporting to all the "Save" functions so that it returns false if the user cancelled it.
* Style consistency.Kjell Tore Ullavik2017-12-06
|
* Whitespace consistency.Kjell Tore Ullavik2017-12-06
|
* Whitespace consistency.Kjell Tore Ullavik2017-12-06
|
* Remove debug print. Fix indentation.Kjell Tore Ullavik2017-12-06
|
* Don't close editor when user cancels save dialog.Kjell Tore Ullavik2017-12-06
|
* Add 'Show Toolbar' to textedit menu.Kjell Tore Ullavik2017-11-30
|
* Fix up the close event handling in lumina-textedit. Now it will actually ↵Ken Moore2017-09-26
| | | | close when there are no changes to be saved.
* set LTE unsaved changes close dialog to follow the industry standardq5sys2017-09-20
|
* Added print option to lumina-textedit capable of selectionsZackaryWelch2017-07-06
|
* Commit some minor updates to whitespace and the python syntax file name.Ken Moore2017-06-19
|
* Fix the sync of the line wrap with the current tab/file.Ken Moore2017-06-14
|
* fix font size bug for line sizesq5sys2017-06-14
|
* Finish getting the font/size information in-sync with the current tab.Ken Moore2017-06-09
|
* Clean up the loading/changing of font family/size (still need to update the ↵Ken Moore2017-06-09
| | | | font boxes to reflect the currently visible tab).
* Get the new syntax highlighting support framework functional with the C++ ↵Ken Moore2017-06-09
| | | | rules files as the example (still need to convert the other existing rulesets over to the new format).
* Make all the desktop utilities use the new LUtils::openSettings() function ↵Ken Moore2017-06-07
| | | | so they can be launched as the root user without clobbering the user-permissioned settings file.
* Fix the 2-pixel height difference between the font/size boxes manually.Ken Moore2017-04-07
|
* Finish up the drag and drop support for tabs within LTE:Ken Moore2017-04-06
| | | | | Drags will start on *middle click + drag*, and utilities the standardized uri-list mimetype for transfer to other applications with support it. NOTE: In testing, the return code for a successful drop/accept on another applications still seems to return the "ignore" action rather than the move action. This may be a problem in Qt 5.7.1 - not sure yet.
* Start the prep-work for making the tabwidget drag-and-drop capable.Ken Moore2017-04-06
|
* Add the ability to change the tab bar position/side in Lumina textedit.Ken Moore2017-04-06
|
* added font size boxDenis Mulalic2017-04-04
|
* Add a checkable menu option for showing/skipping the unsaved changes dialogs ↵Ken Moore2017-01-23
| | | | in lumina-textedit.
* If lumina-textedit is opened without any arguments, automatically open a ↵Ken Moore2016-11-10
| | | | blank/new file.
* LARGE UPDATE:Ken Moore2016-11-07
| | | | | | | 1) Dismantle the Lumina library completely. 2) Setup lots of small subproject files (.pri) for the individual classes within the old library. 3) Move all the Lumina binaries to use the new subproject files 4) Split up the LuminaUtils class/files into LUtils and LDesktopUtils (generic utilities, and desktop-specific utilities)
* Add directory context to the lumina-textedit in a couple ways:Ken Moore2016-10-21
| | | | | 1) The window title now shows 1 directory deep in stead of just the filename 2) Each tab has a tooltip which will show the full path for that file.
* Add detection of unsaved changes to all the "close" routines, and prompt the ↵Ken Moore2016-09-12
| | | | user about them.
* Add status tips for the cursor position.Ken Moore2016-09-12
| | | | Now you can see which column the cursor is on if the user needs to keep under a particular number.
* Add a font selector option to LTE, so monospaced fonts can be used as needed ↵Ken Moore2016-09-12
| | | | for particular users.
* Clean up the find/replace dialog a bit:Ken Moore2016-09-08
| | | | | 1) Add a "hide" button so it can be hidden with the mouse and not just the keyboard shortcut. 2) Streamline the dialog a bit so it takes less realestate
* Allow the "save file as" option to always be available (not dependant on ↵Ken Moore2016-06-27
| | | | changes to the file).
* Adjust the single-replace logic in lumina-textedit. Have it replace the ↵Ken Moore2016-05-02
| | | | current selection match, and find the next one (don't replace the next one until the user can see it highlighted first).
* Rearrange the Lumina source tree quite a bit:Ken Moore2016-04-25
Now the utilites are arranged by category (core, core-utils, desktop-utils), so all the -utils may be excluded by a package system (or turned into separate packages) as needed.
bgstack15