예제 #1
0
    def initShape(self):
        #Add Value tab
        self.decode = decodeValues(self.heditor)
        self.search = search(self.heditor)
        self.goto = goto(self.heditor)
        self.options = options(self.heditor)

        self.insertTab(0, self.decode, "Decode")
        self.insertTab(1, self.search, QIcon(":hex_search.png"), "Search")
        self.insertTab(2, self.goto, "Goto")
        self.insertTab(3, self.options, QIcon(":hex_opt.png"), "Options")
예제 #2
0
파일: right.py 프로젝트: alepee/dff
    def initShape(self):
        #Add Value tab
        self.decode = decodeValues(self.heditor)
        self.search = search(self.heditor)
        self.goto = goto(self.heditor)
        self.options = options(self.heditor)

        self.insertTab(0, self.decode,"Decode")
        self.insertTab(1, self.search, QIcon(":hex_search.png") ,"Search")
        self.insertTab(2, self.goto, "Goto")
        self.insertTab(3, self.options, QIcon(":hex_opt.png"), "Options")
예제 #3
0
파일: navigation.py 프로젝트: alepee/dff
 def createDecode(self):
     self.vdecode = QVBoxLayout()
     self.decode = decodeValues(self.heditor)
     self.vbox.addWidget(self.decode)
예제 #4
0
 def createDecode(self):
     self.vdecode = QVBoxLayout()
     self.decode = decodeValues(self.heditor)
     self.vbox.addWidget(self.decode)