Skip to content
Snippets Groups Projects
Unverified Commit d3250a3c authored by lpbsscientist's avatar lpbsscientist Committed by GitHub
Browse files

modified layout of buttons

parent 38d96ec4
No related branches found
No related tags found
No related merge requests found
...@@ -17,8 +17,17 @@ def Init(parent): ...@@ -17,8 +17,17 @@ def Init(parent):
# connected to the button, this button stays active (or Checked) # connected to the button, this button stays active (or Checked)
# hide / show cnn buttons
parent.button_hide_show.setCheckable(True)
parent.button_hide_show.setMaximumWidth(150)
parent.button_hide_show.clicked.connect(parent.ShowHideCNNbuttons)
# parent.button_hide_show.setShortcut("R")
# parent.button_hide_show.setToolTip("Use R Key for shortcut")
parent.button_hide_show.setStatusTip('Press to hide and show neural network buttons')
# ADD REGION # ADD REGION
parent.button_add_region.setCheckable(True) parent.button_add_region.setCheckable(True)
parent.button_add_region.setMaximumWidth(150) parent.button_add_region.setMaximumWidth(150)
parent.button_add_region.clicked.connect(parent.clickmethod) parent.button_add_region.clicked.connect(parent.clickmethod)
......
...@@ -61,10 +61,22 @@ def Init(parent): ...@@ -61,10 +61,22 @@ def Init(parent):
# makes a horizontal layout for the buttons used to navigate through # makes a horizontal layout for the buttons used to navigate through
# the time axis. # the time axis.
hboxtimeframes = QtWidgets.QHBoxLayout() hboxtimeframes = QtWidgets.QHBoxLayout()
hboxtimeframes.addWidget(parent.button_fov)
hboxtimeframes.addWidget(parent.button_channel)
hboxtimeframes.addStretch()
hboxtimeframes.addWidget(parent.button_previousframe) hboxtimeframes.addWidget(parent.button_previousframe)
hboxtimeframes.addWidget(parent.button_timeindex) hboxtimeframes.addWidget(parent.button_timeindex)
hboxtimeframes.addWidget(parent.button_nextframe) hboxtimeframes.addWidget(parent.button_nextframe)
layout.addWidget(parent.m) hboxtimeframes.addStretch()
# add the frames of the pictures in the layout.
hlayout = QtWidgets.QHBoxLayout()
hlayout.addWidget(parent.m)
hlayout.setContentsMargins(0, 0, 0, 0)
layout.addLayout(hlayout)
layout.addLayout(hboxtimeframes) layout.addLayout(hboxtimeframes)
...@@ -73,42 +85,48 @@ def Init(parent): ...@@ -73,42 +85,48 @@ def Init(parent):
hboxcorrectionsbuttons = QtWidgets.QHBoxLayout() hboxcorrectionsbuttons = QtWidgets.QHBoxLayout()
hboxcorrectionsbuttons.addWidget(parent.button_add_region) hboxcorrectionsbuttons.addWidget(parent.button_add_region)
hboxcorrectionsbuttons.addWidget(parent.button_newcell) hboxcorrectionsbuttons.addWidget(parent.button_newcell)
hboxcorrectionsbuttons.addWidget(parent.button_drawmouse) hboxcorrectionsbuttons.addWidget(parent.button_drawmouse)
hboxcorrectionsbuttons.addWidget(parent.button_eraser) hboxcorrectionsbuttons.addWidget(parent.button_eraser)
hboxcorrectionsbuttons.addWidget(parent.button_savemask) hboxcorrectionsbuttons.addWidget(parent.button_savemask)
hboxcorrectionsbuttons.addStretch(1) hboxcorrectionsbuttons.addStretch(1)
hboxcorrectionsbuttons.addWidget(parent.button_showval)
hboxcorrectionsbuttons.addWidget(parent.button_hidemask)
layout.addLayout(hboxcorrectionsbuttons) layout.addLayout(hboxcorrectionsbuttons)
# layout.addStretch(0.7)
# LAYOUT FOR EDITING CELL VALUES, SHOW CELL VALUES AND HIDE MASK, CNN BUTTONS
hboxcellval = QtWidgets.QHBoxLayout() hboxcellval = QtWidgets.QHBoxLayout()
hboxcellval.addWidget(parent.button_exval) hboxcellval.addWidget(parent.button_exval)
hboxcellval.addWidget(parent.button_changecellvalue) hboxcellval.addWidget(parent.button_changecellvalue)
hboxcellval.addStretch(1) hboxcellval.addStretch(1)
hboxcellval.addWidget(parent.button_cnn)
hboxcellval.addWidget(parent.button_cellcorespondance)
hboxcellval.addWidget(parent.button_extractfluorescence)
layout.addLayout(hboxcellval) layout.addLayout(hboxcellval)
hboxlistbuttons = QtWidgets.QHBoxLayout()
hboxlistbuttons.addWidget(parent.button_fov)
hboxlistbuttons.addWidget(parent.button_channel)
hboxlistbuttons.addStretch(1)
layout.addLayout(hboxlistbuttons)
layout.addWidget(parent.button_extractfluorescence) # # LAYOUT FOR LAUNCH NN, TRACK CELLS AND EXTRACT FLUORESCENCE
hboxcheckbox = QtWidgets.QHBoxLayout() # hboxcnnbuttons = QtWidgets.QHBoxLayout()
hboxcheckbox.addWidget(parent.button_showval) # hboxcnnbuttons.addStretch(1)
hboxcheckbox.addWidget(parent.button_hidemask)
hboxcheckbox.addStretch(1)
layout.addLayout(hboxcheckbox)
# layout.addLayout(hboxcnnbuttons)
layout.addWidget(parent.button_cnn)
layout.addLayout(hbox_threshold)
layout.addLayout(hbox_segment) # BUTTONS TO SHOW THE THRESHOLD AND SEGMENTATION ARE HIDDEN HERE!
layout.addWidget(parent.button_cellcorespondance) # UNCOMMENT THEM TO MAKE THEM APPEAR ON THE GUI.
# layout.addLayout(hbox_threshold)
# layout.addLayout(hbox_segment)
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment