GUI "saving' indicator that doesn't affect figure
3 ビュー (過去 30 日間)
古いコメントを表示
I am making a GUI that serves as a tool for researchers in parsing/visualizing data. The work that they do within the GUI needs to be saved at the end of their session. To do this, I am saving the figure that the GUI exists within ( savefig() ). I'd like to create a save indicator, as there are rather large data sets that take significant time to save. However, anything I have tried involves changing the current figure (i.e. set(gcf, 'pointer', 'watch') or changing the text of the save button to "saving..." prior to the execution of the savefig() call) meaning that the watch pointer is stuck on when the saved figure is opened, or the saved figure has a pushbutton labelled "saving...".
Does anyone have any suggestions for how to better approach this? I realize the more elegant way would be to implement a save feature that just saves the data and then a load feature which imports and loads the data, but I am trying to avoid this for other reasons.
0 件のコメント
採用された回答
David Barry
2016 年 12 月 5 日
If you want to display progress then take a look at creating a waitbar. Alternatively you could always create a new figure on top of the one you are saving to display some form of busy status text/icon.
その他の回答 (0 件)
参考
カテゴリ
Help Center および File Exchange で Dialog Boxes についてさらに検索
製品
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!