Created
October 19, 2021 10:25
-
-
Save estebanlm/450a891ea93d481ca389e91beeb14da6 to your computer and use it in GitHub Desktop.
example window without decorations
This file contains hidden or 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
presenter := SpPresenter new. | |
presenter application: (app := SpApplication new). | |
app styleSheet: (SpStyle defaultStyleSheet, (SpStyleVariableSTONReader fromString: '.application [ | |
.box [ Container { #borderWidth: 10, #borderColor: #FF0000 } ], | |
.bgGreen [ | |
Draw { #backgroundColor: #00FF00 } ] ] | |
')). | |
presenter layout: (SpBoxLayout newTopToBottom). | |
presenter openWithSpec. | |
presenter addStyle: 'box'. | |
presenter addStyle: 'bgGreen'. | |
presenter withWindowDo: [ :window | | |
window withoutDecorations ] |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
this produces something like this: