Skip to content
Snippets Groups Projects
  • jacques.grelet_ird.fr's avatar
    ab2aec14
    %% Check Matlab version for use of KeyPressFcn and KeyReleaseFcn properties · ab2aec14
    jacques.grelet_ird.fr authored
    % -------------------------------------------------------------------------
    switch ( version('-release') )
      case { '11', '12', '13', '14', '2006a', '2006b' }
        % dont process KeyPressFcn and KeyReleaseFcn events
      otherwise
        
       % show crossline when shitf key is pressed, vertical bar when ctrl key
       % --------------------------------------------------------------------
       set( hMainFig, 'KeyPressFcn',   @keyPressFcnCallback,...
                      'KeyReleaseFcn', @keyReleaseFcnCallback);
    end  
    ab2aec14
    History
    %% Check Matlab version for use of KeyPressFcn and KeyReleaseFcn properties
    jacques.grelet_ird.fr authored
    % -------------------------------------------------------------------------
    switch ( version('-release') )
      case { '11', '12', '13', '14', '2006a', '2006b' }
        % dont process KeyPressFcn and KeyReleaseFcn events
      otherwise
        
       % show crossline when shitf key is pressed, vertical bar when ctrl key
       % --------------------------------------------------------------------
       set( hMainFig, 'KeyPressFcn',   @keyPressFcnCallback,...
                      'KeyReleaseFcn', @keyReleaseFcnCallback);
    end