예제 #1
0
파일: timeline.py 프로젝트: halbbob/dff
 def __init__(self):
   Script.__init__(self, 'timeline')
   QWidget.__init__(self, None)
   self.type = 'timeline'
   self.nodeCount = 0
   self.timesCount = 0
   self.timeMap = {}
   self.m = 40 # Padding
   self.lineHeight = 4 # Pixel height of line
   self.metricOk = False
   self.colors = [['blue', Qt.blue], ['red', Qt.red],
                  ['green', Qt.green], ['yellow', Qt.yellow],
                  ['magenta', Qt.magenta], ['cyan', Qt.cyan]]
   self.stateinfo = 'Initialized'
   self.dateMin = long(0xffffffffffffffff)
   self.dateMax = long(0)
   self.baseDateMin = self.dateMin
   self.baseDateMax = self.dateMax
   self.selDateMin = None
   self.selDateMax = None
   self.maxOcc = 0
   self.maxOccZoom = 0
   self.xHop = 0
   self.xRange = 0
   self.dataListsCreated = False
예제 #2
0
파일: batch.py 프로젝트: halbbob/dff
 def __init__(self):
   Script.__init__(self, "batch")
   self.tm = TaskManager()
   self.DEBUG = False
   self.VERBOSITY = 0
   self.lp = LineParser(self.DEBUG, self.VERBOSITY -1)
   self.cm = ConfigManager.Get()
예제 #3
0
파일: viewerimage.py 프로젝트: halbbob/dff
 def __init__(self):
   Script.__init__(self, "viewerimage")
   self.type = "imageview"
   self.icon = None
   self.vfs = vfs.vfs()
   self.reg_viewer = re.compile(".*(JPEG|JPG|jpg|jpeg|GIF|gif|bmp|png|PNG|pbm|PBM|pgm|PGM|ppm|PPM|xpm|XPM|xbm|XBM|TIFF|tiff).*", re.IGNORECASE)
   self.sceneWidth = 0
예제 #4
0
파일: pdf.py 프로젝트: udgover/pdfview
 def __init__(self):
   Script.__init__(self, "pdf")
   self.type = "pdfviewer"
예제 #5
0
파일: player.py 프로젝트: halbbob/dff
 def __init__(self):
    Script.__init__(self, "player")
    self.vfs = vfs.vfs() 
예제 #6
0
파일: carverui.py 프로젝트: halbbob/dff
 def __init__(self):
     Script.__init__(self, "carverui")
     self.tm = TaskManager()
예제 #7
0
파일: post_process.py 프로젝트: halbbob/dff
 def __init__(self):
   Script.__init__(self, "post_process")
   self.tm = TaskManager()
예제 #8
0
파일: metaexif.py 프로젝트: halbbob/dff
 def __init__(self):
  Script.__init__(self, "metaexif")
  self.handler = EXIFHandler() 
예제 #9
0
파일: carvergui.py 프로젝트: halbbob/dff
 def __init__(self):
     Script.__init__(self, "carver-gui")
예제 #10
0
파일: hexeditor.py 프로젝트: halbbob/dff
 def __init__(self):
     Script.__init__(self, "hexedit")
     self.type = "hexedit"