-
Notifications
You must be signed in to change notification settings - Fork 28
Expand file tree
/
Copy pathStatSTEM.m
More file actions
200 lines (172 loc) · 7.24 KB
/
StatSTEM.m
File metadata and controls
200 lines (172 loc) · 7.24 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
%%
function StatSTEM()
% StatSTEM is a interactive program to evaluate HAADF STEM images
%
% This function start up a graphical user interface in which images can
% be loaded and evaluated
%
% syntax: StatSTEM
%
%--------------------------------------------------------------------------
% This file is part of StatSTEM
%
% Copyright: 2018, EMAT, University of Antwerp
% Author: K.H.W. van den Bos
% License: Open Source under GPLv3
% Contact: sandra.vanaert@uantwerpen.be
%--------------------------------------------------------------------------
% Start a splash screen
if isdeployed
splashImg = imread('splash.png');
imgPan = imread('imgGui.png');
else
% Load functions
path = mfilename('fullpath');
path = path(1:end-9);
pathF = [path,filesep,'functions']; % Path for loading fit functions
pathG = [path,filesep,'GUI']; % Path for loading GUI functions
addpath([path,';',genpath(pathF),';',genpath(pathG)])
imgPan = imread([pathG,filesep,'imgGui.png']);
splashImg = imread([pathG,filesep,'splash.png']);
spl = splash(splashImg);
end
% Check matlab version, and switch opengl
v = version('-release');
v = str2double(v(1:4));
if ispc
warning off all
warning on all
end
% Set OpenGL hardware rendering for MATLAB versions that support it
v = str2double(version('-release'));
if v < 2026
opengl hardware
end
% The structure 'h' will be the main structure containing all the
% references to all structures of the GUI
screen = get(0,'ScreenSize');
% Create figure
% screen = [200 200 200 200];
h.fig = figure('units','pixels','outerposition',[screen(3)/2-400 screen(4)/2-300 800 600],'Name','StatSTEM','NumberTitle','off','Visible','off');
% Create main panels
h.left.main = uipanel('Parent', h.fig, 'units', 'normalized', 'Position', [0 0 0.25 1],'BackgroundColor',[0.95,0.95,0.95]);
h.right.main = uipanel('Parent', h.fig, 'units', 'normalized', 'Position', [0.25 0 0.75 1],'BackgroundColor',[0.7 0.7 0.7]);
%% Turn off buttons GUI
h = turnOffUnwantedFigOpt(h);
%% Left main panel
warning('off','all')
if isunix
h.left.tabgroup = uitabgroup(h.left.main,'units','normalized','Position',[-0.04 0.35 1.07 0.65]);
else
h.left.tabgroup = uitabgroup(h.left.main,'units','normalized','Position',[0 0.35 1 0.65]);
end
h.left.prep.tab = uitab(h.left.tabgroup,'Title','Preparation');
h.left.fit.tab = uitab(h.left.tabgroup,'Title','Fit Model');
h.left.ana.tab = uitab(h.left.tabgroup,'Title','Analysis');
warning('on','all')
% Create left panels
h = panelMaker(h,'Preparation',isdeployed);
h = panelMaker(h,'Fit Model',isdeployed);
h = panelMaker(h,'Analysis',isdeployed);
% Create panel for loading and storing files
h.left.loadStore.panel = uipanel('Parent',h.left.main,'units','normalized','Position',[0 0 1 0.1],'Title','Load/save files','FontSize',10);%,'BorderColor',[0.95 0.95 0.95],'ForegroundColor',[0.95 0.95 0.95],'HighlightColor',[0.95 0.95 0.95],'BackgroundColor',[0.95 0.95 0.95]);
h.left.loadStore.load = uicontrol('Parent',h.left.loadStore.panel,'units','normalized','Position',[0.02 0.2 0.47 0.75],'String','Load','FontSize',10);
h.left.loadStore.save = uicontrol('Parent',h.left.loadStore.panel,'units','normalized','Position',[0.49 0.2 0.47 0.75],'String','Save','FontSize',10,'Enable','off');
h = panelStatSTEM(h,imgPan);
%% Create right panels
% Tabgroup for images
warning('off','all')
h.right.tabgroup = uitabgroup(h.right.main,'units','normalized','Position',[0 0.1 1 0.9]);
% Dimensions of panels
% tabs.PathName = h.PathName;
tabs.dim_x = 150;
tabs.dim_y = [50;90];%[22;50];
set(h.right.tabgroup,'Userdata',tabs);
createEmptyTab(h.right.tabgroup)
userdata = get(h.right.tabgroup,'Userdata');
userdata.callbackrunning = false; userdata.function = []; % For peak location routines
set(h.right.tabgroup,'Userdata',userdata);
warning('on','all')
% Create panel for messages
h.right.message.panel = uipanel('Parent',h.right.main,'units','normalized','Position',[0 0 0.7 0.1],'Title','Messages:','ForegroundColor','r','FontSize',10);
h = messagePanel(h);
% Create panel for progress bar
h.right.progress.panel = uipanel('Parent',h.right.main,'units','normalized','Position',[0.7 0 0.3 0.1],'Title','Progress:','ForegroundColor',[51/255,153/255,255/255],'FontSize',10);
[h.right.progress.jBar, h.right.progress.mBar] = createProgressbar(h.right.progress.panel,[0.003 0 0.994 1]);
%% Rescale everything
% Rescale tabgroup
drawnow
set(h.left.main,'units','pixels')
pos = get(h.left.main,'Position');
set(h.left.main,'units','normalized')
scale_y = 58/pos(4);
set(h.left.tabgroup,'Position',[0 scale_y 1 1-scale_y])
set(h.right.tabgroup,'Position',[0 scale_y 1 1-scale_y])
set(h.left.loadStore.panel,'Position',[0 0 1 scale_y])
set(h.right.message.panel,'Position',[0 0 0.7 scale_y])
set(h.right.progress.panel,'Position',[0.7 0 0.3 scale_y])
% Rescale panels
userdata = get(h.right.tabgroup,'Userdata');
tabs = get(h.right.tabgroup,'Children');
set(tabs(1),'units','pixels')
drawnow
pos_r = get(tabs(1),'Position');
set(tabs(1),'units','normalized')
scale_x = userdata.dim_x/pos_r(3);
scale_y = [userdata.dim_y;pos_r(4)-sum(userdata.dim_y)]/pos_r(4);
for n=1:length(tabs)
% Get handle of tabs
usr = get(tabs(n),'Userdata');
set(usr.images.main,'Position',[0 0 1-scale_x(1) 1])
% set(usr.figOptions.title.main,'Position',[1-scale_x(1) scale_y(1)+scale_y(2) scale_x(1) scale_y(1)]);
set(usr.figOptions.selImg.main,'Position',[1-scale_x(1) scale_y(1)+scale_y(2)+scale_y(3)/2 scale_x(1) scale_y(3)/2]);
set(usr.figOptions.selOpt.main,'Position',[1-scale_x(1) scale_y(1)+scale_y(2) scale_x(1) scale_y(3)/2]);
set(usr.figOptions.optFig.main,'Position',[1-scale_x(1) scale_y(1) scale_x(1) scale_y(2)]);
set(usr.figOptions.export.main,'Position',[1-scale_x(1) 0 scale_x(1) scale_y(1)]);
end
% After the addition of panels, check figure size
h.fig_size = get(h.fig,'Position');
guidata(h.fig, h);
t = timer('ExecutionMode','fixedRate','Period',0.25,'Tag','StatSTEM_resizeTimer',...
'StartDelay', 1, ...
'TimerFcn',@(t,e) statStemResizeCheck(t,h.fig));
start(t);
%% Create calllback functions
createCallbacks(h,true)
% Update state buttons
updateLeftPanels(h)
%% Make screen visible and insert java image
% Limit minimum size and make window appear on full screen
% set(h.fig,'Position',[1 1 screen(3) screen(4)])
set(h.fig,'Visible','on')
if ~isdeployed
close(spl) % Close splash window
end
% waitfor(h.fig,'Visible','on')
% warning('off','MATLAB:HandleGraphics:ObsoletedProperty:JavaFrame');
% jFrame = get(handle(h.fig), 'JavaFrame');
% % Change icon of window
% splashImg = im2java(splashImg);
% jicon=javax.swing.ImageIcon(splashImg);
% jFrame.setFigureIcon(jicon);
% jProx = [];
% while isempty(jProx)
% pause(0.01)
% if v<2015
% jProx = jFrame.fHG1Client.getWindow();
% else
% jProx = jFrame.fHG2Client.getWindow();
% end
% end
% jProx.setMinimumSize(java.awt.Dimension(800, 600));
waitfor(h.fig,'Visible','on')
% JavaFrame, im2java and minimum size enforcement removed for MATLAB 2022b+ compatibility
set(h.fig, 'SizeChangedFcn', @(src,~) enforceMinSize(src, 800, 600));
function enforceMinSize(fig, minW, minH)
pos = get(fig, 'Position');
changed = false;
if pos(3) < minW; pos(3) = minW; changed = true; end
if pos(4) < minH; pos(4) = minH; changed = true; end
if changed; set(fig, 'Position', pos); end
end
end