mirror of
https://github.com/cemu-project/idapython.git
synced 2024-11-24 18:16:55 +01:00
36 lines
849 B
Python
36 lines
849 B
Python
from idaapi import PluginForm
|
|
from PyQt4 import QtCore, QtGui
|
|
import sip
|
|
|
|
class MyPluginFormClass(PluginForm):
|
|
def OnCreate(self, form):
|
|
"""
|
|
Called when the plugin form is created
|
|
"""
|
|
|
|
# Get parent widget
|
|
self.parent = self.FormToPyQtWidget(form)
|
|
self.PopulateForm()
|
|
|
|
|
|
def PopulateForm(self):
|
|
# Create layout
|
|
layout = QtGui.QVBoxLayout()
|
|
|
|
layout.addWidget(
|
|
QtGui.QLabel("Hello from <font color=red>PyQt</font>"))
|
|
layout.addWidget(
|
|
QtGui.QLabel("Hello from <font color=blue>IDAPython</font>"))
|
|
|
|
self.parent.setLayout(layout)
|
|
|
|
|
|
def OnClose(self, form):
|
|
"""
|
|
Called when the plugin form is closed
|
|
"""
|
|
pass
|
|
|
|
plg = MyPluginFormClass()
|
|
plg.Show("PyQt hello world")
|