Status: New
Owner: ----
Labels: Type-Defect Priority-Medium
New issue 772 by google....(a)ben.coman.com.au: Moose Panel > ST importer >
incorrect selection highlighting
http://code.google.com/p/moose-technology/issues/detail?id=772
Upon removing an item from a list, the next item down becomes higlighted
like it is selected and the highlighting cannot be removed. It is not
really selected.
How to reproduce the problem:
1. Unzipped Moose Suite 4.6 Development
2. Ran Moose.app\Contents\Windows\Squeak.exe
3. WorldMenu > Moose > Moose Panel
4. Clicked the ST downarrow icon. (btw, you might think about giving the
dialog that pops up a title)
5. In the [Initial list] tab selected the nine "AST-*" entries and clicked
the three-right-arrows.
6. In the [Selection] tab, selected "AST-Semantic" and clicked the
three-left-arrows.
The row below that - "AST-Semantic-Binding" - is now highlighted as
selected.
7. Try to get rid of the selection highlighting on "AST-Semantic-Binding"
Status: New
Owner: ----
Labels: Type-Defect Priority-Medium
New issue 977 by step...(a)stack.nl: No widestring method definitions
http://code.google.com/p/moose-technology/issues/detail?id=977
Gemstone doesn't like widestring method definitions.
MCMethodDefinition allInstances select: [ :each | (each source isKindOf:
ByteString) not ]
should return an empty collection. In Pharo 3.0 it does.
In Moose 4.8 however we have
VerveineJTestResource>mse
MalPorterStemmerTest>porterTestData
MalStopwords>moreBasicEnglish
MalGermanStemmer>performStemming:
PPAnalyzerTest>grammarD
Stephan
--
You received this message because this project is configured to send all
issue notifications to this address.
You may adjust your notification preferences at:
https://code.google.com/hosting/settings
Hi!
I had fun understanding how countries may be described using SVG.
Here is a first shoot:
Moving the mouse above a country name highlight the country. You can now rehearse your geography.
The complete source code of this example is:
-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=
| view element nameComponent label |
view := ROView new.
ROSVGPath countries do: [ :k |
element := (ROSVGPath path: (ROSVGPath perform: k)) elementOn: k.
view add: element.
].
nameComponent := ROElement new.
ROSVGPath countries do: [ :k |
label := ROLabel elementOn: k asString.
label @ ROLightlyHighlightable.
label on: ROMouseEnter do: [ :event | ROBlink highlight: (view elementFromModel: event model asSymbol) ].
label on: ROMouseLeave do: [ :event | ROBlink unhighlight: (view elementFromModel: event model asSymbol) ].
nameComponent add: label.
].
ROGridLayout new
gapSize: -3;
lineItemsCount: 15;
on: nameComponent elements.
view add: nameComponent.
nameComponent translateTo: 0 @ 400.
view openInWindowSized: 1000 @ 700
-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=
Cheers,
Alexandre
--
_,.;:~^~:;._,.;:~^~:;._,.;:~^~:;._,.;:~^~:;._,.;:
Alexandre Bergel http://www.bergel.eu
^~:;._,.;:~^~:;._,.;:~^~:;._,.;:~^~:;._,.;:~^~:;.
Status: New
Owner: ----
Labels: Type-Defect Priority-Medium Component-Famix Milestone-5.0
New issue 1014 by tu...(a)tudorgirba.com: FileAnchor should store file names
with / only
http://code.google.com/p/moose-technology/issues/detail?id=1014
On Windows, VerveineJ exports source file anchors with \. If the MSE file
is afterwards copied on a Linux or Mac machine, the path is not found.
One solution is to ensure that all occurrences of \ are replaced when
loading a FileAnchor.
--
You received this message because this project is configured to send all
issue notifications to this address.
You may adjust your notification preferences at:
https://code.google.com/hosting/settings
Hi,
roassal views have a nice feature in glamour - a new glamour pane is opened when an entity is clicked. This is being set up by:
aView raw allElementsDo: [:each |
each on: ROMouseClick do: [:event | self selection: each model ]] ].
in GLMRoassalPresentation>>renderOn:.
I’d like to know if there is a possibility to do it yourself, because I generate some nodes dynamically when view is already displayed.
Cheers.
Uko
Status: New
Owner: ----
Labels: Type-Defect Priority-Medium Component-Glamour
New issue 1012 by usman.bh...(a)gmail.com: GLMExpander does not allow
changing pane size
http://code.google.com/p/moose-technology/issues/detail?id=1012
In GLMExpander panes cannot be resized to show completely the contents of
the contained presentation. A script with an expander showing an Eyesee
chart to demonstrate the problem:
browser := GLMDashboard new.
browser title: 'Expander Example'.
expander := GLMExpander new.
expander title: 'Chart'.
expander show: [ :a |
a title: [ 'A simple eyesee chart' ].
a eyesee
title: 'Sample bar chart';
diagram: [:renderer :x :y |
renderer verticalBarDiagram
y: #yourself;
models: #(5 2 10 6 12 8);
width: 200;
height: 450;
baseAxisLine.
renderer interaction popupText:
#yourself ]].
browser addPaneNamed: #metrics extent: 200@450.
browser transmit to: #metrics; andShow: [:a |
a custom: expander ].
browser openOn: #('first exmple')
--
You received this message because this project is configured to send all
issue notifications to this address.
You may adjust your notification preferences at:
https://code.google.com/hosting/settings
Hi!
Time to time, the following gets rendered:
Characters have different sizes, which is not pleasant to read. Any idea how this comes from?
Alexandre
--
_,.;:~^~:;._,.;:~^~:;._,.;:~^~:;._,.;:~^~:;._,.;:
Alexandre Bergel http://www.bergel.eu
^~:;._,.;:~^~:;._,.;:~^~:;._,.;:~^~:;._,.;:~^~:;.
hi!
Some have asked about adding routes and defining cities:
https://twitter.com/objectprofile/status/402397548067176448
We have extended our builder with such possibilities.
Soon the builder will work on Roassal@Amber.
Cheers,
Alexandre
--
_,.;:~^~:;._,.;:~^~:;._,.;:~^~:;._,.;:~^~:;._,.;:
Alexandre Bergel http://www.bergel.eu
^~:;._,.;:~^~:;._,.;:~^~:;._,.;:~^~:;._,.;:~^~:;.