コード例 #1
0
 def reject(self):
     """
     Slot for the 'Cancel' button 
     """
     self.jig.attr_update(self.jig_attrs) # Restore attributes of the jig.
     self.glpane.gl_update()
     QDialog.reject(self)
コード例 #2
0
 def reject(self):
     """The slot method for the 'Cancel' button."""
     QDialog.reject(self)
     self.gamessJig.attr_update(self.jig_attrs) # Restore attributes of the jig.
     # self.gamessJig.color = self.gamessJig.normcolor = self.original_normcolor
     self.gamessJig.cancelled = True
     self.glpane.gl_update()
コード例 #3
0
ファイル: elementColors.py プロジェクト: elfion/nanoengineer
 def reject(self):
     """
     If elements modified or external file loaded, restore
     current pref to original since our dialog is reused
     """
     if self.isElementModified or self.fileName:  
         self.elemTable.resetElemTable(self.oldTable)
         self._updateModelDisplay()
     
     QDialog.reject(self)
コード例 #4
0
    def reject(self):
        '''Slot for the 'Cancel' button '''
        self.jig.attr_update(self.jig_attrs)  # Restore attributes of the jig.
        # Before exit the dialog, turn off the highlighting and selection
        self.jig.highlightChecked = False
        self.jig.pickSelected(False)

        self.glpane.gl_update()

        QDialog.reject(self)
コード例 #5
0
 def reject(self):
     '''Slot for the 'Cancel' button '''
     self.jig.attr_update(self.jig_attrs) # Restore attributes of the jig.
     # Before exit the dialog, turn off the highlighting and selection
     self.jig.highlightChecked = False
     self.jig.pickSelected(False)
     
     self.glpane.gl_update()
     
     QDialog.reject(self)
コード例 #6
0
    def reject(self):
        """
        If elements modified or external file loaded, restore
        current pref to original since our dialog is reused
        """
        if self.isElementModified or self.fileName:
            self.elemTable.resetElemTable(self.oldTable)
            self._updateModelDisplay()

        QDialog.reject(self)
コード例 #7
0
    def processDone(self):
        #self.fwThread.stop()
        self.jobTimer.stop()

        if self.process.normalExit():
            print "The process is done!"
            QDialog.accept(self.progressDialog)
        else:
            print "The process is cancelled!"
            QDialog.reject(self.progressDialog)
        return
コード例 #8
0
ファイル: GamessJob.py プロジェクト: ematvey/NanoEngineer-1
 def processDone(self):
     #self.fwThread.stop()
     self.jobTimer.stop()
     
     if self.process.normalExit():
         print "The process is done!"
         QDialog.accept(self.progressDialog)
     else:
         print "The process is cancelled!"
         QDialog.reject(self.progressDialog)
     return
コード例 #9
0
 def cancel_btn_clicked(self):
     """
     Slot for Cancel button
     """
     if env.debug():
         print "cancel"
     # restore values we grabbed on entry.
     for key,val in zip((endRMS_prefs_key, endMax_prefs_key, cutoverRMS_prefs_key, cutoverMax_prefs_key), self.previousParams):
         env.prefs[key] = val
     self.update_widgets(update_seltype = False) #k might not matter since we're about to hide it, but can't hurt
     QDialog.reject(self)
     return
コード例 #10
0
    def reject(self):
        '''Slot for the 'Cancel' button '''
        
        self.chunk.color = self.original_color
        self.chunk.setcolor(self.chunk.color)

        QDialog.reject(self)
        
        # A hidden chunk has no glpane attr.  This fixes bug 1137.  Mark 051126.
        if self.chunk.hidden:
            return

        self.glpane.gl_update()
コード例 #11
0
ファイル: dialogs.py プロジェクト: startion2007/DeDRM.Net
 def accept(self):
     if self.key_ledit.text().isEmpty() or unicode(
             self.key_ledit.text()).isspace():
         errmsg = u"Key name field cannot be empty!"
         return error_dialog(None,
                             "{0} {1}".format(PLUGIN_NAME, PLUGIN_VERSION),
                             _(errmsg),
                             show=True,
                             show_copy_button=False)
     if len(self.key_ledit.text()) < 4:
         errmsg = u"Key name must be at <i>least</i> 4 characters long!"
         return error_dialog(None,
                             "{0} {1}".format(PLUGIN_NAME, PLUGIN_VERSION),
                             _(errmsg),
                             show=True,
                             show_copy_button=False)
     if uStrCmp(self.key_ledit.text(),
                self.parent.listy.currentItem().text()):
         # Same exact name ... do nothing.
         return QDialog.reject(self)
     for k in self.parent.plugin_keys.keys():
         if (uStrCmp(self.key_ledit.text(), k, True) and
                 not uStrCmp(k,
                             self.parent.listy.currentItem().text(), True)):
             errmsg = u"The key name <strong>{0}</strong> is already being used.".format(
                 self.key_ledit.text())
             return error_dialog(None,
                                 "{0} {1}".format(PLUGIN_NAME,
                                                  PLUGIN_VERSION),
                                 _(errmsg),
                                 show=True,
                                 show_copy_button=False)
     QDialog.accept(self)
コード例 #12
0
ファイル: dialogs.py プロジェクト: 12101/dedrm-ebook-tools
 def accept(self):
     if self.key_ledit.text().isEmpty() or unicode(self.key_ledit.text()).isspace():
         errmsg = u"Key name field cannot be empty!"
         return error_dialog(None, "{0} {1}".format(PLUGIN_NAME, PLUGIN_VERSION),
                                 _(errmsg), show=True, show_copy_button=False)
     if len(self.key_ledit.text()) < 4:
         errmsg = u"Key name must be at <i>least</i> 4 characters long!"
         return error_dialog(None, "{0} {1}".format(PLUGIN_NAME, PLUGIN_VERSION),
                                 _(errmsg), show=True, show_copy_button=False)
     if uStrCmp(self.key_ledit.text(), self.parent.listy.currentItem().text()):
             # Same exact name ... do nothing.
             return QDialog.reject(self)
     for k in self.parent.plugin_keys.keys():
         if (uStrCmp(self.key_ledit.text(), k, True) and
                     not uStrCmp(k, self.parent.listy.currentItem().text(), True)):
             errmsg = u"The key name <strong>{0}</strong> is already being used.".format(self.key_ledit.text())
             return error_dialog(None, "{0} {1}".format(PLUGIN_NAME, PLUGIN_VERSION),
                                 _(errmsg), show=True, show_copy_button=False)
     QDialog.accept(self)
コード例 #13
0
ファイル: duplicates.py プロジェクト: sss/calibre
 def reject(self):
     self.select_none()
     QDialog.reject(self)
コード例 #14
0
ファイル: GroupProp.py プロジェクト: vcsrc/nanoengineer
 def reject(self):
     QDialog.reject(self)
コード例 #15
0
 def reject(self):
     '''Slot for the 'Cancel' button '''
     self.grid_plane.attr_update(self.jig_attrs) # Restore attributes of the jig.
     self.glpane.gl_update()
     QDialog.reject(self)
コード例 #16
0
ファイル: CommentProp.py プロジェクト: elfion/nanoengineer
 def reject(self):
     QDialog.reject(self)
     self.comment = None
     self.comment_textedit.setPlainText("") # Clear text.
コード例 #17
0
ファイル: single_download.py プロジェクト: BobPyron/calibre
 def reject(self):
     gprefs['metadata_single_gui_geom'] = bytearray(self.saveGeometry())
     self.identify_widget.cancel()
     self.covers_widget.cancel()
     return QDialog.reject(self)
コード例 #18
0
 def reject(self):
     self.canceled = True
     QDialog.reject(self)
コード例 #19
0
ファイル: jobs.py プロジェクト: bindx/EE-Book
 def reject(self):
     self.save_state()
     QDialog.reject(self)
コード例 #20
0
 def reject(self):
     self.stats.remove(self.location)
     QDialog.reject(self)
コード例 #21
0
 def reject(self):
     self.stats.remove(self.location)
     QDialog.reject(self)
コード例 #22
0
ファイル: trim_image.py プロジェクト: siebert/calibre
 def reject(self):
     self.cleanup()
     QDialog.reject(self)
コード例 #23
0
ファイル: restore_library.py プロジェクト: pra85/calibre
 def reject(self):
     self.rejected = True
     self.restorer.progress_callback = lambda x, y: x
     QDialog.reject(self)
コード例 #24
0
 def reject(self):
     self.rejected = True
     self.restorer.progress_callback = lambda x, y: x
     QDialog.reject(self)
コード例 #25
0
 def reject(self):
     '''Slot for the 'Cancel' button '''
     self.grid_plane.attr_update(
         self.jig_attrs)  # Restore attributes of the jig.
     self.glpane.gl_update()
     QDialog.reject(self)
コード例 #26
0
 def reject(self):
     self.save_geometry()
     return QDialog.reject(self)
コード例 #27
0
ファイル: comments_dialog.py プロジェクト: 089git/calibre
 def reject(self):
     self.save_geometry()
     QDialog.reject(self)
コード例 #28
0
ファイル: check_library.py プロジェクト: Pipeliner/calibre
 def reject(self):
     self.rejected = True
     QDialog.reject(self)
コード例 #29
0
 def reject(self):
     self.save_geometry()
     self.select_none()
     QDialog.reject(self)
コード例 #30
0
 def reject(self):
     tprefs.set(self.name + "-geometry", bytearray(self.saveGeometry()))
     if hasattr(self, "splitter"):
         tprefs.set(self.name + "-splitter-state", bytearray(self.splitter.saveState()))
     QDialog.reject(self)
コード例 #31
0
 def reject(self):
     if not self.cancelable:
         return
     QDialog.reject(self)
コード例 #32
0
ファイル: dnd.py プロジェクト: mrmac123/calibre
 def reject(self):
     self.rejected = True
     QDialog.reject(self)
コード例 #33
0
ファイル: duplicates.py プロジェクト: BobPyron/calibre
 def reject(self):
     self.select_none()
     QDialog.reject(self)
コード例 #34
0
 def reject(self):
     self.covers_widget.cancel()
     return QDialog.reject(self)
コード例 #35
0
ファイル: jobs.py プロジェクト: jajohe/taoguba_xueqiu_book
 def reject(self):
     self.save_state()
     QDialog.reject(self)
コード例 #36
0
 def reject(self):
     self.canceled = True
     QDialog.reject(self)
コード例 #37
0
ファイル: PartProp.py プロジェクト: octopus89/NanoEngineer-1
 def reject(self):
     QDialog.reject(self)
コード例 #38
0
 def reject(self):
     self.save_state()
     return QDialog.reject(self)
コード例 #39
0
 def reject(self):
     self.rejected = True
     return QDialog.reject(self)
コード例 #40
0
 def reject(self):
     tprefs.set(self.name + '-geometry', bytearray(self.saveGeometry()))
     if hasattr(self, 'splitter'):
         tprefs.set(self.name + '-splitter-state',
                    bytearray(self.splitter.saveState()))
     QDialog.reject(self)
コード例 #41
0
ファイル: single_download.py プロジェクト: JackonYang/calibre
 def reject(self):
     gprefs.set('single-cover-fetch-dialog-geometry', bytearray(self.saveGeometry()))
     self.covers_widget.cancel()
     return QDialog.reject(self)
コード例 #42
0
ファイル: insert_resource.py プロジェクト: FaustXVI/calibre
 def reject(self):
     tprefs.set(self.name + '-geometry', bytearray(self.saveGeometry()))
     if hasattr(self, 'splitter'):
         tprefs.set(self.name + '-splitter-state', bytearray(self.splitter.saveState()))
     QDialog.reject(self)
コード例 #43
0
 def reject(self):
     gprefs['metadata_single_gui_geom'] = bytearray(self.saveGeometry())
     self.identify_widget.cancel()
     self.covers_widget.cancel()
     return QDialog.reject(self)
コード例 #44
0
ファイル: preferences.py プロジェクト: mrmac123/calibre
 def reject(self):
     tprefs.set('preferences_geom', bytearray(self.saveGeometry()))
     QDialog.reject(self)
コード例 #45
0
ファイル: duplicates.py プロジェクト: 089git/calibre
 def reject(self):
     self.save_geometry()
     self.select_none()
     QDialog.reject(self)
コード例 #46
0
ファイル: check_library.py プロジェクト: Pipeliner/calibre
 def reject(self):
     self.rejected = True
     return QDialog.reject(self)
コード例 #47
0
ファイル: single_download.py プロジェクト: yeyanchao/calibre
 def reject(self):
     self.identify_widget.cancel()
     self.covers_widget.cancel()
     return QDialog.reject(self)
コード例 #48
0
 def reject(self):
     self.close()
     QDialog.reject(self)
コード例 #49
0
ファイル: progress.py プロジェクト: 089git/calibre
 def reject(self):
     if not self.cancelable:
         return
     QDialog.reject(self)
コード例 #50
0
 def reject(self):
     gprefs.set('single-cover-fetch-dialog-geometry',
                bytearray(self.saveGeometry()))
     self.covers_widget.cancel()
     return QDialog.reject(self)
コード例 #51
0
ファイル: search.py プロジェクト: HaraldGustafsson/calibre
 def reject(self):
     self.save_state()
     return QDialog.reject(self)
コード例 #52
0
ファイル: quickview.py プロジェクト: hashken/calibre
 def reject(self):
     self._close()
     QDialog.reject(self)
コード例 #53
0
ファイル: NanoHive.py プロジェクト: vcsrc/nanoengineer
 def reject(self):
     """
     The slot method for the "Cancel" button.
     """
     QDialog.reject(self)
コード例 #54
0
 def reject(self):
     tprefs.set('preferences_geom', bytearray(self.saveGeometry()))
     QDialog.reject(self)
コード例 #55
0
ファイル: CommentProp.py プロジェクト: vcsrc/nanoengineer
 def reject(self):
     QDialog.reject(self)
     self.comment = None
     self.comment_textedit.setPlainText("") # Clear text.