-
Notifications
You must be signed in to change notification settings - Fork 52
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Update for PR pharo-project/pharo#7163
- Loading branch information
Showing
24 changed files
with
86 additions
and
68 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -12,6 +12,7 @@ Class { | |
|
||
{ #category : #running } | ||
RSBoundingTest >> setUp [ | ||
super setUp. | ||
canvas := RSCanvas new | ||
] | ||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -12,6 +12,7 @@ Class { | |
|
||
{ #category : #running } | ||
RSLabelTest >> setUp [ | ||
super setUp. | ||
canvas := RSCanvas new | ||
] | ||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -12,6 +12,7 @@ Class { | |
|
||
{ #category : #running } | ||
RSLinesTest >> setUp [ | ||
super setUp. | ||
canvas := RSCanvas new | ||
] | ||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,32 @@ | ||
" | ||
I all some menus in 'Tools-Roassal3' for these examples | ||
" | ||
Class { | ||
#name : #RSSpecMenu, | ||
#superclass : #RSObject, | ||
#category : #'Roassal3-Spec-Examples' | ||
} | ||
|
||
{ #category : #'*Roassal3-Spec-Examples' } | ||
RSSpecMenu class >> menu07PalettesOn: aBuilder [ | ||
<worldMenu> | ||
(aBuilder item: #Roassal3Palettes) | ||
parent: #Roassal3; | ||
order: 7; | ||
label: 'Color palettes'; | ||
help: 'Open a color palette chooser'; | ||
icon: (self iconNamed: 'paint'); | ||
action: [ RSColorPaletteChooser new openWithSpec ] | ||
] | ||
|
||
{ #category : #'*Roassal3-Spec-Examples' } | ||
RSSpecMenu class >> menu12PalettesOn: aBuilder [ | ||
<worldMenu> | ||
(aBuilder item: #Roassal3Palettes) | ||
parent: #Roassal3; | ||
order: 7.1; | ||
label: 'Easel'; | ||
help: 'Open a basic window to edit a roassal3 script'; | ||
icon: (self iconNamed: 'haloPaint'); | ||
action: [ RSEasel new openWithSpec ] | ||
] |
10 changes: 6 additions & 4 deletions
10
...l3-Spec-Examples/RSWorldMenu.extension.st → ...al3-Spec-Examples/RSSpecMenu.extension.st
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,23 +1,25 @@ | ||
Extension { #name : #RSWorldMenu } | ||
Extension { #name : #RSSpecMenu } | ||
|
||
{ #category : #'*Roassal3-Spec-Examples' } | ||
RSWorldMenu class >> menu07PalettesOn: aBuilder [ | ||
RSSpecMenu class >> menu07PalettesOn: aBuilder [ | ||
<worldMenu> | ||
(aBuilder item: #Roassal3Palettes) | ||
parent: #Roassal3; | ||
order: 7; | ||
label: 'Color palettes'; | ||
help: 'Open a color palette chooser'; | ||
icon: (self iconNamed: 'paint'); | ||
action: [ RSColorPaletteChooser new openWithSpec ] | ||
] | ||
|
||
{ #category : #'*Roassal3-Spec-Examples' } | ||
RSWorldMenu class >> menu12PalettesOn: aBuilder [ | ||
RSSpecMenu class >> menu12PalettesOn: aBuilder [ | ||
<worldMenu> | ||
(aBuilder item: #Roassal3Palettes) | ||
parent: #Roassal3; | ||
order: 12; | ||
order: 7.1; | ||
label: 'Easel'; | ||
help: 'Open a basic window to edit a roassal3 script'; | ||
icon: (self iconNamed: 'haloPaint'); | ||
action: [ RSEasel new openWithSpec ] | ||
] |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.