The Artima Developer Community
Sponsored Link

Agile Buzz Forum
How To Build A GUI With Pollock - Toolbar

0 replies on 1 page.

Welcome Guest
  Sign In

Go back to the topic listing  Back to Topic List Click to reply to this topic  Reply to this Topic Click to search messages in this forum  Search Forum Click for a threaded view of the topic  Threaded View   
Previous Topic   Next Topic
Flat View: This topic has 0 replies on 1 page
James Robertson

Posts: 29924
Nickname: jarober61
Registered: Jun, 2003

David Buck, Smalltalker at large
How To Build A GUI With Pollock - Toolbar Posted: Jul 21, 2004 6:58 PM
Reply to this message Reply

This post originated from an RSS feed registered with Agile Buzz by James Robertson.
Original Post: How To Build A GUI With Pollock - Toolbar
Feed Title: Pollock
Feed URL: http://www.cincomsmalltalk.com/rssBlog/pollock-rss.xml
Feed Description: Pollock - the next VW GUI
Latest Agile Buzz Posts
Latest Agile Buzz Posts by James Robertson
Latest Posts From Pollock

Advertisement

Again, a bug fix before we start:

	Pollock.ToolbarButton class>>fromToolItem: aToolItem in: aToolbar 
		| button image |
		button := self new.
		button setToolItem: aToolItem.
		button id: aToolItem nameKey.
		image := aToolItem imageValue asDisplayImage.
		button addComponent: image.
		image frame: AlignmentFrame new.
		button frame setExtent: (aToolbar toolbarHeight - aToolbar artist toolbarBorderEdgeRectangle height) asPoint.
		button agent showSelected: false.
		^button

As promised, today we add a Toolbar to our ClassHierarchyBrowser. First a few details. As we saw in the last few posts, the Menu and MenuItem objects are combined to become "model" for a MenuBar, Submenu, or popup menu. In Wrapper, these same objects are used to create a Toolbar. It then just uses the action and the image values and ignores all of the rest of the menu stuff.

In Pollock, Toolbars, besides allowing the standard buttons, it can have InputFields and DropDownLists, and in the future, CheckBoxes. Each of these can have an optional label.

Obviously, reusing the Menu model objects isn't the best solution. Sure, we could extend the Menu model objects with all of the Toolbar model information... but that's a lot of bloat. Or we could have refactored and then subclassed the Menu objects and come up with an answer that way, but again, we're talking about only three things that are common: The name key, the acton and least of all the Image, which a Menu Item isn't required to have, but some Toolbar items are.

The answer I chose a new set of model objects: ToolInventory and ToolItem.

ToolInventory is the collection of ToolItems. It, like the Menu, manages things like groups of items, as well as giving access to items. Where a MenuBar or popup menu has Menu object accessed via #menu, the Toolbar has a ToolInventory object accessed via #inventory.

To have the UserInterface framwork create our Toolbar, we create a #getToolInventory method, and answer an instance of ToolInventory:

	getToolInventory
		| inventory |
		inventory := ToolInventory new addToolItem:
			((Pollock.ToolItem image: (ResourceRetriever new className: #{ToolbarIconLibrary}; selector: #abort)) 
				nameKey: #exit;
				action: #close).
		inventory addSeparator.
		inventory addToolItem:
			((ToolItem image: (ResourceRetriever new className: #{ToolbarIconLibrary}; selector: #fileOpen)) 
				nameKey: #openOnClass;
				action: #openOnClass).
		inventory addSeparator.
		inventory addToolItem: 
			((ToolItem inputFieldWith: AdvancedText new asObservedValue) 
				nameKey: #inputField;
				width: 120;
				label: 'Lookup Class: ';
				action: #lookupClass:).
		^inventory

Here, you see a similar API to the one used in #getMainMenu. We use #addToolItem: to add a new ToolItem and #addSeparator to group our Toolbar items.

The ToolItem has a large API for creating different types of ToolItems. Those that start with #image:..., will create a ToolbarButton. Those that start with #inputFieldWith:... will create an ToolbarInputField. Those that start with dropDownListWith:... will create a ToolbarDropDownList.

Here, we create two ToolbarButtons, using the same nameKeys, images and actions as their Menu cousins. We only need to write a single line of code to get these to work exactly as they do in our menu... we'll get to that in a moment.

At the end, we add a ToolItem that will model an InputField for us (a ToolbarInputField to be exact). Like all ToolItems and MenuItems, we can give it a nameKey and an action. We need to discuss how that action acts though. In Pollock, all input fields trigger a #changed event whenever the model changes. That means in effect, on every keystroke or action that modifies what you see. In Wrapper, this only happened in two circumstances: First, in the default mode, only when an explicit #accept was sent to the input field. Second, when #continuousAccept was turned on. In effect, Pollock's InputFields have no other mode than what used to be called #continuousAccept. If you wish to buffer changes, then you can use the Pollock BufferedValue in the InputField model.

What this means is that every edit the ToolbarInputField sees will trigger a #changed event under the hood, and that changed event is hooked up to call the ToolItem's action.

Before we get to writing the action, we'll talk about the two other values we have specified on our InputField ToolItem. First, is the width. This allows you to specify how wide the input field is within your Toolbar. If you don't specify a width, the default is 30. The other is the label string. Note that the width only affects the size of the actual input field, it does not have any effect on the label. In other words, the label will take up as much space as it needs without regard to any setting of the width.

Now we write our #lookupClass method:

	lookupClass: aToolbarInputField
		| lookupString element |
		lookupString :=  aToolbarInputField model value asString, '*'.
		element := self classTree tree
			detect: [:each |  lookupString match: each object name]
			ifNone: [nil].
		self classTree selection: element

Simple code for a simple example. We get the model's current value (which being an AdvancedText, needs to be sent asString). Then we detect any matching elements in the tree. When one iterates over a Tree, the items are the currently visible TreeNodes. Each TreeNode has inside the object that it is representing in the tree. Since we are using class objects, for our simple example, we use the #name method to get the stringified name of the class object. At the end, we set the class tree with the selected element. Setting it to nil is the same as clearing the selection.

We've only one more step to go... We want our open on class tool bar button to be disabled if there is no selection in the class tree. The easiest way to do this is to piggyback on the #selectionChanged event from the classTree. We do this by adding a single line to the already existing #fillProtocolList:

		...
		(self toolbar inventory atNameKey: #openOnClass) enabled: self classTree hasSelection

And.... we're done. We didn't demonstrate how to add a DropDownList, or many of the other features of Menus and Toolbars... but I need to leave something for our documenters to do.

The above is published as version 1.22 in the Package named "PollockBlog" on the Cincom public repository.

Next time... I'm going to start on a suggestion from my readers. The idea presented to me was: "Creating A User Widget In Pollock." My thinking is to create some kind of Calender widget. You know, looks like a DropDownList, but instead of a List, it presents a Calender you can navigate through, and select a date. And we can create Unit tests, and I can tell you all how we do that in Pollock, and explain the GUI testing framework for Pollock at the same time.

That's one heck of a lot of stuff. I'm not sure if I'm brave or stupid, but stupidity hasn't stopped me yet.


And So It Goes
Sames

Read: How To Build A GUI With Pollock - Toolbar

Topic: Lowjacked Previous Topic   Next Topic Topic: They don't get it

Sponsored Links



Google
  Web Artima.com   

Copyright © 1996-2019 Artima, Inc. All Rights Reserved. - Privacy Policy - Terms of Use