Skip to content

Latest commit

 

History

History
32 lines (20 loc) · 688 Bytes

learnings_gtoolkit.md

File metadata and controls

32 lines (20 loc) · 688 Bytes

Table Of Contents

Adding stuff to the leftmost menu thing

GtToolsMenu edit initializeElements.

add this as a children:

			BrButton new
				aptitude: (BrGlamorousButtonWithLabelAptitude new);
				label: 'RPW';
				hMatchParent;
				action: [ :aButton | |rw|

				  rw := GtCoder forPackage: (RPWPillarTools package).
				  rw openInPagerFrom: aButton.  "gives us a coder in a new tab..."
				  "rw openInPager." "gives us a coder in a new tab"
                  "RPWPillarTools gtBrowse."
                  "GtCoder gtBrowse"

            ].