TweetFollow Us on Twitter

StoneTable

Volume Number: 13 (1997)
Issue Number: 12
Column Tag: Tools of the Trade

StoneTable

by Edward Ringel

This List Manager replacement offers many advantages to the Mac OS developer

The visual management of list and tabular data is one of the weak points of the Mac OS Toolbox. Although each programmer may have his or her pet peeve about the List Manager, most developers would agree on three substantial limitations. First, and I think foremost, is the 32K data limitation. Although it is possible to write an LDEF to overcome this limitation without too much difficulty, we're still left with the fixed cell size and absence of cell styles. Granted, for some applications, the List Manager routines may be more than enough. On the other hand, for anyone with the need to manipulate larger amounts of data, or with the need to customize rows, columns, and cells, it can be pretty easy to bump up against the limitations of the List Manager.

After seeing StoneTable advertised repeatedly in MacTech and looking at their demos, I thought it might be of interest to the Mac programming community to explore this product in depth, as it is the only (at least to my knowledge) freestanding commercial List Manager available to the Mac programming community. StoneTable is a powerful List Manager replacement that offers many improvements over the List Manager routines. Its current competition lies primarily in some of the components of frameworks and one piece of almost freeware that we'll mention briefly at the end of the article.

Package Contents

I received StoneTable via the Internet, which is currently the normal means of distribution. The archive was about 1 meg. After decompressing the package, I reviewed several different documents and files. There is the usual read me about bugs and the like. This document, addressing version 3, indicated that there were no known bugs. There was a longer document reviewing the changes between version 2 and version 3. Although there was a host of information there about the differences between versions, there was no hand-holding about how to do the conversion.

The primary description of the product is an Acrobat file which is a model for software package documentation. It is clear, concise, and well written. The introduction and general principles of operation are very helpful in setting the "ground rules" for the package. The function nomenclature is uniform, as are function descriptions. The document makes nice use of hypertext cross referencing. I would have liked to see snippets of example code in the function descriptions, but I could also see that as excessively burdensome for the author given that he provided a sample program as well.

The software itself consists of a .h file, a .p file, libraries, procedural code examples, TDEF development instructions (covered below) and a PowerPlant class and sample app based on StoneTable. The package I received had CodeWarrior files for 68K application and code resource (A4) development as well as a PPC lib. The sample programs and projects work under the new CodeWarrior Pro IDE. The sample program is fairly simple and does not show off every last feature of StoneTable. However, careful review of the code definitely will show the programmer how to get started and use the library effectively.

Lots More Than the List Manager

StoneTable performs many, many useful tasks. Obviously, it does everything that the List Manager does. The additional functionality is why people pay money for this product. StoneTable supports tables of data that are greater than 32K in aggregate size. It allows many different cell data types. Text, checkbox, popup menu, PICTs, icons (all sizes), hierarchical lists, and CDEF controls are all supported. A wide variety of style information can be attached to each cell: justifications, font, size, margins, and foreground and background colors are all options. If necessary, the programmer can write a TDEF to support a custom drawing procedure. TDEF's are Table DEFinitions supported by StoneTable. A prototype sample TDEF is provided as part of the package.

Text entry into tables is quite sophisticated. One of the very nice features of StoneTable is in-cell editing, which for some programmers is the holy grail of lists. Cell data entry validation hooks and stubs, as well as built-in validations for numbers, help insure data accuracy. Sort and find functions are provided. Comprehensive control over list appearance and behavior can be achieved with TDEF's and other hooks, stubs, and callbacks provided by the library for the programmer. Many of the appearance services are provided in such a manner so that the end user of the application can easily control list appearance with a minimum of programming on the part of the developer.

There are a host of other very useful services provided. Drag and drop and clipboard management, while not terribly difficult to write, are a nuisance, tedious, and error-prone routines. These two services require almost no programming to implement. Drag and drop services in particular are quite sophisticated and include transfers to and from StoneTable and non-StoneTable applications in either direction. Clipboard information includes all cell data.

Using StoneTable

The programmer must first create a StoneTable list, and then intercept events directed at the list and allow the StoneTable library to process the event. Table creation is not awful, but requires multiple function calls to set display and interface options completely. This is the kind of situation that could lend itself nicely to a resource that is created by the programmer and then passed to a single MakeTable() call.

To intercept table events, StoneTable requires some modification of the basic event loop, but overall this is not an onerous task. Because many unique services are provided, the program must give the StoneTable library the opportunity to intercept events that are directed at a StoneTable list. This is done by intercepting various mouse clicks and keyboard events, as well as activate/deactivate events, etc. I have lifted, with some modification, the conceptual outline of table creation and a typical procedural event loop from the manual (my apologies to Bill Stackhouse for any corruption or obfuscation.)

//The general outline of an application that uses StoneTable.
#include <StoneTable.h>
...
create_table() {
  ...
  window = NewWindow(...);
...
  new_table = TMX_New(...);
//Create a new table and a ttach it to a window, then set the various options
  TMX_SetOptions(...);
  TMX_SetGrid(...);
  TMX_SetColumnTitleText(...);
  TMX_SetRowTitleText(...);
//Now set the cell data
  TMX_SetCellText(...);
//Now draw the list
  TMX_DoDraw(...); /* set drawIt to TRUE */
  ...
}

//event loop
process_event(event) {
  switch (event.what) {
    case nullEvent:
//Take care of table idle events along with program idle events
      TMX_Idle(...);
      TMX_WhatCursor(...);
      TMX_Where(...);
      ...
    case mouseDown:
//Take care of table mouse down events along with program mouse down events
      TMX_Click(...);
      ...
    case updateEvt:
//Process update events
      TMX_Update(...);
      ...
    case activateEvt:
//Process activate events
      TMX_Activate(...);
      ...
    case keyDown:
    case autoKey:
//process table key events and simultaneously hands off non-table events to the program
      if ( ! TMX_KeyNav(...))
        ...;
    }
  }

StoneTable, like the List Manager, makes the programmer do a lot of work to fill the list. StoneTable does provide one function that will take tab delimited text data and load cells en masse, but other kinds of data must be loaded cell by cell. At first, I thought this was a considerable failing of the product, but as I thought about it more, I realized that it would be quite difficult to automate loading cell data. Similarly, saving a table to a file would require a custom function written by the programmer. This discussion can't help but raise the issue of transferring data back and forth between a program memory structure in which the data is manipulated to a StoneTable structure in which the data is displayed. With correct programming technique, I do not think it would be necessary; StoneTable could keep it all without too much difficulty. These pros and cons notwithstanding, it still might be advantageous to be able to store a StoneTable "persistent object," and this might be a future goal of StoneTable upgrades.

In general, StoneTable calls are modeled after the List Manager calls, so the transition is at least somewhat intuitive. Additionally, the StoneTable PowerPlant object is modeled after the LTable class, also simplifying the transition as much as possible.

Memory Issues

Memory needs have the potential to be substantial. Each row and each column, requires about 24 bytes allocated. Empty cells take no memory. Those that have data are stored in a tree structure for quick access. Each allocated cell uses a minimum of about 46 bytes which includes style information for that cell. This uses more memory, but apparently is faster than having the style allocated only if different from the default. Memory is allocated using a memory manager that sits on top of the Mac Toolbox Memory Manager. This internal memory manager allocates memory from large handles. Titles other than default letters and numbers are treated as a regular cell.

Numbers and text are both stored as text as in the List Manager. If necessary, the programmer can store binary data in the cell. Apparently, there have been no complaints to StoneTable about performance due to numeric data.

The Finished Product

Judging from the available demo program and the sample program, it's not too difficult to create a very handsome table that is very responsive to user actions. I ran the sample program in 68K mode on my trusty Performa 6200 as well as PPC mode. The 68K mode was adequate, and the PPC program was downright snappy. Given the number of lines of sample code, the control over the list's appearance and the quality of the user interface is very impressive.

Figure 1. Window from StoneTable sample program.

The Competition and the Bottom Line

Although I have not made an exhaustive search of the products out there, I don't know of any current, commercial, free standing List Manager Replacement except StoneTable. There is an interesting product called the A list, which is almost free. It has many good features, but does not have the speed or full feature set of StoneTable. From a commercial standpoint, it is not bug free and is not supported in the same manner as StoneTable. In particular, I found the code to be much slower than StoneTable, which would be a serious issue with big lists.

PowerPlant and TCL both have table objects. The VIP-C and VIP Basic products support a grid, which is quite powerful. In all of these frameworks, it would be hard to justify a StoneTable purchase for simple tables. It would be cost efficient, however, to purchase StoneTable for a complex list problem. Both Tools Plus and AppMaker are "StoneTable aware" which makes it much easier to use this product in those environments. I think it would be almost foolhardy to create a List Manager replacement from scratch if you were programming in straight C, Pascal, or C++ without using a framework; StoneTable would be a logical choice.

All in all, StoneTable is a solid, useful tool for table management. Many programmers will not use its full array of functions. StoneTable tables in an application will be well behaved and easy to implement. Some framework programmers may be content to use the "native" table object, but many framework developers may still benefit from using StoneTable's unique features. In particular, in light of the recent price decrease and version increment, StoneTable may warrant careful evaluation. We would be most fortunate if all "niche" products were this good.

Products Reviewed

StoneTable, version 3.0 $199. Available from DevDepot and directly from the publisher, Stone Table Publishing, P.O. Box 12665, Portland, OR 97212. (503) 287-3424.

Useful URL's

StoneTablet publishing has a web site, ftp site, and email address. When you purchase the product, you can join a list to be notified of updates, issues, etc.

http://www.teleport.com/~stack
ftp://ftp.teleport.com/pub/vendors/stack
stack@teleport.com

Demo available at:

ftp://ftp.teleport.com/pub/vendors/stack/StoneTableDemo.hqx


Ed Ringel, eringel@mint.net, is Contributing Editor for product reviews for MacTech Magazine. In his spare time, he is a respiratory and critical care physician in Waterville, Maine.

 
AAPL
$433.26
Apple Inc.
-1.32
MSFT
$34.87
Microsoft Corpora
+0.79
GOOG
$909.18
Google Inc.
+5.31

MacTech Search:
Community Search:

Software Updates via MacUpdate

OnyX 2.6.9 - Maintenance and optimizatio...
OnyX is a multifunctional utility for OS X. It allows you to verify the startup disk and the structure of its System files, to run miscellaneous tasks of system maintenance, to configure the hidden... Read more
Apple iTunes 11.0.3 - Manage your music,...
Apple iTunes lets you organize and play digital music and video on your computer. It can automatically download new music, app, and book purchases across all your devices and computers. And it's a... Read more
Spotify 0.9.0.133. - Stream music, creat...
Spotify is a new way to enjoy music. Simply download and install. Before you know it you'll be singing along to the genre, artist, or song of your choice. With Spotify you are never far away from... Read more
JollysFastVNC 1.46 - Fast VNC client. (S...
JollysFastVNC is a VNC client which aims to become the best VNC client on the Mac. When I started ScreenRecycler I thought that there are enough VNC clients out there to support it. When the program... Read more
Skitch 2.5.2 - Take screenshots, annotat...
Skitch allows you to take screenshots on your Mac, edit them and share them with others. It makes the sharing process seamless by making it a natural workflow to send the image (with edited arrows... Read more
Backblaze 2.1.0.608 - Online backup serv...
Backblaze is an online backup service, available fo $5/month for unlimited storage. With half of the founding team heralding from Apple, Backblaze is deeply committed to the Mac platform. The... Read more
The Cave 1.0.0 - Adventure game featurin...
The Cave is an adventure game that offers a unique blend of fast-paced action, mind-bending puzzles, and winning humor. Assemble your team and embark on a journey into the shadowy underworld. Once... Read more
StatsBar 1.4 - Monitor system processes...
StatsBar gives you a comprehensive and detailed analysis of the following areas of your Mac: CPU usage Memory usage Disk usage Network and bandwidth usage Battery power and health (MacBooks only)... Read more
Thunderbird 17.0.6 - Email client from M...
As of July 2012, Thunderbird is no longer being actively developed, although security improvements will continue to be released as needed. Thunderbird is a free, open-source, cross-platform e-mail... Read more
Adobe Flash Player 11.8.800.50 - Multime...
Adobe Flash Player is a cross-platform, browser-based application runtime that provides uncompromised viewing of expressive applications, content, and videos across browsers and operating systems.... Read more

This Week at 148Apps: May 13-17, 2013
We Are Your App Review Source   | Read more »
Second Home – Xbox Live Indie Developers...
The indie game development scene has been around for an incredibly long time; pretty much ever since people had the opportunity to program for themselves. However it wasn’t until shareware became a common method of distribution the 90s that it began... | Read more »
The Simpsons: Tapped Out Adds New Charac...
The Simpsons: Tapped Out Adds New Character and Locations In Latest Update Posted by Andrew Stevens on May 17th, 2013 [ permalink ] | Read more »
Fast & Furious 6: The Game Review
Fast & Furious 6: The Game Review By Jennifer Allen on May 17th, 2013 Our Rating: :: SPEEDY YET SLOW PACEDUniversal App - Designed for iPhone and iPad It’s not that Fast & Furious 6 isn’t a fun drag racer, it’s just that... | Read more »
N.O.V.A. 3 – Near Orbit Vanguard Allianc...
N.O.V.A. 3 – Near Orbit Vanguard Alliance Is Free For Today Only Posted by Andrew Stevens on May 17th, 2013 [ permalink ] Universal App - Designed for iPhone and iPad | Read more »
Turbo Racing League Is Now Available, Pr...
Turbo Racing League Is Now Available, Provides Players A Chance To Win Cash Prizes Posted by Andrew Stevens on May 17th, 2013 [ permalink ] | Read more »
Running with Friends Review
Running with Friends Review By Blake Grundman on May 17th, 2013 Our Rating: :: FAMILIAR, YET FUNUniversal App - Designed for iPhone and iPad A game may look and play identically to other titles on the market, but this is one that... | Read more »
Festival de Cannes Lets You Experience T...
Festival de Cannes Lets You Experience The Festival In Real Time Posted by Andrew Stevens on May 17th, 2013 [ permalink ] | Read more »
Sonic the Hedgehog’s Remastered Version...
The original Sonic the Hedgehog has been remastered for iOS, a la Sonic CD. | Read more »
tenXer Tracks All Your Activities And Re...
tenXer Tracks All Your Activities And Reports Them For You Posted by Andrew Stevens on May 17th, 2013 [ permalink ] iPhone App - Designed for the iPhone, compatible with the iPad | Read more »

Price Scanner via MacPrices.net

Apple now offering full line of refurbished iMacs...
Apple has Apple Certified Refurbished 2012 iMacs in stock today for up to $330 off MSRP – 15% off. Each iMac comes with an Apple one-year warranty, and shipping is free: - 21″ 2.7GHz iMac: $1099 $100... Read more
Save up to $200 on MacBooks with Apple Education p...
Purchase a new 2012 MacBook Pro, MacBook Pro with Retina Display, or MacBook Air at The Apple Store for Education and take up to $200 off MSRP. All teachers, students, and staff of any educational... Read more
15″ MacBook Pros (Apple refurbished) in stock star...
The Apple Store has several Apple Certified Refurbished 15-inch MacBook Pros in stock today, with models starting at $1489. Each MacBook Pro comes with Apple’s one-year warranty, and home shipping (... Read more
Save up to $100 on iMacs with Apple Education disc...
Take up to $100 off the price of a new 21″ or 27″ iMac at The Apple Store for Education. All students, teachers, and staff at any educational institution qualify for the discount, and shipping is... Read more
Mac mini Server on sale for $50 off MSRP
B&H Photo has the 2012 Mac mini Server on sale for $949 including free shipping plus NY sales tax only. Their price is $50 off MSRP, and it’s the lowest price available for this model. B&H... Read more
Steve Jobs Triumphs Posthumously In Platform Wars...
The Register’s Paul Kunert says it’s finally official – the epic battle of legendary Apple CEO Steve Jobs is finally won, now that he has toppled the PC platform from beyond the grave, in the UK, at... Read more
Microsoft Surface Pro vs Apple MacBook Air 11in
Stuff has posted a concise comparo review of the Microsoft Surface Pro tablet PC versus Apple’s 11.6-inch MacBook Air, noting that both machines offer a full desktop OS and a current-generation Intel... Read more
Pixelmator 2.2 First Week Downloads Top Half a Mil...
The Pixelmator Team has announced that Pixelmator 2.2 downloads have topped half a million since last Thursday, making it the most successful release in Pixelmator history. With over 100 new features... Read more
AppleCare Protection Plans on sale for up to $105...
B&H Photo has 3-Year AppleCare Warranties on sale for up to $105 off MSRP including free shipping plus NY sales tax only: - Mac Laptops 15″ and Above: $244 $105 off MSRP - Mac Laptops 13″ and... Read more
27″ Apple Display (refurbished) available for $829...
The Apple Store has Apple Certified Refurbished 27″ Thunderbolt Displays available for $829 including free shipping. That’s $170 off the cost of new models. Read more

Jobs Board

*Apple* Retail - Manager - Apple (Unite...
Job SummaryKeeping an Apple Store thriving requires a diverse set of leadership skills, and as a Manager, youre a master of them all. In the stores fast-paced, dynamic Read more
*Apple* At-Home Team Manager - Apple (U...
Changing the world is all in a day's work at Apple . If you love innovation, here's your chance to make a career of it. You'll work hard. But the job comes with more than Read more
*Apple* Retail - Manager - Apple Inc. (...
Job SummaryKeeping an Apple Store thriving requires a diverse set of leadership skills, and as a Manager, you're a master of them all. In the store's fast-paced, dynamic Read more
*Apple* Support Engineer - Systemtec, I...
Apple Support Engineer SYSTEMTEC. FIND YOUR NEW CAREER PATH! Technology projects within organizations present unique opportunities. By offering your expertise within a Read more
*Apple* Engineer - DP Professionals Inc...
DP Professionals is seeking an Apple Engineer for a contract in Charleston, SC. The Apple Engineer will provide Mac and iOS device and application support, and Read more
All contents are Copyright 1984-2011 by Xplain Corporation. All rights reserved. Theme designed by Icreon.