TweetFollow Us on Twitter

TCL and VA
Volume Number:11
Issue Number:10
Column Tag:Getting Started

TCL and Visual Architect, Part 1

By Dave Mark, MacTech Magazine Regular Contributing Author

Note: Source code files accompanying article are located on MacTech CD-ROM or source code disks.

Last month we took a first look at PowerPlant and Constructor, the class library and interface construction tool that comes with every copy of CodeWarrior from Metrowerks. This month, we’ll cross the aisle and take a look at Symantec’s counterparts, the Think Class Library (better known as the TCL) and Visual Architect (VA).

About Symantec C++
for Macintosh

When you buy CodeWarrior, you get a PowerPC compiler and a separate 68K compiler. Version 8.0 of Symantec C++ takes a slightly different approach. Version 8.0 comes with a complete rewrite of the THINK Project Manager, known as the Symantec Project Manager (SPM). Though the SPM can run on both 68K and PowerPC platforms, it is currently only capable of generating PowerPC native code. To generate 68K code, you’ll need to use version 7.0.4 of the THINK Project Manager (TPM) (it’s installed in the same tree as SPM, automatically, when you install SC++ 8.0). The 8.0 CD includes both SPM and TPM. According to Chris Prinos (a Symantec engineer and one heckuva nice guy), both of these environments are source code compatible. In other words, you can maintain a single source code base and compile it with 7.0.4 if you want 68K code and 8.0 to generate PowerPC code. I haven’t tested this theory yet, and I’d like to get feedback from you about compiling across environments.

The SC++ User’s Guide that comes with 8.0 includes some tutorials showing you how to create a user interface using Visual Architect and how to implement that interface using the TCL. One of the tutorials (User’s Guide, Chapter 14) is very similar to the PowerPlant example we went through last month and is perfect for this month’s column.

If you have a copy of the User’s Guide, you’ll see that I’ve split the Chapter 14 tutorial into two parts. This month, we’ll get to know Visual Architect and use it to create a basic TCL project. Sorry to split the column in two, but there just isn’t enough space to do the whole thing in one swell foop.

Create A New Project

In last month’s column, we created our PowerPlant project by duplicating an existing project. We could have taken advantage of PowerPlant’s canned project models to create the new project instead. That’s the exact approach we’ll use to create our new TCL project.

• Create a new folder (anywhere outside the Symantec C++ for Power Mac folder) named Button ƒ.

• Go into the Symantec C++ for Power Mac folder and double-click on the Symantec Project Manager application. If you don’t have access to a PowerMac, use the THINK Project Manager instead and follow along as best you can (Either way, you will be using the same version of Visual Architect).

The Symantec Project Manager (also known as SPM) will prompt you for the name of a file to open.

• Click on the New Project button.

SPM will prompt you to name your new project and to select the project model that will be used to produce the project.

• Type in the name Button.Π and select VA Application from the popup menu, then click the Save button.

The Button.Π project window will appear (See Figure 1). The file Project Resources.rsrc contains the basic set of resources used for a TCL application. Once you get through this column and get your program working, take some time to explore the resources that come with the generic VA project. For now, we’ll just use the resources we’ve got.

Figure 1. The Button.Π project window.

Here’s a quick tour of the project window. The Headers popup presents you with a list of all the header files accessed by your project. A file’s headers are not added to the list until the file is compiled. If you control-click on the popul, the list will also include the headers from any precompiled headers used by the project.

The second popup, labeled Options, lets you apply different sets of preferences to your project. To build a custom options set, select Options... from the Project menu. Make changes to the various option panes, then select Save Options As... from the Options: popup menu to give your current settings a name. This new set is now available from the Options popup in the project window. While it is nice to be able to switch between options within a project, it sure would be nice to be able to create a master set of options for all projects, or to create several sets and export them to other projects. Maybe in 8.0.4? By the way, all the options are recordable, so you can create a script to set up a project’s options.

If you click on one of the four column headers, a small down-arrow will appear to the left of the column label. Once the arrow is in place, click on it again to change the sorting order of the project files. For example, clicking on the word Code lets you order the files by object code size, switching between low to high or between high to low.

The check-mark column corresponds to CodeWarrior’s “touch” popup menu. It lets you mark a file as either needing to be compiled or (assuming it was compiled at some point) as already compiled. If you upgrade to 8.0.3, the Make status is shows for groups as well as for individual files.


The file Visual Architect.rsrc contains special resources used by Visual Architect to define your program’s views and panes within views. Though you can browse this file using your favorite resource editor, there is really no reason. Leave this resource file to Visual Architect!

The group of files labeled Runtime Libraries contains the support libraries SPM needs to build your application. The group labeled THINK Class Library contains the source code that implements all of the TCL classes. In last month’s program, we added the PowerPlant classes we needed to our project as we identified them. The “VA Application” project model adds a complete set of TCL files to the project. Open the THINK Class Library group (click on the triangle to the left of the group) and look through the TCL files. The up side to this approach is that you’ll never have to search for the TCL classes you’ll need. They’ll already be part of your project. The down side of this strategy is that the project file will have a base size (when compiled) of about 10 megs (yikes!). Of course, if you’ve got a gigabyte hard drive, 10 megs isn’t that much space. With the objects removed, your project folder will weigh in at about 165K.

Using the shared library project model saves space because the TCL portion is a separate sub-project that gets shared among all the projects that use it. You still retail full debugging capabilities, and both the TCL project and your application project can be open at the same time (the SPM allows you to have any number of projects open, unlike the TPM or Code Warrior).

Opening Visual Architect

At this point, your project lacks a core, that is, the set of functions (like main()) that drive your application. The source code files containing these functions will be generated by Visual Architect once you define your user interface. That’s exactly what you’ll do now.

Figure 2. The main VA window showing the views in Visual Architect.rsrc.

• In the Button.Π project window, double-click on the file named Visual Architect.rsrc.

SPM will launch Visual Architect, opening the copy of Visual Architect.rsrc in the folder Beeper ƒ. The window that appears (Figure 2) lists the views defined in this file. By default, the file comes with a single view named Main.

• Double-click on the word Main in the view window.

A window will appear showing the panes in the view named Main.

• Select Show Item Numbers from the Options menu.

Item numbers will appear next to each of the two window panes (Figure 3). The Main view features a PICT pane (1) and a static text pane (2). Think of the view as some type of window and the list of panes as an item list just like the DITL in a dialog.

Figure 3. The Main view, showing each of the two panes.
Item numbers are turned on.

If you double-click on a pane (or single-click on a pane and select Pane Info... from the Pane menu) a pane browsing window will appear. Figure 4 shows the pane browser for the static text pane. The browser lets you specify a name for the pane, as well as its boundaries (you can also set the boundaries by dragging the panes handle in the view window). The bottom half of the browser lists the pane’s class, as well as each of the classes that class is derived from. Clicking on the triangle to the left of a class name gives you access to that classes’ data members. If you’ve ever used the TCL before, the data members will probably look familiar to you.

Figure 4. The browser for the static text pane.

• Change the hText field in the CEditText class to something like
“Semper Fi”.

• Select Try Out from the View menu.

A window will appear emulating the current view (in this case, Main). Play with the window. Resize it. Scroll it. Drag it around the screen. When you are done, just click the close box and it will go away.

Our next step is to build an application based on the Main view. We’ll ask Visual Architect to generate the source code that implements this view and to add that code to our project.

• Select Generate All... from the Symantec Project Manager menu. The SPM menu is the diamond-shaped menu (square if you are using THINK Project Manager) immediately to the right of the Windows menu.

If the Generate All... item is disabled, try closing the front-most window. The item is disabled if the front-most window is a pane info window.

• When prompted to save your changes, click the OK button.

Once you click OK, a fancy color cursor will appear and Visual Architect will go to town, generating all the code your project needs to implement the Main view. Let’s take the view for a spin.

Back in the Symantec Project Manager

Switch back to the Symantec Project Manager and take another look at the project window. Notice that a new group, named Source, has been added to the project.

• Click on the triangle to the left of the group Source.

Figure 5 shows the new, updated project window. Seven new files have been added to the project. Two of these, x_CApp.cp and x_CMain.cp, are off limits to you. Don’t mess with these files (feel free to look them over - just don’t change anything). If you go back into Visual Architect and make changes to Visual Architect.rsrc, then select Generate from the SPM menu, VA will generate new versions of these x_ files. As you’ll see, the x_ files contain member functions that you’ll override in the non-x_ files. For example, the file x_CMain.cp contains the source code that implements the Main view. The file CMain.cp contains member functions that override the member functions in x_CMain.cp. Make your changes to CMain.cp. Leave x_CMain.cp alone.

Symantec calls these x_ files “lower layer” files and the non x_ files “upper layer” files.

Figure 5. The Button.Π project window with the new source code added.

As you add more views to your VA file, VA will generate a pair of .cp files for each new view. If you add a view called ButtonDialog, VA will generate the files CButtonDialog.cp and x_CButtonDialog.cp.

The file CSaver_CMain.cpp was generated because the useFile checkbox in the view info window for Main was checked. Checking this checkbox tells VA that a file is to be associated with this view. The class CSaver_CMain contains the functions that save and restore this file.

The file main.cp contains the project’s main() function.

• Select Run from the Project menu.

If the item reads Run With Debugger instead of Run, press the option-key while the Project menu is still down and the item name will change to Run. This is cool to watch.

The file References.cp forces references to all the TCL classes and keeps the linker from linking out classes that are not referenced in the code, but are instantiated at run time. For example, there is a function called new_by_name() that takes, as a parameter, a class name embedded in a quoted string. Since the compiler doesn’t recognize the class name (since it’s represented as a string instead of an identifier), it doesn’t reference the class and the linker might link that class out. Visual Architect uses new_by_name_() to turn its resources into objects at run time. The set of classes Visual Architect uses to represent views and panes, therefore, must not be linked out. That’s why they are all listed in References.cp. Basically, leave this file alone, unless you need to add your own classes to it. We’ll do that in a future issue.

If you get an “Out of Memory” error, you may not have enough RAM on your machine. Try quitting all your open apps, including Visual Architect and SPM, then relaunch SPM and try again. If that doesn’t work, pick up a copy of RAM Doubler. (Get the special Symantec Debugger-friendly version of 1.5.2. You can download the patch anywhere RAM Doubler is supported.)

You may also run out of room on your hard drive, since the project will take up about 10 megs of space and the application another meg. If you are worried about space, stop the compile by typing command-period and start deleting.

Once SPM starts to compile your project, go get a Fresca, take a shower, read your email, whatever. Even on a PowerMac 8100, this will take a while. SPM will compile all the new source code, along with all of the TCL. There should be approximately 157 files to update. Once everything compiles, SPM will create an application (called Button.Π.pef) and run it. A window will appear that displays the Main view. Play with the window. Resize it, scroll it, and close it if you like. Select New from the File menu to create additional Main view windows.

Till Next Month...

In next month’s column, we’ll go back to Visual Architect and add a second view to our project. This view will consist of a dialog box with an editable text field and a few buttons. We’ll also add a button to the Main view that will bring up the ButtonDialog view. Finally, we’ll ask Visual Architect to regenerate the source code, then go back into the Symantec Project Manager, and modify the source code to account for the changes we made in VA.

In the meantime, you may want to check your neighborhood bookstore for a book called Mastering the THINK Class Library by Richard Parker. The book just came out, and really does a great job of presenting the TCL from stem to stern. Way to go, Rich!

See you next month...

 

Community Search:
MacTech Search:

Software Updates via MacUpdate

Latest Forum Discussions

See All

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 »
Summon your guild and prepare for war in...
Netmarble is making some pretty big moves with their latest update for Seven Knights Idle Adventure, with a bunch of interesting additions. Two new heroes enter the battle, there are events and bosses abound, and perhaps most interesting, a huge... | Read more »
Make the passage of time your plaything...
While some of us are still waiting for a chance to get our hands on Ash Prime - yes, don’t remind me I could currently buy him this month I’m barely hanging on - Digital Extremes has announced its next anticipated Prime Form for Warframe. Starting... | Read more »
If you can find it and fit through the d...
The holy trinity of amazing company names have come together, to release their equally amazing and adorable mobile game, Hamster Inn. Published by HyperBeard Games, and co-developed by Mum Not Proud and Little Sasquatch Studios, it's time to... | Read more »
Amikin Survival opens for pre-orders on...
Join me on the wonderful trip down the inspiration rabbit hole; much as Palworld seemingly “borrowed” many aspects from the hit Pokemon franchise, it is time for the heavily armed animal survival to also spawn some illegitimate children as Helio... | Read more »
PUBG Mobile teams up with global phenome...
Since launching in 2019, SpyxFamily has exploded to damn near catastrophic popularity, so it was only a matter of time before a mobile game snapped up a collaboration. Enter PUBG Mobile. Until May 12th, players will be able to collect a host of... | Read more »
Embark into the frozen tundra of certain...
Chucklefish, developers of hit action-adventure sandbox game Starbound and owner of one of the cutest logos in gaming, has released their roguelike deck-builder Wildfrost. Created alongside developers Gaziter and Deadpan Games, Wildfrost will... | Read more »
MoreFun Studios has announced Season 4,...
Tension has escalated in the ever-volatile world of Arena Breakout, as your old pal Randall Fisher and bosses Fred and Perrero continue to lob insults and explosives at each other, bringing us to a new phase of warfare. Season 4, Into The Fog of... | Read more »

Price Scanner via MacPrices.net

New today at Apple: Series 9 Watches availabl...
Apple is now offering Certified Refurbished Apple Watch Series 9 models on their online store for up to $80 off MSRP, starting at $339. Each Watch includes Apple’s standard one-year warranty, a new... Read more
The latest Apple iPhone deals from wireless c...
We’ve updated our iPhone Price Tracker with the latest carrier deals on Apple’s iPhone 15 family of smartphones as well as previous models including the iPhone 14, 13, 12, 11, and SE. Use our price... Read more
Boost Mobile will sell you an iPhone 11 for $...
Boost Mobile, an MVNO using AT&T and T-Mobile’s networks, is offering an iPhone 11 for $149.99 when purchased with their $40 Unlimited service plan (12GB of premium data). No trade-in is required... Read more
Free iPhone 15 plus Unlimited service for $60...
Boost Infinite, part of MVNO Boost Mobile using AT&T and T-Mobile’s networks, is offering a free 128GB iPhone 15 for $60 per month including their Unlimited service plan (30GB of premium data).... Read more
$300 off any new iPhone with service at Red P...
Red Pocket Mobile has new Apple iPhones on sale for $300 off MSRP when you switch and open up a new line of service. Red Pocket Mobile is a nationwide MVNO using all the major wireless carrier... Read more
Clearance 13-inch M1 MacBook Airs available a...
Apple has clearance 13″ M1 MacBook Airs, Certified Refurbished, available for $759 for 8-Core CPU/7-Core GPU/256GB models and $929 for 8-Core CPU/8-Core GPU/512GB models. Apple’s one-year warranty is... Read more
Updated Apple MacBook Price Trackers
Our Apple award-winning MacBook Price Trackers are continually updated with the latest information on prices, bundles, and availability for 16″ and 14″ MacBook Pros along with 13″ and 15″ MacBook... Read more
Every model of Apple’s 13-inch M3 MacBook Air...
Best Buy has Apple 13″ MacBook Airs with M3 CPUs in stock and on sale today for $100 off MSRP. Prices start at $999. Their prices are the lowest currently available for new 13″ M3 MacBook Airs among... Read more
Sunday Sale: Apple iPad Magic Keyboards for 1...
Walmart has Apple Magic Keyboards for 12.9″ iPad Pros, in Black, on sale for $150 off MSRP on their online store. Sale price for online orders only, in-store price may vary. Order online and choose... Read more
Apple Watch Ultra 2 now available at Apple fo...
Apple has, for the first time, begun offering Certified Refurbished Apple Watch Ultra 2 models in their online store for $679, or $120 off MSRP. Each Watch includes Apple’s standard one-year warranty... Read more

Jobs Board

DMR Technician - *Apple* /iOS Systems - Haml...
…relevant point-of-need technology self-help aids are available as appropriate. ** Apple Systems Administration** **:** Develops solutions for supporting, deploying, 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
IT Systems Engineer ( *Apple* Platforms) - S...
IT Systems Engineer ( Apple Platforms) at SpaceX Hawthorne, CA SpaceX was founded under the belief that a future where humanity is out exploring the stars is Read more
All contents are Copyright 1984-2011 by Xplain Corporation. All rights reserved. Theme designed by Icreon.