R
R-packages
Català-Valencià – Catalan
中文 – Chinese (Simplified)
中文 – Chinese (Traditional)
Česky – Czech
Dansk – Danish
Nederlands – Dutch
English – English
Suomi – Finnish
Français – French
Deutsch – German
עברית – Hebrew
हिंदी – Hindi
Magyar – Hungarian
Bahasa Indonesia – Indonesian
Italiano – Italian
日本語 – Japanese
한국어 – Korean
Македонски – Macedonian
मराठी – Marathi
Norsk – Norwegian
Polski – Polish
Português – Portuguese
Português – Portuguese (Brazil)
Русский – Russian
Slovenčina – Slovak
Slovenščina – Slovenian
Español – Spanish
Svenska – Swedish
Türkçe – Turkish
Українська – Ukrainian
Oëzbekcha – Uzbek
The R Project SVN
R-packages
(root)
/
trunk
/
Mac-GUI
/
Tools
/
RTooltip.m
– Rev 6238
Rev
Show changed files
|
Details
|
Compare with Previous
|
Blame
|
RSS feed
Filtering Options
From rev
To rev
Max revs
Search history for
Show All
Rev
Age
Author
Path
Log message
Diff
6238
5085 d 7 h
bibiko
/trunk/Mac-GUI/
• added Code Folding of { ... } multi-line blocks in R Script Editor; see gutter and/or Menu > Format > Code Folding > ...
6116
5265 d 1 h
bibiko
/trunk/Mac-GUI/
• added RTooltip to allow to display a tooltip programmatically; it can display plain text (type=text), any HTML code (type=html), or an NSImage (type=image)
- minimal example: [RTooltip showWithObject:@"Hello World"]
• added RChooseMenuItemDialog to allow to display a frameless menu (like a context menu) listing the passed items; it returns the selected item index or -1 if user pressed ESC
- minimal example:
[RChooseMenuItemDialog withItems:
[NSArray arrayWithObjects:@"item0", @"item1", nil] atPosition:[NSEvent mouseLocation]]