##// END OF EJS Templates
Bug fixed: AMISR Reader filling with zeros at the begining of the processing....
Bug fixed: AMISR Reader filling with zeros at the begining of the processing. Updated: PrintInfo, print the info about AMISR Properties only one time. AMISR Reader, there is a new inut to set timezone 'lt' or 'ut', by default is 'ut' Removing sentences from figure.py to import customftp module.

File last commit:

r235:47f976225757
r497:85140003652c
Show More
unitprocess.py
58 lines | 1.4 KiB | text/x-python | PythonLexer
# -*- coding: utf-8 -*-
"""
Module implementing MainWindow.
"""
from PyQt4.QtGui import QMainWindow
from PyQt4.QtCore import pyqtSignature
from viewer.ui_unitprocess import Ui_UnitProcess
class UnitProcess(QMainWindow, Ui_UnitProcess):
"""
Class documentation goes here.
"""
def __init__(self, parent = None):
"""
Constructor
"""
QMainWindow.__init__(self, parent)
self.setupUi(self)
@pyqtSignature("QString")
def on_comboInputBox_activated(self, p0):
"""
Slot documentation goes here.
"""
# TODO: not implemented yet
raise NotImplementedError
@pyqtSignature("QString")
def on_comboTypeBox_activated(self, p0):
"""
Slot documentation goes here.
"""
# TODO: not implemented yet
raise NotImplementedError
@pyqtSignature("")
def on_unitPokbut_clicked(self):
"""
Slot documentation goes here.
"""
# TODO: not implemented yet
#raise NotImplementedError
print "this is suspiscious"
print "njdasjdajj"
@pyqtSignature("")
def on_unitPcancelbut_clicked(self):
"""
Slot documentation goes here.
"""
# TODO: not implemented yet
raise NotImplementedError