コード例 #1
0
ファイル: TableModel.py プロジェクト: weirdindiankid/urh
    def insert_column(self, index: int, rows: list):
        if self.protocol is None or not self.is_writeable:
            return

        insert_action = InsertColumn(self.protocol, index, rows,
                                     self.proto_view)
        self.undo_stack.push(insert_action)
コード例 #2
0
 def insert_column(self, index: int, rows: list):
     insert_action = InsertColumn(self.protocol, index, rows,
                                  self.proto_view)
     self.undo_stack.push(insert_action)
コード例 #3
0
 def insert_column(self, index: int):
     insert_action = InsertColumn(self.protocol, index)
     self.undo_stack.push(insert_action)