|
| 1 | +" |
| 2 | +I am an application to use in all RT tool to define costum styles. |
| 3 | +" |
| 4 | +Class { |
| 5 | + #name : #RTApplication, |
| 6 | + #superclass : #SpApplication, |
| 7 | + #classVars : [ |
| 8 | + 'Current' |
| 9 | + ], |
| 10 | + #category : #'RewriteRuleTools-Application' |
| 11 | +} |
| 12 | + |
| 13 | +{ #category : #accessing } |
| 14 | +RTApplication class >> current [ |
| 15 | + |
| 16 | + ^ Current ifNil: [ Current := self new ] |
| 17 | +] |
| 18 | + |
| 19 | +{ #category : #running } |
| 20 | +RTApplication >> start [ |
| 21 | + |
| 22 | + (self newPresenter: RTRuleEditorPresenter) openWithSpec |
| 23 | +] |
| 24 | + |
| 25 | +{ #category : #running } |
| 26 | +RTApplication >> startExpressionFinder [ |
| 27 | + |
| 28 | + ^ (self newPresenter: RTExpressionFinderPresenter) openWithSpec |
| 29 | +] |
| 30 | + |
| 31 | +{ #category : #running } |
| 32 | +RTApplication >> startHelpBrowser [ |
| 33 | + |
| 34 | + ^ (self newPresenter: RTHelpBrowserPresenter) openWithSpec |
| 35 | +] |
| 36 | + |
| 37 | +{ #category : #running } |
| 38 | +RTApplication >> startMatchTool [ |
| 39 | + |
| 40 | + ^ (self newPresenter: MatchToolPresenter) openWithSpec |
| 41 | +] |
| 42 | + |
| 43 | +{ #category : #running } |
| 44 | +RTApplication >> startRuleBuilder [ |
| 45 | + |
| 46 | + ^ (self newPresenter: RewriteRuleBuilderPresenter) openWithSpec |
| 47 | +] |
| 48 | + |
| 49 | +{ #category : #running } |
| 50 | +RTApplication >> startRuleEditor [ |
| 51 | + |
| 52 | + ^ (self newPresenter: RTRuleEditorPresenter) openWithSpec |
| 53 | +] |
| 54 | + |
| 55 | +{ #category : #running } |
| 56 | +RTApplication >> startRuleLoader [ |
| 57 | + |
| 58 | + ^ (self newPresenter: RTRuleLoaderPresenter) openWithSpec |
| 59 | +] |
| 60 | + |
| 61 | +{ #category : #running } |
| 62 | +RTApplication >> startTransformer [ |
| 63 | + |
| 64 | + ^ (self newPresenter: RTCodeTransformerPresenter) openWithSpec |
| 65 | +] |
| 66 | + |
| 67 | +{ #category : #styling } |
| 68 | +RTApplication >> styleSheet [ |
| 69 | + |
| 70 | + ^ SpStyle defaultStyleSheet, |
| 71 | + (SpStyleVariableSTONReader fromString: |
| 72 | +'.application [ |
| 73 | + |
| 74 | + .container [ Container { #padding: 4, #borderWidth: 2 } ], |
| 75 | + .bgOpaque [ Draw { #backgroundColor: EnvironmentColor(#base) } ], |
| 76 | + .bgBlue [ Draw { #backgroundColor: #blue } ], |
| 77 | + .boldFont [ Font { #bold: true } ], |
| 78 | + .textFont [ Font { #name: EnvironmentFont(#default) } ], |
| 79 | + .bigFontSize [ Font { #size: 20 } ], |
| 80 | + .buttonStyle [ Geometry { #width: 130 } ] |
| 81 | +]') |
| 82 | +] |
0 commit comments