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.

 

Community Search:
MacTech Search:

Software Updates via MacUpdate

Latest Forum Discussions

See All

Fallout Shelter pulls in ten times its u...
When the Fallout TV series was announced I, like I assume many others, assumed it was going to be an utter pile of garbage. Well, as we now know that couldn't be further from the truth. It was a smash hit, and this success has of course given the... | Read more »
Recruit two powerful-sounding students t...
I am a fan of anime, and I hear about a lot that comes through, but one that escaped my attention until now is A Certain Scientific Railgun T, and that name is very enticing. If it's new to you too, then players of Blue Archive can get a hands-on... | Read more »
Top Hat Studios unveils a new gameplay t...
There are a lot of big games coming that you might be excited about, but one of those I am most interested in is Athenian Rhapsody because it looks delightfully silly. The developers behind this project, the rather fancy-sounding Top Hat Studios,... | Read more »
Bound through time on the hunt for sneak...
Have you ever sat down and wondered what would happen if Dr Who and Sherlock Holmes went on an adventure? Well, besides probably being the best mash-up of English fiction, you'd get the Hidden Through Time series, and now Rogueside has announced... | Read more »
The secrets of Penacony might soon come...
Version 2.2 of Honkai: Star Rail is on the horizon and brings the culmination of the Penacony adventure after quite the escalation in the latest story quests. To help you through this new expansion is the introduction of two powerful new... | Read more »
The Legend of Heroes: Trails of Cold Ste...
I adore game series that have connecting lore and stories, which of course means the Legend of Heroes is very dear to me, Trails lore has been building for two decades. Excitedly, the next stage is upon us as Userjoy has announced the upcoming... | Read more »
Go from lowly lizard to wicked Wyvern in...
Do you like questing, and do you like dragons? If not then boy is this not the announcement for you, as Loongcheer Game has unveiled Quest Dragon: Idle Mobile Game. Yes, it is amazing Square Enix hasn’t sued them for copyright infringement, but... | Read more »
Aether Gazer unveils Chapter 16 of its m...
After a bit of maintenance, Aether Gazer has released Chapter 16 of its main storyline, titled Night Parade of the Beasts. This big update brings a new character, a special outfit, some special limited-time events, and, of course, an engaging... | Read more »
Challenge those pesky wyverns to a dance...
After recently having you do battle against your foes by wildly flailing Hello Kitty and friends at them, GungHo Online has whipped out another surprising collaboration for Puzzle & Dragons. It is now time to beat your opponents by cha-cha... | Read more »
Pack a magnifying glass and practice you...
Somehow it has already been a year since Torchlight: Infinite launched, and XD Games is celebrating by blending in what sounds like a truly fantastic new update. Fans of Cthulhu rejoice, as Whispering Mist brings some horror elements, and tests... | Read more »

Price Scanner via MacPrices.net

May 2024 Apple Education discounts on MacBook...
If you’re a student, teacher, or staff member at any educational institution, you can use your .edu email address when ordering at Apple Education to take up to $300 off the purchase of a new MacBook... Read more
Clearance 16-inch M2 Pro MacBook Pros in stoc...
Apple has clearance 16″ M2 Pro MacBook Pros available in their Certified Refurbished store starting at $2049 and ranging up to $450 off original MSRP. Each model features a new outer case, shipping... Read more
Save $300 at Apple on 14-inch M3 MacBook Pros...
Apple has 14″ M3 MacBook Pros with 16GB of RAM, Certified Refurbished, available for $270-$300 off MSRP. Each model features a new outer case, shipping is free, and an Apple 1-year warranty is... Read more
Apple continues to offer 14-inch M3 MacBook P...
Apple has 14″ M3 MacBook Pros, Certified Refurbished, available starting at only $1359 and ranging up to $270 off MSRP. Each model features a new outer case, shipping is free, and an Apple 1-year... Read more
Apple AirPods Pro with USB-C return to all-ti...
Amazon has Apple’s AirPods Pro with USB-C in stock and on sale for $179.99 including free shipping. Their price is $70 (28%) off MSRP, and it’s currently the lowest price available for new AirPods... Read more
Apple Magic Keyboards for iPads are on sale f...
Amazon has Apple Magic Keyboards for iPads on sale today for up to $70 off MSRP, shipping included: – Magic Keyboard for 10th-generation Apple iPad: $199, save $50 – Magic Keyboard for 11″ iPad Pro/... Read more
Apple’s 13-inch M2 MacBook Airs return to rec...
Apple retailers have 13″ MacBook Airs with M2 CPUs in stock and on sale this weekend starting at only $849 in Space Gray, Silver, Starlight, and Midnight colors. These are the lowest prices currently... Read more
Best Buy is clearing out iPad Airs for up to...
In advance of next week’s probably release of new and updated iPad Airs, Best Buy has 10.9″ M1 WiFi iPad Airs on record-low sale prices for up to $200 off Apple’s MSRP, starting at $399. Sale prices... Read more
Every version of Apple Pencil is on sale toda...
Best Buy has all Apple Pencils on sale today for $79, ranging up to 39% off MSRP for some models. Sale prices for online orders only, in-store prices may vary. Order online and choose free shipping... Read more
Sunday Sale: Apple Studio Display with Standa...
Amazon has the standard-glass Apple Studio Display on sale for $300 off MSRP for a limited time. Shipping is free: – Studio Display (Standard glass): $1299.97 $300 off MSRP For the latest prices and... Read more

Jobs Board

Liquor Stock Clerk - S. *Apple* St. - Idaho...
Liquor Stock Clerk - S. Apple St. Boise Posting Begin Date: 2023/10/10 Posting End Date: 2024/10/14 Category: Retail Sub Category: Customer Service Work Type: Part Read more
*Apple* App Developer - Datrose (United Stat...
…year experiencein programming and have computer knowledge with SWIFT. Job Responsibilites: Apple App Developer is expected to support essential tasks for the RxASL Read more
Omnichannel Associate - *Apple* Blossom Mal...
Omnichannel Associate - Apple Blossom Mall Location:Winchester, VA, United States (https://jobs.jcp.com/jobs/location/191170/winchester-va-united-states) - Apple Read more
Operations Associate - *Apple* Blossom Mall...
Operations Associate - Apple Blossom Mall Location:Winchester, VA, United States (https://jobs.jcp.com/jobs/location/191170/winchester-va-united-states) - Apple Read more
Cashier - *Apple* Blossom Mall - JCPenney (...
Cashier - Apple Blossom Mall Location:Winchester, VA, United States (https://jobs.jcp.com/jobs/location/191170/winchester-va-united-states) - Apple Blossom Mall Read more
All contents are Copyright 1984-2011 by Xplain Corporation. All rights reserved. Theme designed by Icreon.