コード例 #1
0
    def MoveFileDownButton_clicked(self):
        filename = self.currentFilename()
        if filename is None:
            return

        utils.list_move_down(self.file_list, filename, self.__compareFilenames)
        self.updateUi()
コード例 #2
0
ファイル: filetable.py プロジェクト: csteacherd22/hplip
    def MoveFileDownButton_clicked(self):
        filename = self.currentFilename()
        if filename is None:
            return

        utils.list_move_down(self.file_list, filename, self.__compareFilenames)
        self.updateUi()
コード例 #3
0
ファイル: scrollfax.py プロジェクト: danwallach/VoteBox-v1
 def moveDownPushButton_clicked(self):
     try:
         name = self.recipientListView.selectedItem().name
     except AttributeError:
         return
     else:
         utils.list_move_down(self.recipient_list, name)
         self.updateRecipientList()
コード例 #4
0
 def MoveRecipientDownButton_clicked(self):
     utils.list_move_down(self.recipient_list, self.getCurrentRecipient())
     self.updateRecipientTable()
コード例 #5
0
 def MoveRecipientDownButton_clicked(self):
     utils.list_move_down(self.recipient_list, self.getCurrentRecipient())
     self.updateRecipientTable()