construct-editor icon indicating copy to clipboard operation
construct-editor copied to clipboard

GUI (based on wxPython) for 'construct', which is a powerful declarative and symmetrical parser and builder for binary data.

Results 15 construct-editor issues
Sort by recently updated
recently updated
newest added

Autosize the app to 90% of the screen resolution geometry. It might resolve https://github.com/timrid/construct-editor/issues/33

I have a binary file, and I'd like to define a new stucture of it prior coding. How would I do it?

Workaround to support the GTK ToolKit (Linux) Resolves https://github.com/timrid/construct-editor/issues/28 until a new method is found.

I have a laptop, MBA 14" and window is too large for it. Could you please set at least fully visible if screen is small enough? After a tricky resize,...

My usecase boils down to this: ```py s = c.Struct( 'type' / u32, 'value' / c.Switch(c.this.type, { 1: u32, 2: f32, 3: u32, # will be replaced later }) )...

An error appears if the top left panel of the Construct Editor GUI is quickly changed by selecting a *construct* sample and then pressing a UP or DOWN arrow key,...

Fix Gtk-Warning 'Negative content width' in WxConstructHexEditor Resolves https://github.com/timrid/construct-editor/issues/32

The following error occurs: ` (example.py:46458): Gtk-WARNING **: 15:32:24.623: Negative content width -22 (allocation 12, extents 17x17) while allocating gadget (node button, owner GtkButton) ` Changing the value of 12...

The white text is not visible with a white background when using the dark theme in ubuntu. ![image](https://github.com/timrid/construct-editor/assets/710771/99244b86-0e53-4555-9599-78803bc48c94) ```python import wx import construct as cs from construct_editor.wx_widgets import WxConstructHexEditor constr...

I think it is useful to clear any coloring of performed selection in the hex panel each time an entry is selected in the construct right panel, so that the...