-
Notifications
You must be signed in to change notification settings - Fork 6
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Toplo with themes and skins #156
Merged
Merged
Changes from all commits
Commits
Show all changes
29 commits
Select commit
Hold shift + click to select a range
2fe28db
Ajout du début des stamps
Nyan11 5b1a09e
Add stamps property to toplo theme panel
Nyan11 c9b2977
Fix bug tooltip on stamps update
Nyan11 6c725a3
Add TU for intrepeter of valid selector
Nyan11 0a60985
Fix labeled icon bug on ToButton
Nyan11 57c9158
Add select theme first option
Nyan11 87fe948
Different hook to change the theme for the space
Nyan11 2cae76f
Add theme for single element
Nyan11 3430f1b
Add toTheme command
Nyan11 f3a26ac
Bug: change space theme must recreate the stamps info
Nyan11 0f8ff8c
Add opne with correct theme
Nyan11 db10af6
Add closing event to set the current pyramid toTheme space
Nyan11 34eb94e
updateBaseline for Toplo
Nyan11 9f456a5
Add missing repository
Nyan11 7a9e37a
Fix on leaf for to element
Nyan11 8c72c82
Fix baseline
Nyan11 d42c45b
better naming on baseline
Nyan11 4039638
Fix for toplo baseline
Nyan11 17e641d
Fix all example for Toplo readiness
Nyan11 8a06cf9
Baseline: Change Bloc and Toplo groups name
labordep f123047
Baseline: Fix Bloc and Toplo branches
labordep 91fbb26
Merge branch 'main' into Issue_0155
labordep e82127c
Baseline: change groups name
labordep 4e65b18
Baseline: fix toplo packages names
labordep 26cec4e
TreePresenter plugin: Rename isLeaf
labordep 91ebe30
Remove not working example + small fixes
Nyan11 3bf8d9e
Merge 26cec4e5f4e290bbfaf39c2b04d670ba95bde32c
Nyan11 1f93199
fix baseline
Nyan11 483b67c
Remove equality that are now on Bloc + fix toTheme class selection
Nyan11 File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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 was deleted.
Oops, something went wrong.
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 was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
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,34 @@ | ||
Class { | ||
#name : #PyramidOpenFromSpacePlugin, | ||
#superclass : #Object, | ||
#traits : 'TPyramidPlugin', | ||
#classTraits : 'TPyramidPlugin classTrait', | ||
#instVars : [ | ||
'extensions' | ||
], | ||
#category : #'Pyramid-Bloc-plugin-edit-on-running' | ||
} | ||
|
||
{ #category : #adding } | ||
PyramidOpenFromSpacePlugin >> addExtension: anExtension [ | ||
|
||
self extensions add: anExtension | ||
] | ||
|
||
{ #category : #accessing } | ||
PyramidOpenFromSpacePlugin >> extensions [ | ||
|
||
^ extensions | ||
] | ||
|
||
{ #category : #accessing } | ||
PyramidOpenFromSpacePlugin >> initialize [ | ||
|
||
extensions := OrderedCollection new. | ||
] | ||
|
||
{ #category : #adding } | ||
PyramidOpenFromSpacePlugin >> removeExetension: anExtension [ | ||
|
||
self extensions remove: anExtension | ||
] |
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.
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Ok for this new baseline.
I don't think this is usefull to have separate version because users have to use Toplo... however if we succeed to execute CI in these two baselines it is a good practice to have a better architecture.