Matlab:与uicontrol / axis的“相对”位置;调整大小时保持固定边距

时间:2011-12-14 20:05:55

标签: user-interface matlab resize figure uicontrol

我目前非常头疼地让一个小的GUI工作得很好,这不是用GUI编辑器创建的,而是以编程方式创建的!到目前为止我所拥有的内容如下:

hFig = figure();
set(hFig, 'Position', [300 200 500 400]);
plot((1:10).^2, '*-r');

% Größe des Plots so anpassen, dass links Platz für Buttons
ap = get(gca, 'TightInset');
fp = get(gcf, 'Position');
set(gca, 'Position', [160/fp(3), 30/fp(4), (fp(3)-180)/fp(3), (fp(4)-60)/fp(4)]);

uicontrol('Style', 'pushbutton', 'String', 'foo', 'Position', [15 fp(4)-60 110 30]); 
uicontrol('Style', 'pushbutton', 'String', 'bar', 'Position', [15 fp(4)-100 110 30]); 

尝试调整它的大小:它看起来不一样,这意味着uicontrol框不会保持在相同的相对位置,并且从轴到图窗口的边距会变大。我想要实现的是:

有一个带有给定位置(x / y,宽度和高度)的图形窗口,里面有一个图。该图将具有x和y的标题和标签。将图形设置为高度和宽度,使得TightInset加上某个px尺寸(例如TightInset + 10px)的每个方向上的边距与图窗口一样大;除了在左边放置150px的自由空间以放置一些uicontrol按钮,并让它们保持在相同的位置:这与能够从顶部/左边(顶部= 20,左边= 10)给出位置相同底部/左侧。

非常感谢!

3 个答案:

答案 0 :(得分:5)

好的,终于找到了一个我希望它的工作解决方案:-)希望对有兴趣的人有所帮助:

主脚本文件:

p = [300 300 1000 600];
fixedMargins = [250 0 0 0]; % [left, top, right, bottom]
f = figure('Position', p, 'Color', [0.9 0.9 0.9]);
plot(-10:10, (-10:10).^3, '*-r');
set(f, 'ResizeFcn', {@resizeCallback, gca, fixedMargins, {@myuiFunc, f, 40, 50}});

title('bla')
xlabel('foooooooooo')
ylabel('barrrrrrr')

调整回调函数:

% Need to pass the handle of the axis to modify (hAx) AND to pass the
% desired margins as second extra callback argument: 
% [left, top, right, bottom]!
function resizeCallback(hFig, ~, hAx, fixedMargins, func)    
    % Disable automatic rezising
    set(hAx, 'Units', 'pixels');

    % Figure-Size
    fp = get(hFig, 'Position');

    % Calculate Position of the axis
    margin = get(hAx, 'TightInset') * [-1 0 1 0; 0 -1 0 1; 0 0 1 0; 0 0 0 1];

    % Position to fill the figure minus the TightInset-Margin
    newPos = [0 0 fp(3:4)] - margin;

    % Change position based on margins
    newPos(1) = newPos(1) + fixedMargins(1);
    newPos(3) = newPos(3) - fixedMargins(1) - fixedMargins(3);
    newPos(2) = newPos(2) + fixedMargins(4);
    newPos(4) = newPos(4) - fixedMargins(2) - fixedMargins(4);

    % Set new position
    set(hAx, 'Position', newPos);

    % Call UI-Func
    if(nargin == 5)
        f = func{1};
        args = func(2:end);
        f(args{:});
    end
end

您可以在调整图形窗口大小时传递您想要调用的任何函数,例如更新图中的内容。在我的例子中,它是myuiFunc(),它是以下内容:

function myuiFunc(hFig, left, top)
    persistent handles;

    if(~isempty(handles))
        delete(handles);
        handles = [];
    end

    fp = get(hFig, 'Position');
    h1 = uicontrol('Style', 'pushbutton', 'String', 'Foo','Position', [left fp(4)-top 100 35]);
    h2 = uicontrol('Style', 'pushbutton', 'String', 'Bar','Position', [left fp(4)-top-50 100 35]);
    handles = [h1 h2];
end

我喜欢它:)希望你也是!

编辑:无需编辑resizeCallback函数!如果您只是将所需的边距传递给它,并且如果您愿意,还可以使用带有参数的函数句柄,每个调整大小都会调用它们!

答案 1 :(得分:1)

您也可以使用“标准化”单位。

答案 2 :(得分:1)

uicontrol('Style', 'pushbutton', 'String', 'foo', 'Units','normalized','Position', [0.90 0.05 0.08 0.08] );