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)
/
branches
/
MacGUI-2-x
/
RDocumentWinCtrl.h
– Rev 6453
Rev
Hide 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
Changes
6453
4892 d 3 h
ripley
/branches/MacGUI-2-x/
branch
/branches/MacGUI-2-x
6245
5081 d 4 h
bibiko
/trunk/Mac-GUI/
• Improved handling of larger documents
• Fixed a crash if the R script editor has to handle _very_ long lines
/trunk/Mac-GUI/NEWS
/trunk/Mac-GUI/NSTextView_RAdditions.m
/trunk/Mac-GUI/RDocumentWinCtrl.h
/trunk/Mac-GUI/RDocumentWinCtrl.m
/trunk/Mac-GUI/RScriptEditorTextView.h
/trunk/Mac-GUI/RScriptEditorTextView.m
/trunk/Mac-GUI/RSymbolTokens.l
/trunk/Mac-GUI/RTextView.m
6059
5288 d 23 h
bibiko
/trunk/Mac-GUI/
• further improvements for Format R Code
- keep users empty lines since (but clean them)
- sped it up a bit
- fixed mixing indentation of 4 and 2 spaces coming from deparse()
• avoid re-entering Rd tools or R code formatting methods
• made deparse's width.cutoff customizable via Pref key RScriptEditorFormatWidthCutoff; if set to 0 the window's width will be taken otherwise the user's setting
/trunk/Mac-GUI/NSString_RAdditions.m
/trunk/Mac-GUI/PreferenceKeys.h
/trunk/Mac-GUI/RDocument.h
/trunk/Mac-GUI/RDocument.m
/trunk/Mac-GUI/RDocumentWinCtrl.h
/trunk/Mac-GUI/RDocumentWinCtrl.m
/trunk/Mac-GUI/RTextView.m
6051
5291 d 22 h
bibiko
/trunk/Mac-GUI/
• In R Script editor pressing ENTER after a simple if(), for(), while(), or function() clause or if current line has more opened parenthesis than closed will only indent the next line. This behavior is active for preference setting "Indent new lines". In addition it can be explicitly disabled if you execute the following command in the Terminal:
defaults write org.R-project.R RScriptEditorIndentNewLineAfterSimpleClause -string NO
• started to implement a "Tidy R Code" function to tidy up and format selected R code or the entire document. The idea is to wrap the selected R code by "dummy<-function(){" and "}" which will be sourced and dumped by a separate R session. Instances of "}\nelse" will be replaced by "} else" to be able to source the tidied R code. The main problem by using the R function "dump()" with "options(keep.source = FALSE)" is that any comments will be removed. To avoid this each comment will be replaced by "if(@_@_@_@the_comment){}" before the code will be sourced. This allows us to keep and indent comments even for simple if() clauses to come e.g. with
if(a==2)
#comment
print(a)
foo(..)
The only remained problem which has to be solved is the comment after a R expression like:
print(2) # print two
which will be fixed soon.
/trunk/Mac-GUI/NEWS
/trunk/Mac-GUI/PreferenceKeys.h
/trunk/Mac-GUI/RDocumentWinCtrl.h
/trunk/Mac-GUI/RDocumentWinCtrl.m
6026
5302 d 1 h
bibiko
/trunk/Mac-GUI/
• further work on Rd support:
- added to main menu: New Rd Document ⌥⌘N
- added to Rd toolbox:
-- Insert Function Rd Template ^⌥⌘F (done via prompt())
-- Insert Data Rd Template ^⌥⌘D (done via prompt())
-- Check Rd Document ^⌥⌘C
-- assigned key equivalents to PDF/HTML Preview ^⌥⌘P/^⌥⌘H
- improved output of possible warnings or errors while Rd check
-- re-format output for better reading
-- tries to figure out where the first error/warning appears and jump to it after dismissing the alert
• minor code improvements and removing of forgotten debug outputs
/trunk/Mac-GUI/English.lproj/MainMenu.xib
/trunk/Mac-GUI/English.lproj/RDocument.xib
/trunk/Mac-GUI/RController.m
/trunk/Mac-GUI/RDocument.h
/trunk/Mac-GUI/RDocument.m
/trunk/Mac-GUI/RDocumentController.h
/trunk/Mac-GUI/RDocumentController.m
/trunk/Mac-GUI/RDocumentWinCtrl.h
/trunk/Mac-GUI/RDocumentWinCtrl.m
/trunk/Mac-GUI/de.lproj/MainMenu.xib
/trunk/Mac-GUI/de.lproj/RDocument.xib
/trunk/Mac-GUI/fr.lproj/MainMenu.xib
/trunk/Mac-GUI/fr.lproj/RDocument.xib
/trunk/Mac-GUI/it.lproj/MainMenu.xib
/trunk/Mac-GUI/it.lproj/RDocument.xib
/trunk/Mac-GUI/ja.lproj/MainMenu.xib
/trunk/Mac-GUI/ja.lproj/RDocument.xib
/trunk/Mac-GUI/nl.lproj/MainMenu.xib
/trunk/Mac-GUI/nl.lproj/RDocument.xib
6010
5304 d 19 h
bibiko
/trunk/Mac-GUI/
• Improved function name parsing for toolbar list:
- 3 times faster and much more flexible and precise
by using a flex grammar
- invalid function names were displayed in red
- trial to avoid listing of function declarations
inside argument lists
- hierarchic indentations for function declarations
inside other functions
- added two pragma marker for structuring the
function list (known from C and others):
"#pragma mark -" will insert a separator line
"#pragma mark foo" will insert "foo" in blue
[note: both pragma marker have to be typed at
the beginning of a line]
/trunk/Mac-GUI/RSymbolTokens.h
/trunk/Mac-GUI/RSymbolTokens.l
/trunk/Mac-GUI/NEWS
/trunk/Mac-GUI/R.xcodeproj/project.pbxproj
/trunk/Mac-GUI/RDocumentWinCtrl.h
/trunk/Mac-GUI/RDocumentWinCtrl.m
6005
5305 d 21 h
bibiko
/trunk/Mac-GUI/
• added "Rd Toolbox" pull down menu to Rd Toolbar
/trunk/Mac-GUI/English.lproj/RDocument.xib
/trunk/Mac-GUI/RDocumentWinCtrl.h
/trunk/Mac-GUI/RDocumentWinCtrl.m
/trunk/Mac-GUI/RdEditorToolbar.h
/trunk/Mac-GUI/RdEditorToolbar.m
/trunk/Mac-GUI/de.lproj/RDocument.xib
/trunk/Mac-GUI/fr.lproj/RDocument.xib
/trunk/Mac-GUI/it.lproj/RDocument.xib
/trunk/Mac-GUI/ja.lproj/RDocument.xib
/trunk/Mac-GUI/nl.lproj/RDocument.xib
5995
5311 d 14 h
bibiko
/trunk/Mac-GUI/
• further work for Rd support
- initial work on syntax highlighting
- applied (un)comment functionality
- implemented first stage of completion mode for \foo macros
- improved section parsing
- improved HTML preview
• fixed issue for R code completion if a '\' occurs i.e. it has to be escaped
/trunk/Mac-GUI/RDocument.m
/trunk/Mac-GUI/RDocumentWinCtrl.h
/trunk/Mac-GUI/RDocumentWinCtrl.m
/trunk/Mac-GUI/RScriptEditorTextView.m
/trunk/Mac-GUI/RTextView.h
/trunk/Mac-GUI/RTextView.m
/trunk/Mac-GUI/RdScriptEditorTokens.h
/trunk/Mac-GUI/RdScriptEditorTokens.l
/trunk/Mac-GUI/Tools/CodeCompletion.m
5993
5312 d 19 h
bibiko
/trunk/Mac-GUI/
• initial commit to support "Rd Documention File" editing; not yet fully implemented but workable
- Rd files are assigned to R.app
- Rd file editor has its own toolbar and added "HTML Preview"
- Rd file will be parsed to build section list for pop-menu in toolbar (same approach as for function list of R files)
... work in progress
/trunk/Mac-GUI/RdEditorToolbar.h
/trunk/Mac-GUI/RdEditorToolbar.m
/trunk/Mac-GUI/HelpManager.h
/trunk/Mac-GUI/HelpManager.m
/trunk/Mac-GUI/Info.plist
/trunk/Mac-GUI/R.xcodeproj/project.pbxproj
/trunk/Mac-GUI/RDocument.h
/trunk/Mac-GUI/RDocument.m
/trunk/Mac-GUI/RDocumentController.h
/trunk/Mac-GUI/RDocumentWinCtrl.h
/trunk/Mac-GUI/RDocumentWinCtrl.m
/trunk/Mac-GUI/RScriptEditorTextView.h
/trunk/Mac-GUI/RScriptEditorTextView.m
5772
5557 d 4 h
bibiko
/trunk/Mac-GUI/
• improved readability of the statusbars
- if content won't be show in multiple lines it will be displayed centered otherwise display at least two lines
- added tooltip
/trunk/Mac-GUI/RController.m
/trunk/Mac-GUI/RDocumentWinCtrl.h
/trunk/Mac-GUI/RDocumentWinCtrl.m
5732
5596 d 17 h
urbaneks
/trunk/Mac-GUI/
merge up to r147 including full l18n update
/trunk/Mac-GUI/Translated.strings/EditorPrefPane.fr.strings
/trunk/Mac-GUI/Translated.strings/SelectEncodingsPanel.de.strings
/trunk/Mac-GUI/Translated.strings/SelectEncodingsPanel.fr.strings
/trunk/Mac-GUI/Translated.strings/SelectEncodingsPanel.it.strings
/trunk/Mac-GUI/Translated.strings/SelectEncodingsPanel.ja.strings
/trunk/Mac-GUI/Translated.strings/SelectEncodingsPanel.nl.strings
/trunk/Mac-GUI/Translated.strings/SyntaxColorsPrefPane.fr.strings
/trunk/Mac-GUI/Translated.strings/Vignettes.de.strings
/trunk/Mac-GUI/Translated.strings/Vignettes.fr.strings
/trunk/Mac-GUI/Translated.strings/Vignettes.it.strings
/trunk/Mac-GUI/AMPrefs/AMPreferenceWindowController.m
/trunk/Mac-GUI/English.lproj/Localizable.strings
/trunk/Mac-GUI/English.lproj/MainMenu.xib
/trunk/Mac-GUI/English.lproj/RDocument.xib
/trunk/Mac-GUI/HelpManager.h
/trunk/Mac-GUI/HelpManager.m
/trunk/Mac-GUI/RController.h
/trunk/Mac-GUI/RController.m
/trunk/Mac-GUI/RDocumentWinCtrl.h
/trunk/Mac-GUI/RDocumentWinCtrl.m
/trunk/Mac-GUI/REngine/REngine.m
/trunk/Mac-GUI/RTextView.m
/trunk/Mac-GUI/Translated.strings/ColorsPrefPane.de.strings
/trunk/Mac-GUI/Translated.strings/EditorPrefPane.de.strings
/trunk/Mac-GUI/Translated.strings/EditorPrefPane.it.strings
/trunk/Mac-GUI/Translated.strings/EditorPrefPane.ja.strings
/trunk/Mac-GUI/Translated.strings/EditorPrefPane.nl.strings
/trunk/Mac-GUI/Translated.strings/MainMenu.de.strings
/trunk/Mac-GUI/Translated.strings/MainMenu.fr.strings
/trunk/Mac-GUI/Translated.strings/MainMenu.it.strings
/trunk/Mac-GUI/Translated.strings/MainMenu.ja.strings
/trunk/Mac-GUI/Translated.strings/MainMenu.nl.strings
/trunk/Mac-GUI/Translated.strings/RDocument.it.strings
/trunk/Mac-GUI/Translated.strings/RDocument.ja.strings
/trunk/Mac-GUI/Translated.strings/RDocument.nl.strings
/trunk/Mac-GUI/Translated.strings/SyntaxColorsPrefPane.de.strings
/trunk/Mac-GUI/Translated.strings/SyntaxColorsPrefPane.it.strings
/trunk/Mac-GUI/Translated.strings/SyntaxColorsPrefPane.ja.strings
/trunk/Mac-GUI/Translated.strings/SyntaxColorsPrefPane.nl.strings
/trunk/Mac-GUI/Translated.strings/Vignettes.ja.strings
/trunk/Mac-GUI/Translated.strings/Vignettes.nl.strings
/trunk/Mac-GUI/de.lproj/ColorsPrefPane.xib
/trunk/Mac-GUI/de.lproj/EditorPrefPane.xib
/trunk/Mac-GUI/de.lproj/Localizable.strings
/trunk/Mac-GUI/de.lproj/MainMenu.xib
/trunk/Mac-GUI/de.lproj/MiscPrefPane.xib
/trunk/Mac-GUI/de.lproj/QuartzPrefPane.xib
/trunk/Mac-GUI/de.lproj/RConsole.xib
/trunk/Mac-GUI/de.lproj/RDocument.xib
/trunk/Mac-GUI/de.lproj/SelectEncodingsPanel.xib
/trunk/Mac-GUI/de.lproj/SyntaxColorsPrefPane.xib
/trunk/Mac-GUI/de.lproj/Vignettes.xib
/trunk/Mac-GUI/fr.lproj/EditorPrefPane.xib
/trunk/Mac-GUI/fr.lproj/Localizable.strings
/trunk/Mac-GUI/fr.lproj/MainMenu.xib
/trunk/Mac-GUI/fr.lproj/MiscPrefPane.xib
/trunk/Mac-GUI/fr.lproj/QuartzPrefPane.xib
/trunk/Mac-GUI/fr.lproj/RConsole.xib
/trunk/Mac-GUI/fr.lproj/RDocument.xib
/trunk/Mac-GUI/fr.lproj/SelectEncodingsPanel.xib
/trunk/Mac-GUI/fr.lproj/SyntaxColorsPrefPane.xib
/trunk/Mac-GUI/fr.lproj/Vignettes.xib
/trunk/Mac-GUI/it.lproj/ColorsPrefPane.xib
/trunk/Mac-GUI/it.lproj/EditorPrefPane.xib
/trunk/Mac-GUI/it.lproj/Localizable.strings
/trunk/Mac-GUI/it.lproj/MainMenu.xib
/trunk/Mac-GUI/it.lproj/MiscPrefPane.xib
/trunk/Mac-GUI/it.lproj/QuartzPrefPane.xib
/trunk/Mac-GUI/it.lproj/RConsole.xib
/trunk/Mac-GUI/it.lproj/RDocument.xib
/trunk/Mac-GUI/it.lproj/SelectEncodingsPanel.xib
/trunk/Mac-GUI/it.lproj/SyntaxColorsPrefPane.xib
/trunk/Mac-GUI/it.lproj/Vignettes.xib
/trunk/Mac-GUI/ja.lproj/ColorsPrefPane.xib
/trunk/Mac-GUI/ja.lproj/EditorPrefPane.xib
/trunk/Mac-GUI/ja.lproj/Localizable.strings
/trunk/Mac-GUI/ja.lproj/MainMenu.xib
/trunk/Mac-GUI/ja.lproj/MiscPrefPane.xib
/trunk/Mac-GUI/ja.lproj/QuartzPrefPane.xib
/trunk/Mac-GUI/ja.lproj/RConsole.xib
/trunk/Mac-GUI/ja.lproj/RDocument.xib
/trunk/Mac-GUI/ja.lproj/SelectEncodingsPanel.xib
/trunk/Mac-GUI/ja.lproj/SyntaxColorsPrefPane.xib
/trunk/Mac-GUI/ja.lproj/Vignettes.xib
/trunk/Mac-GUI/nib2str
/trunk/Mac-GUI/nl.lproj/ColorsPrefPane.xib
/trunk/Mac-GUI/nl.lproj/EditorPrefPane.xib
/trunk/Mac-GUI/nl.lproj/Localizable.strings
/trunk/Mac-GUI/nl.lproj/MainMenu.xib
/trunk/Mac-GUI/nl.lproj/MiscPrefPane.xib
/trunk/Mac-GUI/nl.lproj/QuartzPrefPane.xib
/trunk/Mac-GUI/nl.lproj/RConsole.xib
/trunk/Mac-GUI/nl.lproj/RDocument.xib
/trunk/Mac-GUI/nl.lproj/SelectEncodingsPanel.xib
/trunk/Mac-GUI/nl.lproj/SyntaxColorsPrefPane.xib
/trunk/Mac-GUI/nl.lproj/Vignettes.xib
/trunk/Mac-GUI/str2nib
/trunk/Mac-GUI/update.strings
5719
5606 d 21 h
urbaneks
/trunk/Mac-GUI/
merge r109
/trunk/Mac-GUI/English.lproj/EncodingPopupView.xib
/trunk/Mac-GUI/English.lproj/SelectEncodingsPanel.xib
/trunk/Mac-GUI/NSTextView_RAdditions.h
/trunk/Mac-GUI/NSTextView_RAdditions.m
/trunk/Mac-GUI/RChooseEncodingPopupAccessory.h
/trunk/Mac-GUI/RChooseEncodingPopupAccessory.m
/trunk/Mac-GUI/de.lproj/SelectEncodingsPanel.xib
/trunk/Mac-GUI/fr.lproj/SelectEncodingsPanel.xib
/trunk/Mac-GUI/it.lproj/SelectEncodingsPanel.xib
/trunk/Mac-GUI/ja.lproj/SelectEncodingsPanel.xib
/trunk/Mac-GUI/nl.lproj/SelectEncodingsPanel.xib
/trunk/Mac-GUI/English.lproj/MainMenu.xib
/trunk/Mac-GUI/NEWS
/trunk/Mac-GUI/PreferenceKeys.h
/trunk/Mac-GUI/R.xcodeproj/project.pbxproj
/trunk/Mac-GUI/RController.h
/trunk/Mac-GUI/RController.m
/trunk/Mac-GUI/RDocument.h
/trunk/Mac-GUI/RDocument.m
/trunk/Mac-GUI/RDocumentController.h
/trunk/Mac-GUI/RDocumentController.m
/trunk/Mac-GUI/RDocumentWinCtrl.h
/trunk/Mac-GUI/RDocumentWinCtrl.m
/trunk/Mac-GUI/RScriptEditorTextView.m
/trunk/Mac-GUI/RTextView.h
/trunk/Mac-GUI/RTextView.m
/trunk/Mac-GUI/de.lproj/MainMenu.xib
/trunk/Mac-GUI/fr.lproj/MainMenu.xib
/trunk/Mac-GUI/it.lproj/MainMenu.xib
/trunk/Mac-GUI/ja.lproj/MainMenu.xib
/trunk/Mac-GUI/nl.lproj/MainMenu.xib
5708
5613 d 7 h
urbaneks
/trunk/Mac-GUI/
fix 10.5 compatibility
/trunk/Mac-GUI/CCComp.h
/trunk/Mac-GUI/DataManager.h
/trunk/Mac-GUI/HelpManager.h
/trunk/Mac-GUI/PackageInstaller.h
/trunk/Mac-GUI/PackageInstaller.m
/trunk/Mac-GUI/PackageManager.h
/trunk/Mac-GUI/Preferences.h
/trunk/Mac-GUI/R.xcodeproj/project.pbxproj
/trunk/Mac-GUI/RController.h
/trunk/Mac-GUI/RDocument.h
/trunk/Mac-GUI/RDocumentController.h
/trunk/Mac-GUI/RDocumentWinCtrl.h
/trunk/Mac-GUI/REditor.h
/trunk/Mac-GUI/REditor.m
/trunk/Mac-GUI/REditorTextStorage.h
/trunk/Mac-GUI/REditorToolbar.h
/trunk/Mac-GUI/RRulerView.h
/trunk/Mac-GUI/RScriptEditorTextView.h
/trunk/Mac-GUI/RTextView.h
/trunk/Mac-GUI/SearchTable.h
/trunk/Mac-GUI/SelectList.h
/trunk/Mac-GUI/SelectList.m
/trunk/Mac-GUI/Tools/SortableDataSource.h
/trunk/Mac-GUI/VignettesController.h
/trunk/Mac-GUI/VignettesController.m
/trunk/Mac-GUI/WSBrowser.h
/trunk/Mac-GUI/WSBrowser.m
5705
5613 d 21 h
urbaneks
/trunk/Mac-GUI/
merge r79 from the new GUI plus bugfixes
/trunk/Mac-GUI/English.lproj/MainMenu.nib/designable.nib
/trunk/Mac-GUI/NoodleLineNumberView.h
/trunk/Mac-GUI/NoodleLineNumberView.m
/trunk/Mac-GUI/RScriptEditorTextView.h
/trunk/Mac-GUI/RScriptEditorTextView.m
/trunk/Mac-GUI/RScriptEditorTokens.h
/trunk/Mac-GUI/RScriptEditorTokens.l
/trunk/Mac-GUI/RegexKitLite.h
/trunk/Mac-GUI/RegexKitLite.m
/trunk/Mac-GUI/English.lproj/MainMenu.nib/classes.nib
/trunk/Mac-GUI/English.lproj/MainMenu.nib/info.nib
/trunk/Mac-GUI/AMPrefs/AMPreferenceWindowController.m
/trunk/Mac-GUI/DataManager.h
/trunk/Mac-GUI/DataManager.m
/trunk/Mac-GUI/English.lproj/MainMenu.nib/keyedobjects.nib
/trunk/Mac-GUI/English.lproj/RDocument.nib/designable.nib
/trunk/Mac-GUI/English.lproj/RDocument.nib/keyedobjects.nib
/trunk/Mac-GUI/GUI-tools.R
/trunk/Mac-GUI/HelpManager.h
/trunk/Mac-GUI/HelpManager.m
/trunk/Mac-GUI/PackageInstaller.m
/trunk/Mac-GUI/PackageManager.h
/trunk/Mac-GUI/PackageManager.m
/trunk/Mac-GUI/PreferenceKeys.h
/trunk/Mac-GUI/R.xcodeproj/project.pbxproj
/trunk/Mac-GUI/RConsoleController.m
/trunk/Mac-GUI/RController.h
/trunk/Mac-GUI/RController.m
/trunk/Mac-GUI/RDocument.m
/trunk/Mac-GUI/RDocumentController.h
/trunk/Mac-GUI/RDocumentController.m
/trunk/Mac-GUI/RDocumentWinCtrl.h
/trunk/Mac-GUI/RDocumentWinCtrl.m
/trunk/Mac-GUI/REditorToolbar.m
/trunk/Mac-GUI/RTextView.h
/trunk/Mac-GUI/RTextView.m
/trunk/Mac-GUI/SearchTable.h
/trunk/Mac-GUI/SearchTable.m
/trunk/Mac-GUI/Tools/CodeCompletion.h
/trunk/Mac-GUI/Tools/CodeCompletion.m
/trunk/Mac-GUI/de.lproj/MainMenu.nib/designable.nib
/trunk/Mac-GUI/de.lproj/MainMenu.nib/keyedobjects.nib
/trunk/Mac-GUI/fr.lproj/MainMenu.nib/designable.nib
/trunk/Mac-GUI/fr.lproj/MainMenu.nib/keyedobjects.nib
/trunk/Mac-GUI/it.lproj/MainMenu.nib/designable.nib
/trunk/Mac-GUI/it.lproj/MainMenu.nib/keyedobjects.nib
/trunk/Mac-GUI/ja.lproj/MainMenu.nib/designable.nib
/trunk/Mac-GUI/ja.lproj/MainMenu.nib/keyedobjects.nib
/trunk/Mac-GUI/nl.lproj/MainMenu.nib/designable.nib
/trunk/Mac-GUI/nl.lproj/MainMenu.nib/keyedobjects.nib
5676
5663 d 20 h
urbaneks
/trunk/Mac-GUI/
add encoding support
/trunk/Mac-GUI/English.lproj/RDocument.nib/designable.nib
/trunk/Mac-GUI/English.lproj/RDocument.nib/classes.nib
/trunk/Mac-GUI/English.lproj/RDocument.nib/info.nib
/trunk/Mac-GUI/English.lproj/RDocument.nib/keyedobjects.nib
/trunk/Mac-GUI/NEWS
/trunk/Mac-GUI/R.xcodeproj/project.pbxproj
/trunk/Mac-GUI/RDocument.h
/trunk/Mac-GUI/RDocument.m
/trunk/Mac-GUI/RDocumentController.m
/trunk/Mac-GUI/RDocumentWinCtrl.h
/trunk/Mac-GUI/RDocumentWinCtrl.m
5089
6669 d 14 h
urbaneks
/trunk/Mac-GUI/
register R's internal Quartz windows correctly
/trunk/Mac-GUI/QuartzCocoaDocument.h
/trunk/Mac-GUI/QuartzCocoaDocument.m
/trunk/Mac-GUI/RDocumentController.m
/trunk/Mac-GUI/RDocumentWinCtrl.h
/trunk/Mac-GUI/RDocumentWinCtrl.m
1603
7706 d 20 h
urbaneks
/trunk/Mac-GUI/
Added preference for disabling function arguments lookup
/trunk/Mac-GUI/NEWS
/trunk/Mac-GUI/PrefPanes/EditorPrefPane.h
/trunk/Mac-GUI/PrefPanes/EditorPrefPane.m
/trunk/Mac-GUI/PreferenceKeys.h
/trunk/Mac-GUI/RController.h
/trunk/Mac-GUI/RController.m
/trunk/Mac-GUI/RDocumentWinCtrl.h
/trunk/Mac-GUI/RDocumentWinCtrl.m
1497
7746 d 14 h
urbaneks
/trunk/Mac-GUI/
Added arguments lookup to the editor
/trunk/Mac-GUI/English.lproj/RDocument.nib/classes.nib
/trunk/Mac-GUI/English.lproj/RDocument.nib/info.nib
/trunk/Mac-GUI/English.lproj/RDocument.nib/keyedobjects.nib
/trunk/Mac-GUI/RDocumentWinCtrl.h
/trunk/Mac-GUI/RDocumentWinCtrl.m
1431
7762 d 13 h
urbaneks
/trunk/Mac-GUI/
Add support for 'plain' mode which overrides preferences. Added proper init method.
/trunk/Mac-GUI/RDocumentWinCtrl.h
/trunk/Mac-GUI/RDocumentWinCtrl.m
1426
7762 d 16 h
urbaneks
/trunk/Mac-GUI/
Remove redundant local 'document' variable; be more verbose; sent explicit close to the document on window close
/trunk/Mac-GUI/RDocumentWinCtrl.h
/trunk/Mac-GUI/RDocumentWinCtrl.m
←Prev
1
2
Next→
Show All