efigure

GUI wrapper for export_fig - add toolbar items to any/all figures
306 descargas
Actualizado 5 oct 2015

Wrapper for export_fig - to add toolbar icons to all figure windows.
efigure - figure with export-fig toolbar icons built in

Add toolbar icons which for saving images
to clipboard (PC only) or to file using export_fig.

Can be used in 2 ways:
1. Automatically add the toolbar items for EVERY future figure.
2. Call it manually every time you want to add the toolbar items to:
A figure
Your own/choice of toolbar

1. To set up for ALL future figures being created
-------------------------------------------------
Put this in startup.m. Then every figure contains the toolbar items.
efigure ( '*setup*' );

When used automatically a few methods to manage usage:

Disable this feature (valid for each matlab session)
efigure ( '*disable*' );

Re-enable it by:
efigure ( '*enable*' );

Reset the default export_fig options in the filechooser dialog:
efigure ( '*reset*' );

Diable capability to add toolbar to all future figures
efigure ( '*resetAll*' );

When creating a new figure -> it will automatically rearrange the
toolbar items to insert the clipboard(pc only) and file save next
to the traditional save icon. You can manage this using:

To stop rearrangement (valid for each matlab session):
efigure ( '*norearrange* );

To reengage the rearrangement:
efigure ( '*rearrange* );


2. Using it manually
----------------------
Use in EXACTLY the same was as you would figure:
This will insert it next to the save button in a standard toolbar
hFig = efigure;
hFig = efigure (gcf);
hFig = efigure (hFig);
hFig = efigure ( 'Name', 'My Figure', arg, val .... );


Add it to a specific toolbar
hFig = figure ( 'Toolbar', 'none' )
hToolbar = uitoolbar ( 'parent', hFig );
efigure(hToolbar)

Any bug reports/feature requests please report via github

Note: This makes use of a lot of undocumented features - please
use with the appropriate caution and knowledge that it may
work differently on different platforms/java etc...

Developed on windows - but should work on other platforms.
Developed in R2015b - but should work in older versions (inc pre 2014b)

Author : Robert Cumming
Copyright: Matpi Ltd
Developers of Matlab GUI Toolbox
- free demo from www.matpi.com or
- https://github.com/robertjcumming/matpigui/releases/download/v1/DEMO-1.0.0.EH.zip
- email: contact @ matpi.com

Citar como

Robert Cumming (2024). efigure (https://github.com/robertjcumming/efigure), GitHub. Recuperado .

Compatibilidad con la versión de MATLAB
Se creó con R2015b
Compatible con cualquier versión
Compatibilidad con las plataformas
Windows macOS Linux
Categorías
Más información sobre Interactive Control and Callbacks en Help Center y MATLAB Answers.
Agradecimientos

Inspirado por: export_fig

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

No se pueden descargar versiones que utilicen la rama predeterminada de GitHub

Versión Publicado Notas de la versión
1.0.0.0

change title.
Updated description
Updated description

Para consultar o notificar algún problema sobre este complemento de GitHub, visite el repositorio de GitHub.
Para consultar o notificar algún problema sobre este complemento de GitHub, visite el repositorio de GitHub.