Starting documents register.
This commit is contained in:
parent
d765debca7
commit
2c4618eecf
@ -17,6 +17,7 @@ Class {
|
|||||||
],
|
],
|
||||||
#classVars : [
|
#classVars : [
|
||||||
'dockingBar',
|
'dockingBar',
|
||||||
|
'docsCollection',
|
||||||
'recentNotebooks'
|
'recentNotebooks'
|
||||||
],
|
],
|
||||||
#classInstVars : [
|
#classInstVars : [
|
||||||
@ -24,7 +25,7 @@ Class {
|
|||||||
'recentNotebooks',
|
'recentNotebooks',
|
||||||
'helpMenu'
|
'helpMenu'
|
||||||
],
|
],
|
||||||
#category : 'Grafoscopio-UI'
|
#category : #'Grafoscopio-UI'
|
||||||
}
|
}
|
||||||
|
|
||||||
{ #category : #adding }
|
{ #category : #adding }
|
||||||
@ -49,6 +50,11 @@ GfUIHelpers class >> addToHelpMenu: aGrafoscopioNotebook [
|
|||||||
self updateUI
|
self updateUI
|
||||||
]
|
]
|
||||||
|
|
||||||
|
{ #category : #accessing }
|
||||||
|
GfUIHelpers class >> docsCollection [
|
||||||
|
^ docsCollection ifNil: [docsCollection := OrderedCollection new ]
|
||||||
|
]
|
||||||
|
|
||||||
{ #category : #updating }
|
{ #category : #updating }
|
||||||
GfUIHelpers class >> installDataviz [
|
GfUIHelpers class >> installDataviz [
|
||||||
"I install the Dataviz package.
|
"I install the Dataviz package.
|
||||||
|
@ -4,7 +4,7 @@ I define the documentation for the Grafoscopio package.
|
|||||||
Class {
|
Class {
|
||||||
#name : #GrafoscopioDocs,
|
#name : #GrafoscopioDocs,
|
||||||
#superclass : #GrafoscopioDocumentation,
|
#superclass : #GrafoscopioDocumentation,
|
||||||
#category : 'Grafoscopio'
|
#category : #Grafoscopio
|
||||||
}
|
}
|
||||||
|
|
||||||
{ #category : #operation }
|
{ #category : #operation }
|
||||||
@ -63,4 +63,5 @@ GrafoscopioDocs >> initialize [
|
|||||||
addDocument: 'Docs/En/Books/DataActivism/techniques-for-datactivism.ston';
|
addDocument: 'Docs/En/Books/DataActivism/techniques-for-datactivism.ston';
|
||||||
addDocument: 'Docs/En/dev-notes.ston';
|
addDocument: 'Docs/En/dev-notes.ston';
|
||||||
addDocument: 'Docs/En/Books/SpecIUFramework/spec-ui-framework.ston'.
|
addDocument: 'Docs/En/Books/SpecIUFramework/spec-ui-framework.ston'.
|
||||||
|
GfUIHelpers docsCollection add: self.
|
||||||
]
|
]
|
||||||
|
Loading…
Reference in New Issue
Block a user