Releases: TomographicImaging/eqt
Releases · TomographicImaging/eqt
Version 1.0.1
Version 1.0.0
Refer to changelog for more details.
Backward incompatibility:
getWidgetState
andapplyWidgetState
includewidget_row
.- The widget-states internal order changes.
- In
FormDialog
, theOk
button saves widget states and closes the dialog. - In
FormDialog
, theCancel
button retrieves default states, or previously saved states,
and closes the dialog. insertWidget
is renamedinsertWidgetToVerticalLayout
.
The currentinsertWidget
inserts widgets in the form layout.- Deprecates
getWidgetStates
to begetSavedWidgetStates
.
More details:
- Adds user-defined functionalities for
Ok
andCancel
buttons inFormDialog
. - Adds default widget states upon inserting widgets to a form.
- Adds the class
AdvancedDialogForm
. - Adds methods to insert widgets and remove widgets in the forms.
- Adds
addSpanningWidget
method toFormDockWidget
. - Adds several unit tests and examples.
- Removes
_addWidget
. - Simplifies conda environment configuration for development.
Version 0.7.1
- add code linting (#79)
- add config
- automated lint
- fix attribution
- manual fixes
- misc code tidy (#77)
- esp. reduce duplication in
- misc metadata updates
- migrate => (#77)
- fix & update some tests
- add CI tests & update workflows (#77 <- #11, #54)
- migrate => (#77)
- use SCM versioning
- drop unused dependency
- update README/CONTRIBUTING (#79)
- rename repo from https://github.com/paskino/qt-elements to https://github.com/TomographicImaging/eqt (#77)
- exclude from distribution (#79)
- add dependency (#77)
- minify licen[cs]e (#77)
- purge changelog (see https://github.com/paskino/qt-elements/releases or https://github.com/TomographicImaging/eqt/blob/main/CONTRIBUTING.md#changelog instead) (#77)
- enforce annotated tags for releases (#77)
- migrate => (#77)
Version 0.0.5
mainly just a github action
Version 0.7.0
- Adds
MainWindowWithProgressDialogs
a base class for a main window, with a menu bar, and ability to create ProgressTimerDialogs. - Renames
SessionMainWindow
toMainWindowWithSessionManagement
- Removed addToMenu method from
MainWindowWithProgressDialogs
(and thereforeMainWindowWithSessionManagement
which inherits from it) as it didn't do anything, and the user can add their own method and call it if needed. - Check if session folder loaded from QSettings exists before writing to it.
Version 0.6.0
- Use pip install in the conda recipe, instead of setup.py install
- Adds the following new methods to UIFormWidget, FormWidget, FormDialog and FormDockWidget:
saveAllWidgetStates
- Saves the state of all widgets in the form. This can be used to restore the state of the widgets using the restoreAllSavedWidgetStates method.restoreAllSavedWidgetStates
- Restores the state of all widgets in the form to the state saved by the saveAllWidgetStates method. If the saveAllWidgetStates method has not been called, this method will do nothing.getAllWidgetStates
- Returns a dictionary of the state of all widgets in the form.getWidgetState
- Returns the state of the widget.applyWidgetState
- Applies the given state to the widget with the given name.applyWidgetStates
- Applies the given state to the widgets in the form given by the keys of the state dictionary.
- Adds an example of a FormDialog:
dialog_save_state_example.py
where all of the widgets are saved and restored if you press "Ok", whereas the previous values of the dialog are restored if you press "Cancel". - Adds unit tests to cover:
saveAllWidgetStates
,restoreAllSavedWidgetStates
,getAllWidgetStates
,getWidgetState
,applyWidgetState
,applyWidgetStates
- setup.py:
- Always normalise the version from git describe to pep440
- Adds
SessionsMainWindow.py
- which is a base class for our apps which create a session folder where any files generated in the app are saved, and provides the ability to permanently save and reload sessions. - Adds
SessionsMainWindow_example.py
- an example of using the SessionsMainWindow - you can run this example, change the state of widgets in the form, save the session, reload the session and see the state of the widgets be restored. - Adds
SessionsDialogs.py
- the dialogs used by the SessionsMainWindow.py - Adds
io.py
- contains method for zipping a directory, used by SessionsMainWindow.py - Adds unit tests to cover
SessionsDialogs.py
,io.py
, and a large proportion ofSessionsMainWindow.py
Version 0.5.0
- Add getWidgets method to FormWidget, FormDockWidget and FormDialog
- Add setWidgetVisibility method to FormWidget, FormDockWidget and FormDialog
Version 0.4.0
- Add
ReOrderableListWidget
andReOrderableListDockWidget
- Add example of using the
ReOrderableListWidget
- Add
getWidget
method toFormWidget
,FormDockWidget
andFormDialog
Version 0.3.0
- Add ProgressTimerDialog and example.
- Delete ErrorObserver, as this is relevant to VTK, not Qt, so it has been moved to the CILViewer repo.
Version 0.2.2
- By default, automatically number the tab titles in a
StackedWidget