PyQt QComboBox addItems没有重新绘制

时间:2015-04-06 11:29:31

标签: python user-interface pyqt qcombobox

我有GUI应用程序,它将转储文件中的数据绘制为各种类型的图。下面给出了部分代码,它为所选择的图表类型设置了一些数据集值。

请查看以下代码。

def Plottype_menu_event(self) :

    """
    Select plot type as that currently being displayed in the plot type menu and modify the displayed data set menus accordingly.


    Available plot types as listed in the menu
    0 = time trace
    1 = profile
    2 = surface1
    3 = surface2
    4 = contour
    5 = spectrum
    6 = snake
    7 = Power Spectrum surface
    8 = Fundamental Power

    """

    self.nc[0] = self.plotlist.currentIndex()
    text = self.plotlist.currentText()
    print text, self.nc[0]

    """
    Decide whether it is sensible to allow a movie to be made form this plot type (0 = no, 1 = yes), and turn off/on the movie button accordingly.
    """

    movie_allowed = [0, 1, 0, 0, 1, 1, 0, 0, 0]


    """
    Reset dataset to use to the first in the list.
    """
    self.nc[2] = 0

    """
    Update menu of the available datasets in the DATASET_MENU1 and DATASET_MENU2

    Data array to use for each plot type is stored in nc[1]
    1 = tvar1 (tnam1)
    2 = timar (surft)
    3 = tvar3 (surft)
    4 = tvar3 (tnam3)

    """

    if self.nc[0] == 0 :
        self.nc[1] = 4
        self.dataset_1_list.clear()
        self.dataset_1_list.addItems(self.tnam3)
        self.dataset_1_list.setCurrentIndex(0)
        self.dataset_2_list.clear()
        self.dataset_2_list.addItems(self.tnam3)
        self.dataset_2_list.setCurrentIndex(0)


    """
    Note that profile plots can use either tvar1 or timar

    """

    if self.nc[0] == 1 :
        self.nc[1] = 1
        self.dataset_1_list.clear()
        self.dataset_1_list.addItems(self.tnam1)
        self.dataset_1_list.setCurrentIndex(0)
        self.dataset_2_list.clear()
        self.dataset_2_list.addItems(self.surft)
        self.dataset_2_list.setCurrentIndex(1)



    if self.nc[0] == 2 :
        self.nc[1] = 1
        self.dataset_1_list.clear()
        self.dataset_1_list.addItems(self.tnam1)
        self.dataset_1_list.setCurrentIndex(0)
        self.dataset_1_list.clear()
        self.dataset_2_list.addItems(self.tnam1)
        self.dataset_2_list.setCurrentIndex(1)


    if self.nc[0] == 3 :
        self.nc[1] = 2
        self.dataset_1_list.clear()
        self.dataset_1_list.addItems(self.surft)
        self.dataset_1_list.setCurrentIndex(0)
        self.dataset_1_list.clear()
        self.dataset_2_list.addItems(self.surft)
        self.dataset_2_list.setCurrentIndex(1)


    if self.nc[0] == 4 :
        self.nc[1] = 3
        self.dataset_1_list.clear()
        self.dataset_1_list.addItems(self.tnam2)
        self.dataset_1_list.setCurrentIndex(0)
        self.dataset_1_list.clear()
        self.dataset_2_list.addItems(self.tnam2)
        self.dataset_2_list.setCurrentIndex(1)


    if self.nc[0] == 5 :
        self.nc[1] = 3
        self.dataset_1_list.clear()
        self.dataset_1_list.addItems(self.tnam2)
        self.dataset_1_list.setCurrentIndex(0)
        self.dataset_1_list.clear()
        self.dataset_2_list.addItems(self.tnam2)
        self.dataset_2_list.setCurrentIndex(1)


    if self.nc[0] == 6 :
        self.nc[1] = 3
        self.dataset_1_list.clear()
        self.dataset_1_list.addItems(self.tnam2)
        self.dataset_1_list.setCurrentIndex(0)
        self.dataset_1_list.clear()
        self.dataset_2_list.addItems(self.tnam2)
        self.dataset_2_list.setCurrentIndex(1)


    if self.nc[0] == 7 :
        self.nc[1] = 1
        self.dataset_1_list.clear()
        self.dataset_1_list.addItems(self.tnam1)
        self.dataset_1_list.setCurrentIndex(0)
        self.dataset_1_list.clear()
        self.dataset_2_list.addItems(self.surft)
        self.dataset_2_list.setCurrentIndex(0)


    if self.nc[0] == 8 :
        self.nc[1] = 1
        self.dataset_1_list.clear()
        self.dataset_1_list.addItems(self.tnam1)
        self.dataset_1_list.setCurrentIndex(0)
        self.dataset_1_list.clear()
        self.dataset_2_list.addItems(self.surft)
        self.dataset_2_list.setCurrentIndex(0)

变量nc[0]是一个开关,它从下拉菜单中读取用户选择并使用一些选择数据集更新一组QComboBox小部件。但是对于高于nc[0] == 1的值,QComboBox的值已更改但它们并没有被绘制(它们没有值)或以前的选择值.GUI的底层代码工作正常,但数据集没有更新(即没有重新绘制新值)

我在这里需要一些帮助。任何想法为何会出现这样的行为?

非常感谢所有帮助。

1 个答案:

答案 0 :(得分:1)

对于nc[0]大于1的值,处理案例的if块会清除self.dataset_1_list两次。第二次,应该在self.dataset_2_list

上采取行动

例如

if self.nc[0] == 2 :
    self.nc[1] = 1
    self.dataset_1_list.clear()
    self.dataset_1_list.addItems(self.tnam1)
    self.dataset_1_list.setCurrentIndex(0)
    self.dataset_1_list.clear()
    self.dataset_2_list.addItems(self.tnam1)
    self.dataset_2_list.setCurrentIndex(1)

应该成为

if self.nc[0] == 2 :
    self.nc[1] = 1
    self.dataset_1_list.clear()
    self.dataset_1_list.addItems(self.tnam1)
    self.dataset_1_list.setCurrentIndex(0)
    self.dataset_2_list.clear()                # This line is changed
    self.dataset_2_list.addItems(self.tnam1)
    self.dataset_2_list.setCurrentIndex(1)

此修补程序需要应用于大多数代码块。

我建议您重构代码以避免将来出现此类问题。例如,您可以执行以下操作:

comboboxes = [self.dataset_1_list, self.dataset_2_list]
items_to_add = []
indices_to_set = []
if nc[0] == 1:
    self.nc[1] = 1
    items_to_add.append(self.tnam1)
    indices_to_set.append(0)
    items_to_add.append(self.surft)
    indices_to_set.append(1)
elif nc[1] == 2:
    # etc

for combobox, items, index in zip(comboboxes, items_to_add, indices_to_set):
    combobox.clear()
    combobox.addItems(items)
    combobox.setCurrentIndex(index)

这样可以避免复制/粘贴错误(这就是我假设这些问题出现的原因)。相同的代码用于修改所有组合框,因此错误将影响所有组合框。如果它发生,你应该更容易诊断自己。