Code covered by the BSD License  

Highlights from
popupPanel Displays a popup panel with specified help topic, HTML or webpage

Be the first to rate this file! 18 Downloads (last 30 days) File Size: 5.13 KB File ID: #25975
image thumbnail

popupPanel Displays a popup panel with specified help topic, HTML or webpage

by Yair Altman

 

29 Nov 2009 (Updated 28 Jun 2013)

popupPanel Displays a popup panel with specified help topic, HTML or webpage

| Watch this File

File Information
Description

Syntax:
     hPopupPanel = popupPanel(contents, position, highlightedWords)
 
Description:

popupPanel(CONTENTS) displays Matlab's help popup (available on Matlab releases R2007b onward) with the specified CONTENTS, which is one of:
    - Help topic string (e.g. 'surf' or 'myFunction')
    - HTML text (e.g. '<b>bold</b> <i>italic</i> text')
    - Webpage URL (e.g. 'UndocumentedMatlab.com')
    - text filename (e.g. 'my_data.txt')
 
popupPanel(CONTENTS,POSITION) indicates the panel's position and size in screen-relative regular Matlab format: [x,y,width,height]. If POSITION is empty or unspecified, then [x,y,500,300] is assumed, where (x,y) is the current pointer's location.
 
popupPanel(CONTENTS,POSITION,HIGHLIGHTEDWORDS) specifies a string term or cell-array of string terms that should be highlighted in the presented panel's CONTENTS. This feature is not supported in R2013a and later.
 
hPopupPanel = popupPanel(...) returns the Java handle reference of the created panel, allowing access to many useful properties and callbacks. Type "get(hPopupPanel)", "methodsview(hPopupPanel)" for details.
 
Examples:
   popupPanel('surf'); % display the specified doc page
   popupPanel('myFunction'); % display a user-created help topic
   popupPanel('myFunction.m'); % display a user-created help topic
   popupPanel('<b>bold</b> <i>italic</i> text'); % display HTML text
   popupPanel('C:\localTextPage.txt'); % display a local file
   popupPanel('localWebPage.html'); % display a local webpage
   popupPanel('UndocumentedMatlab.com'); % display an online webpage
   popupPanel('surf',[200,300,400,500]); % display 400x500 popup at [200,300]
   popupPanel('surf',[],'surface'); % display popup, highlight 'surface' terms
   popupPanel('surf',[],{'surface','surfc'}); % highlight several terms

Warning:
   This code heavily relies on undocumented and unsupported Matlab functionality. It works on Matlab 7.5+ (R2007b+), but use at your own risk!
 
Bugs and suggestions:
   Please send to Yair Altman (altmany at gmail dot com)

Technical details of the implementation can be found at http://undocumentedmatlab.com/blog/customizing-help-popup-contents

MATLAB release MATLAB 7.5 (R2007b)
Other requirements Java and the Desktop should be enabled (which they are normally)
Tags for This File  
Everyone's Tags
gui
Tags I've Applied
Add New Tags Please login to tag files.
Please login to add a comment or rating.
Updates
01 Dec 2009

Fixed compatibility issue with R2009 highlightedTerms

28 Jun 2013

Several fixes for modern Matlab releases

Contact us