0

私はPythonとPygtkを初めて使用しますが、以前のドロップダウンメニュー項目からドロップダウンメニュー項目を更新する方法がわかりません。以前のコンボボックス(cb1)の選択に依存するコンボボックス(cb2)のリストストアを設定しようとしています。したがって、これはcb1ユーザーの選択に依存するため、動的cb2だと思います。

cb1にはアイテムC1とC2があります。C1を選択した場合、cb2アイテムを2、3、および4にします。C2を選択した場合、cb2アイテムを2、3、4、および6にします。

誰かが私を助けることができますか?

これが私がこれまでに持っているテストケースコードです。しかし、変更は機能しません!

import pygtk
pygtk.require("2.0")
import gtk

class test:
    def __init__(self):
        self.window = gtk.Window(type=gtk.WINDOW_TOPLEVEL)
        self.window.connect("destroy", lambda w: gtk.main_quit())

        self.vbox_setup = gtk.VBox(False, 0)
        self.vbox_setup.set_border_width(10)
        self.window.add(self.vbox_setup)
        self.conf_1()

        self.window.show_all()
        gtk.main()

    def conf_1(self):
        self.obs_box = gtk.VBox(False, 0)
        self.vbox_setup.pack_start(self.obs_box, False, True, 0)
        self.label = gtk.Label('Conf1')
        self.obs_box.pack_start(self.label, False, True, 3)
        self.label_lat = gtk.Label('Latitude: ?')
        self.combobox_1 = gtk.ComboBox()
        self.liststore = gtk.ListStore(str)
        self.cell = gtk.CellRendererText()
        self.combobox_1.pack_start(self.cell)
        self.combobox_1.add_attribute(self.cell, 'text', 0)
        self.obs_box.pack_start(self.combobox_1, False, True, 3)
        self.liststore.append(['Select:'])
        self.liststore.append(['C1'])
        self.liststore.append(['C2'])
        self.combobox_1.set_model(self.liststore)
        self.combobox_1.connect('changed', self.conf1_choice)
        self.combobox_1.connect('changed', self.conf2_choice)
        self.combobox_1.set_active(0)
        self.obs_box.pack_start(self.label_lat, False, True, 3)

    def conf1_choice(self, combobox):
        model = combobox.get_model()
        index = combobox.get_active()
        if model[index][0] == 'C1':
            self.latitude = -4.23
        elif model[index][0] == 'C2':
            self.latitude = 45.22
        else :
            self.latitude = 0
        lat_dgr = int(self.latitude)
        lat_mn = int((self.latitude %1)*60.)
        lat_s = ((self.latitude %1)*60. %1)*60.
        self.label_lat.set_label('Latitude: '+str(lat_dgr)+u'\u00B0 '+
                             str(lat_mn)+u'\u0027 '+str(round(lat_s,2))+u'\u0027\u0027' )

    def conf2_choice(self, widget):
        self.configuration_box = gtk.VBox(False, 0)
        self.vbox_setup.pack_start(self.configuration_box, False, True, 0)
        self.label = gtk.Label('Configuration')
        self.configuration_box.pack_start(self.label, False, True, 3)
        self.combobox_2 = gtk.ComboBox()
        self.liststore = gtk.ListStore(str)
        self.cell = gtk.CellRendererText()
        self.combobox_2.pack_start(self.cell)
        self.combobox_2.add_attribute(self.cell, 'text', 0)
        self.configuration_box.pack_start(self.combobox_2, False, True, 3)
        self.liststore.append(['Select:'])
        model = self.combobox_1.get_model()
        index = self.combobox_1.get_active()
        if model[index][0] == 'C1':
            self.liststore.append(['2'])
            self.liststore.append(['3'])
            self.liststore.append(['4'])
        if model[index][0] == 'C2':
            self.liststore.append(['2'])
            self.liststore.append(['3'])
            self.liststore.append(['4'])
            self.liststore.append(['6'])
        self.combobox_2.set_model(self.liststore)
        self.combobox_2.set_active(0)
        self.combobox_2.connect('changed', self.conf3_choice)

    def conf3_choice(self, widget):
        pass

if __name__ == "__main__":
    uv = test()

さらに、cb1=C1とcb2=2を選択すると、アイテムT1、T2、T3を持つ他の2つのコンボボックスが作成されます。または、cb1=C1とcb2=4を選択すると、アイテムT1、T2を持つ他の4つのコンボボックスが作成されます。およびT3。cb1 = C2についても同じですが、アイテムU1、U2、U3、およびU4があります。このような場合、*conf3_choice*の実装は次のとおりです。

def conf3_choice(self, widget):
    model_1 = self.combobox_1.get_model()
    index_1 = self.combobox_1.get_active()
    model_2 = self.combobox_2.get_model()
    index_2 = self.combobox_2.get_active()
    self.new_box_1 = gtk.VBox(False, 0)
    self.vbox_setup.pack_start(self.new_box_1, False, True, 0)
    self.new_box_2 = gtk.VBox(False, 0)
    self.vbox_setup.pack_start(self.new_box_2, False, True, 0)
    self.combobox_3 = gtk.ComboBox()
    self.liststore = gtk.ListStore(str)
    self.cell = gtk.CellRendererText()
    self.combobox_3.pack_start(self.cell)
    self.combobox_3.add_attribute(self.cell, 'text', 0)
    self.liststore.append(['Select:'])
    if model_1[index][0]=='C1':
        self.liststore.append(['T1'])
        self.liststore.append(['T2'])
        self.liststore.append(['T3'])
        self.combobox_3.set_model(self.liststore)
        self.combobox_3.set_active(0)
        if model_2[index][0]=='2':
            self.configuration_box.pack_start(self.combobox_3, False, True, 3)
            self.configuration_box.pack_start(self.combobox_3, False, True, 3)
        if model_2[index][0]=='3':
            self.configuration_box.pack_start(self.combobox_3, False, True, 3)
            self.configuration_box.pack_start(self.combobox_3, False, True, 3)
            self.configuration_box.pack_start(self.combobox_3, False, True, 3)
        if model_2[index][0]=='4':
            self.configuration_box.pack_start(self.combobox_3, False, True, 3)
            self.configuration_box.pack_start(self.combobox_3, False, True, 3)
            self.configuration_box.pack_start(self.combobox_3, False, True, 3)
            self.configuration_box.pack_start(self.combobox_3, False, True, 3)
    if model_1[index][0]=='C2':
        self.liststore.append(['U1'])
        self.liststore.append(['U2'])
        self.liststore.append(['U3'])
        self.liststore.append(['U4'])
        self.combobox_3.set_model(self.liststore)
        self.combobox_3.set_active(0)
        if model_2[index][0]=='2':
            self.configuration_box.pack_start(self.combobox_3, False, True, 3)
            self.configuration_box.pack_start(self.combobox_3, False, True, 3)
        if model_2[index][0]=='3':
            self.configuration_box.pack_start(self.combobox_3, False, True, 3)
            self.configuration_box.pack_start(self.combobox_3, False, True, 3)
            self.configuration_box.pack_start(self.combobox_3, False, True, 3)
        if model_2[index][0]=='4':
            self.configuration_box.pack_start(self.combobox_3, False, True, 3)
            self.configuration_box.pack_start(self.combobox_3, False, True, 3)
            self.configuration_box.pack_start(self.combobox_3, False, True, 3)
            self.configuration_box.pack_start(self.combobox_3, False, True, 3)
        if model_2[index][0]=='6':
            self.configuration_box.pack_start(self.combobox_3, False, True, 3)
            self.configuration_box.pack_start(self.combobox_3, False, True, 3)
            self.configuration_box.pack_start(self.combobox_3, False, True, 3)
            self.configuration_box.pack_start(self.combobox_3, False, True, 3)
            self.configuration_box.pack_start(self.combobox_3, False, True, 3)
            self.configuration_box.pack_start(self.combobox_3, False, True, 3)
4

1 に答える 1

0

すべてのコンボボックスで同じモデル (self.liststore) を共有しています。同様に、self.cell も同様です。それらにはローカル変数を使用する必要があります。後で必要になった場合は、get_model()などで取得できます。次に、コンボボックスが変更されるたびにウィジェットを作成するのは得策ではないようです。より良いアプローチは、最初にウィジェットを作成し、必要に応じて有効/無効にすることです。いずれの場合も、モデル ( liststore ) を更新するだけで済みます。

関連する機能をまとめるために、コードを少し再配置します。ローカル変数と適切な順序を使用すると、コードが機能するようになります。ここでコードを推定して、3 番目と 4 番目のコンボボックスを機能させることができます。

最後になりましたが、アイテムを追加したいときはいつでも、2 番目のコンボボックスのモデルをclear()する必要があります。

import pygtk
pygtk.require("2.0")
import gtk

class test:
    def __init__(self):
        self.window = gtk.Window(type=gtk.WINDOW_TOPLEVEL)
        self.window.connect("destroy", lambda w: gtk.main_quit())

        self.vbox_setup = gtk.VBox(False, 0)
        self.vbox_setup.set_border_width(10)
        self.window.add(self.vbox_setup)
        self.create_comboxbox()

        self.window.show_all()
        gtk.main()

    def create_comboxbox(self):
        # Main Combo box
        liststore = gtk.ListStore(str)
        liststore.append(['Select:'])
        liststore.append(['C1'])
        liststore.append(['C2'])

        self.obs_box = gtk.VBox(False, 0)
        self.vbox_setup.pack_start(self.obs_box, False, True, 0)
        label = gtk.Label('Conf1')
        self.label_lat = gtk.Label('Latitude: ?')

        self.combobox_1 = gtk.ComboBox()
        cell = gtk.CellRendererText()
        self.combobox_1.pack_start(cell)
        self.combobox_1.add_attribute(cell, 'text', 0)
        self.combobox_1.set_model(liststore)
        self.combobox_1.set_active(0)
        self.combobox_1.connect('changed', self.conf1_choice)
        self.combobox_1.connect('changed', self.conf2_choice)

        self.obs_box.pack_start(label, False, True, 3)
        self.obs_box.pack_start(self.combobox_1, False, True, 3)
        self.obs_box.pack_start(self.label_lat, False, True, 3)

        # Secondary Combo box
        liststore = gtk.ListStore(str)
        liststore.append(['Select:'])

        label = gtk.Label('Configuration')
        self.combobox_2 = gtk.ComboBox()

        cell = gtk.CellRendererText()
        self.combobox_2.pack_start(cell)
        self.combobox_2.add_attribute(cell, 'text', 0)
        self.combobox_2.set_model(liststore)
        self.combobox_2.set_active(0)
        #self.combobox_2.connect('changed', self.conf3_choice)

        self.obs_box.pack_start(label, False, True, 3)
        self.obs_box.pack_start(self.combobox_2, False, True, 3)

    def conf1_choice(self, combobox):
        model = combobox.get_model()
        index = combobox.get_active()
        if model[index][0] == 'C1':
            self.latitude = -4.23
        elif model[index][0] == 'C2':
            self.latitude = 45.22
        else:
            self.latitude = 0
        lat_dgr = int(self.latitude)
        lat_mn = int((self.latitude %1)*60.)
        lat_s = ((self.latitude %1)*60. %1)*60.
        self.label_lat.set_label('Latitude: '+str(lat_dgr)+u'\u00B0 '+
                             str(lat_mn)+u'\u0027 '+str(round(lat_s,2))+u'\u0027\u0027' )

    def conf2_choice(self, widget):
        model = self.combobox_1.get_model()
        index = self.combobox_1.get_active()
        liststore = self.combobox_2.get_model()
        liststore.clear()
        liststore.append(['Select:'])
        if model[index][0] == 'C1':
            liststore.append(['2'])
            liststore.append(['3'])
            liststore.append(['4'])
        if model[index][0] == 'C2':
            liststore.append(['2'])
            liststore.append(['3'])
            liststore.append(['4'])
            liststore.append(['6'])
        self.combobox_2.set_model(liststore)
        self.combobox_2.set_active(0)

if __name__ == "__main__":
    uv = test()
于 2012-06-24T21:58:02.750 に答える