Esempio n. 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")
Esempio n. 2
0
File: right.py Progetto: 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")
Esempio n. 3
0
 def createDecode(self):
     self.vdecode = QVBoxLayout()
     self.decode = decodeValues(self.heditor)
     self.vbox.addWidget(self.decode)
Esempio n. 4
0
 def createDecode(self):
     self.vdecode = QVBoxLayout()
     self.decode = decodeValues(self.heditor)
     self.vbox.addWidget(self.decode)