How to create undo and redo buttons in GUI that can be pressed multiple times?

조회 수: 17 (최근 30일)
Hello everyone! I have a working GUI where I have a undo and redo buttons. I have saved the current and previous states in two variables and implemented them in the respective callbacks. But I can undo and redo for only once. I guess the data is being overwritten everytime. Is there a way around it? Or a easier solution?
Thanks in advance!

채택된 답변

Geoff Hayes
Geoff Hayes 2020년 5월 14일
John - without seeing your code, we can't determine why it is allowing you to undo and redo only once. You mention that you have saved the current and previous states in two variables. Are these scalar variables? If I were to implement redo and undo functionality, then I might use an array of some kind that would push the states to the front of the array so that when I call undo, the front would be popped up and the variables (or whatever) updated with the new front of the array. The popped off data would be pushed to the front of the redo array so that if I chose to call redo, then it's front would be popped off. There is lots more that you would have to consider - when should the redo array be emptied, when should the undo array be emptied, etc.
  댓글 수: 13
Image Analyst
Image Analyst 2020년 5월 17일
Not sure which button is redo, but you can set the Enable property to off in GUIDE by double clicking on the button and changing the Enable property to off. Now when they run it, it will be disabled. Then in the callback for the undo button, you can enable the redo button.
handles.btnRedo.Enable = 'on';
Any time you want to disable it again, you can do this:
handles.btnRedo.Enable = 'off';
Of course, change the name to whatever you called the redo button.
Thanks for Accepting and Voting for Geoff's answer. It's how people earn reputation points and is a good way to thank answerers (of which Geoff is one of the best).
John Doe
John Doe 2020년 5월 17일
편집: John Doe 2020년 5월 18일
Hey, Image Analyst. Tried your technique and it works fine. Thanks!

댓글을 달려면 로그인하십시오.

추가 답변 (0개)

카테고리

Help CenterFile Exchange에서 Calendar에 대해 자세히 알아보기

Community Treasure Hunt

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

Start Hunting!

Translated by