Esempio n. 1
0
def stop():
    global bActive
    bActive = False
    MapFinderStatusScreen.hide()
    restoreInterface()
    BugUtil.alert(
        BugUtil.getPlainText("TXT_KEY_MAPFINDER_STOPPED") + " - " +
        getCountsText())
Esempio n. 2
0
def doStart(argsList=None):
    try:
        if not bActive:
            start()
        else:
            BugUtil.alert(BugUtil.getPlainText("TXT_KEY_MAPFINDER_ALREADY_RUNNING"))
    except MapFinderError, e:
        MapFinderStatusScreen.hide()
        e.display()
Esempio n. 3
0
def doStart(argsList=None):
    try:
        if not bActive:
            start()
        else:
            BugUtil.alert(
                BugUtil.getPlainText("TXT_KEY_MAPFINDER_ALREADY_RUNNING"))
    except MapFinderError, e:
        MapFinderStatusScreen.hide()
        e.display()
Esempio n. 4
0
def stop():
    global bActive
    bActive = False
    MapFinderStatusScreen.hide()
    restoreInterface()
    BugUtil.alert(BugUtil.getPlainText("TXT_KEY_MAPFINDER_STOPPED") + " - " + getCountsText())