-
Notifications
You must be signed in to change notification settings - Fork 2
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Block dockwidgets #217
Merged
Merged
Block dockwidgets #217
Conversation
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
paskino
force-pushed
the
block_dockwidgets
branch
from
January 11, 2024 17:08
0b31aa9
to
38a9e66
Compare
DanicaSTFC
requested changes
Jan 15, 2024
if we right click on the tabs '2D Viewer', 'Help', 'Image information', the list of tabs appears @paskino We need to remove default popupMenu by overloading createPopupMenu in the viewer. |
DanicaSTFC
approved these changes
Feb 20, 2024
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Uses flag
NoDockWidgetFeatures
which prevents a lot of complications in handlingQDockWidgets
and makes the GUI more static.False
in tabifiedDockWidget
s both in the main window and in the result window.popupMenu
by overloadingcreatePopupMenu
, i.e. removes the weird list of the tabs which were in a pseudo-random order. This is done both in the app main window and the right hand side main window.The 2D viewer widget appears to be a
QMainWindow
and not aQDockWidget
, hence I don't exactly know how to set the title. I tried withsetWindowTitle
but it doesn't show up.iDVC/src/idvc/ui/windows.py
Line 33 in 1eae747
Closes #174
Closes #178
Tested on Windows.