Keyboard interaction with multiple windows opened on GUI
1 回表示 (過去 30 日間)
古いコメントを表示
Emanuele Gandola
2015 年 12 月 1 日
コメント済み: Emanuele Gandola
2015 年 12 月 1 日
Hallo, I have a GUI with multiple functions and with it I can open any images in other "figure" windows. This is the GUI that is named figure1
I can upload images and put links into the list box and execute them one by one. The execute button contains this instruction to run a main function that perform the measurements of the objects present in the figure and show the result on a separate figure.
X = imread(char(Selected_images(Nimg,1)));
fig1 = figure(1);
imageHandle = imshow(X);
%get(fig1, 'WindowKeyPressFcn')
[stats,L,B] = master( Selected_images, path, lengthT,minarea,resolution,X,Nimg);
delete(h);
This is a tipical image
I've been implemented green buttons to keep informations into the images previously opened. For example the mouse position on click on that image.
I've also been implemented with this code keyboard interactions to create shortcut to select the pushButton callback whidhout clic on it.
function figure1_WindowKeyPressFcn(hObject, eventdata, handles)
switch eventdata.Key
case '1'
specie1_Callback(hObject, eventdata, handles)
case '2'
specie2_Callback(hObject, eventdata, handles)
case '3'
specie3_Callback(hObject, eventdata, handles)
case '4'
specie4_Callback(hObject, eventdata, handles)
case '5'
specie5_Callback(hObject, eventdata, handles)
case '6'
specie6_Callback(hObject, eventdata, handles)
case '7'
specie7_Callback(hObject, eventdata, handles)
case '8'
specie8_Callback(hObject, eventdata, handles)
case '9'
specie9_Callback(hObject, eventdata, handles)
end
I'd like to use these key interaction even when an image on figure is highlited and the main windows is in backgroud. Is it possible?
I've also another problem, when I want to set up different values into the text boxes an alert message incoming probably linked with WindowKeyPressFcn function.
Thanks in advance! Emanuele
0 件のコメント
採用された回答
Walter Roberson
2015 年 12 月 1 日
Only the current active figure has its keyboard callback checked.
You can set the same callbacks for all of the figures.
その他の回答 (0 件)
参考
カテゴリ
Help Center および File Exchange で Interactive Control and Callbacks についてさらに検索
製品
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!