필터 지우기
필터 지우기

Dynamically populating mask parameter popup list

조회 수: 16 (최근 30일)
Arun
Arun 2013년 7월 23일
댓글: checker 2021년 2월 14일
Is it possible to dynamically populate a Simulink mask's popup parameter's list using Dialog callback? Or is this facility static and to be defined while editing the mask?
  댓글 수: 1
Kyle
Kyle 2013년 8월 13일
I would also like to know if this is possible

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

채택된 답변

Arun
Arun 2013년 8월 14일
Actually, I figured this out after hours of experimenting with Mask Parameters. This is one way to do it: You can access the 'MaskStyles' parameter like so:-
myMaskStylesVar = get_param(gcb, 'MaskStyles');
Here you should be able to observe the MaskStyles for each of your parameters as edit, checkbox, DataTypeStr, Minimum, Maximum or ...wait for it... popup! Yes, and 'popup' style is defined as follows:-
popup(menuitem1|menuitem2|menuitem3|...etc)
So you can modify the corresponding cell of myMaskStylesVar with the menu items of your choice and set them back as:-
myMaskStylesVar{1} = 'popup(red|green|blue|yellow)'; % Assuming the popup is the first parameter
set_param(gcb, 'MaskStyles', myMaskStylesVar)
You can add this code at any desired callback. In my case, I put it in 'OpenFcn'. However that led to another issue with the Mask Parameters Dialog not being invoked at the end of the code. So I had to do some crude workaround like below to invoke the Mask Parameter Dialog, but at the same time, not lose my precious code above!
a = get_param(gcb, 'OpenFcn');
set_param(gcb, 'OpenFcn', '');
open_system(gcb); %With no OpenFcn defined, this line will call Mask Parameter Dialog
set_param(gcb, 'OpenFcn', a); %Restore your original OpenFcn code
I am 99.99% sure this issue can be handled in a less comical way than above. But it works for me and my boss doesn't complain!! :)
  댓글 수: 6
Jared Belke
Jared Belke 2019년 6월 26일
편집: Jared Belke 2019년 6월 26일
I know this is super late, but since this is what I work on every day I figured I'd update this for people who see this post now. There is a less comical way to do it. Assume you have some cell array "options" that contains the new list of options that you want to populate the popup list with. You can do the following:
maskObj = Simulink.Mask.get(gcb);
maskObj.getParameter('<Name of Popup List Parameter>').TypeOptions = options;
You can also do many other things with the Mask Object such as dynamically change the Enable field, Visible field, Value field (Or any other field that you can edit in the mask editor) of any Parameter or Dialog Control (E.g. Buttons).
For example:
maskObj.getParameter('<Name of Parameter>').Enabled = 'off';
maskObj.getParameter('<Name of Button>').Visible = 'on';
checker
checker 2021년 2월 14일
Jared, thanks buddy, that's awesome. I've moved from older versions of matlab to 2020 and have been finding lots of new APIs but this one eluded me until I ran across your post.

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

추가 답변 (2개)

Kaustubha Govind
Kaustubha Govind 2013년 8월 14일
I'm not much of an expert in the Simulink Mask area, but I don't think you can dynamically change the contents of a mask. However, you can change the visibility of parameters - so you might want to create multiple popup lists for each configuration and change their visibility in the Dialog Callback.
  댓글 수: 2
Robert
Robert 2015년 1월 20일
If you find this thread, it helps to be clear on what is meant by "Dynamic". I have found that you may dynamically update a mask, e.g. in an OpenFcn callback. However if you wish the mask to be dynamic once open (e.g. two drop-down-lists/popups where the choices in the second depend on the selected value of the first) this does not seem to be possible. However this type of dynamic functionality is achievable via a custom GUI (see GUIDE help).
Matthew
Matthew 2016년 11월 18일
편집: Matthew 2016년 11월 18일
It turns out there is a simple DAStudio functionality that allows masks to be dynamic once open.
dToolRoot = DAStudio.ToolRoot;
openDialogs = dToolRoot.getOpenDialogs;
openDialogs(1).refresh();
Or
blockObject = get_param(gcb,'object');
blockDialog = DAStudio.Dialog(blockObject.getDialogSource);
blockDialog.refresh();
I'll add a full code sample as an answer.

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


Matthew
Matthew 2016년 11월 18일
편집: Matthew 2016년 11월 18일
If you want to update a popdown menu while a mask is open, the following may be helpful:
% Set the parameter index equal to the index specified
% for the desired popup parameter in the mask editor
parameterIndex = 1;
% Get the handle to the mask parameter to modify
maskHandle = Simulink.Mask.get(gcb);
maskParameters = maskHandle.Parameters;
% Update the popup list options
maskParameters(parameterIndex).TypeOptions = {'Option 1', 'Option 2'};
% Now refresh the mask display
%Get the handle to the blocks object
blockObject=get_param(gcb,'object');
%Get the handle to the dialog
blockDialog= DAStudio.Dialog(blockObject.getDialogSource);
%Refresh the dialog
blockDialog.refresh();
Note: Most of the DAStudio commands came from Christian in this answer.

카테고리

Help CenterFile Exchange에서 Author Block Masks에 대해 자세히 알아보기

제품

Community Treasure Hunt

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

Start Hunting!

Translated by