コード例 #1
0
ファイル: __init__.py プロジェクト: xguse/outspline
    def _update_item_properties(self, id_, rules):
        if len(rules) > 0:
            bits = 1 << self.property_shift
        else:
            bits = 0 << self.property_shift

        wxgui_api.update_item_properties(self.filename, id_, bits,
                                                            self.property_mask)
コード例 #2
0
ファイル: __init__.py プロジェクト: kynikos/outspline
    def _update_item_properties(self, id_, rules):
        if len(rules) > 0:
            bits = 1 << self.property_shift
        else:
            bits = 0 << self.property_shift

        wxgui_api.update_item_properties(self.filename, id_, bits,
                                                            self.property_mask)
コード例 #3
0
ファイル: __init__.py プロジェクト: xguse/outspline
 def _update_item_properties(self, id_, rbits):
     bits = rbits << self.property_shift
     wxgui_api.update_item_properties(self.filename, id_, bits,
                                                     self.property_mask)
コード例 #4
0
ファイル: __init__.py プロジェクト: xguse/outspline
 def _update_item_properties(self, id_, rbits):
     bits = rbits << self.property_shift
     wxgui_api.update_item_properties(self.filename, id_, bits,
                                      self.property_mask)