Open SrutiBh opened 3 years ago
First, replace ComboBox with your widget https://github.com/tzutalin/labelImg/blob/master/labelImg.py#L144-L145
You can define your widget under libs/
folder.
For the first and second, you can reference combobox.py and https://github.com/tzutalin/labelImg/blob/master/labelImg.py#L144-L145
libs/combobox.py
When combox changes, it will call its parent widget's comboSelectionChanged method to tell if something has been changed in this combo box
self.cb.currentIndexChanged.connect(parent.comboSelectionChanged)
comboSelectionChanged method in labelimg.py
For third one, https://github.com/tzutalin/labelImg/blob/master/labelImg.py#L878-L886