🚀 Big News:Socket Has Acquired Secure Annex.Learn More
Socket
Book a DemoSign in
Socket

python-pyqt5-vstructui

Package Overview
Dependencies
Maintainers
1
Versions
6
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

python-pyqt5-vstructui - pypi Package Compare versions

Comparing version
0.3.3
to
0.4.0
+3
python_pyqt5_vstructui.egg-info/entry_points.txt
[console_scripts]
vstructui = vstructui.scripts.vstructui_bin:main
# -*- coding: utf-8 -*-
# Form implementation generated from reading ui file 'vstructui/vstructui.ui'
#
# Created by: PyQt5 UI code generator 5.5
#
# WARNING! All changes made in this file will be lost!
from PyQt5 import QtCore, QtGui, QtWidgets
class Ui_Form(object):
def setupUi(self, Form):
Form.setObjectName("Form")
Form.resize(690, 651)
self.horizontalLayout = QtWidgets.QHBoxLayout(Form)
self.horizontalLayout.setObjectName("horizontalLayout")
self.splitter = QtWidgets.QSplitter(Form)
self.splitter.setOrientation(QtCore.Qt.Vertical)
self.splitter.setObjectName("splitter")
self.treeView = QtWidgets.QTreeView(self.splitter)
self.treeView.setObjectName("treeView")
self.horizontalLayout.addWidget(self.splitter)
self.retranslateUi(Form)
QtCore.QMetaObject.connectSlotsByName(Form)
def retranslateUi(self, Form):
_translate = QtCore.QCoreApplication.translate
Form.setWindowTitle(_translate("Form", "Form"))
+1
-1
Metadata-Version: 1.0
Name: python-pyqt5-vstructui
Version: 0.3.3
Version: 0.4.0
Summary: PyQt5 vstruct hex viewer widget.

@@ -5,0 +5,0 @@ Home-page: https://github.com/williballenthin/python-pyqt5-vstructui

Metadata-Version: 1.0
Name: python-pyqt5-vstructui
Version: 0.3.3
Version: 0.4.0
Summary: PyQt5 vstruct hex viewer widget.

@@ -5,0 +5,0 @@ Home-page: https://github.com/williballenthin/python-pyqt5-vstructui

@@ -5,2 +5,3 @@ setup.py

python_pyqt5_vstructui.egg-info/dependency_links.txt
python_pyqt5_vstructui.egg-info/entry_points.txt
python_pyqt5_vstructui.egg-info/requires.txt

@@ -15,2 +16,3 @@ python_pyqt5_vstructui.egg-info/top_level.txt

vstructui/vstructui.ui
vstructui/vstructui_auto.py
vstructui/defs/patchbits.py

@@ -17,0 +19,0 @@ vstructui/defs/primitives.py

[egg_info]
tag_build =
tag_date = 0
tag_build =
tag_svn_revision = 0

@@ -8,3 +8,3 @@ #!/usr/bin/env python

setup(name="python-pyqt5-vstructui",
version="0.3.3",
version="0.4.0",
description=description,

@@ -22,2 +22,8 @@ long_description=description,

"defs/*.py",
]})
]},
entry_points={
"console_scripts": [
"vstructui=vstructui.scripts.vstructui_bin:main",
]
},
)

@@ -15,3 +15,2 @@ # TODO: fix bug of bordering zero-length item

from PyQt5 import uic
from PyQt5.QtCore import Qt

@@ -21,2 +20,3 @@ from PyQt5.QtCore import pyqtSignal

from PyQt5.QtWidgets import QAction
from PyQt5.QtWidgets import QWidget
from PyQt5.QtWidgets import QHeaderView

@@ -46,3 +46,5 @@ from PyQt5.QtWidgets import QApplication

from .vstructui_auto import Ui_Form as VstructViewBase
defspath = os.path.join(os.path.dirname(os.path.realpath(__file__)), "defs")

@@ -232,6 +234,2 @@ def get_parsers(defspath=defspath):

uipath = os.path.join(os.path.dirname(os.path.realpath(__file__)), "vstructui.ui")
UI, Base = uic.loadUiType(uipath)
class VstructHexViewWidget(HexViewWidget):

@@ -269,3 +267,3 @@ # args: offset, parser_name

class VstructViewWidget(Base, UI, LoggingObject):
class VstructViewWidget(QWidget, VstructViewBase, LoggingObject):
def __init__(self, parsers, instances, buf, parent=None):

@@ -272,0 +270,0 @@ """ items is a list of VstructItem """