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

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 »
Top Mobile Game Discounts
Every day, we pick out a curated list of the best mobile discounts on the App Store and post them here. This list won't be comprehensive, but it every game on it is recommended. Feel free to check out the coverage we did on them in the links below... | Read more »
Marvel Future Fight celebrates nine year...
Announced alongside an advertising image I can only assume was aimed squarely at myself with the prominent Deadpool and Odin featured on it, Netmarble has revealed their celebrations for the 9th anniversary of Marvel Future Fight. The Countdown... | Read more »
HoYoFair 2024 prepares to showcase over...
To say Genshin Impact took the world by storm when it was released would be an understatement. However, I think the most surprising part of the launch was just how much further it went than gaming. There have been concerts, art shows, massive... | Read more »

Price Scanner via MacPrices.net

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
AT&T has the iPhone 14 on sale for only $...
AT&T has the 128GB Apple iPhone 14 available for only $5.99 per month for new and existing customers when you activate unlimited service and use AT&T’s 36 month installment plan. The fine... Read more
Amazon is offering a $100 discount on every M...
Amazon is offering a $100 instant discount on each configuration of Apple’s new 13″ M3 MacBook Air, in Midnight, this weekend. These are the lowest prices currently available for new 13″ M3 MacBook... Read more
You can save $300-$480 on a 14-inch M3 Pro/Ma...
Apple has 14″ M3 Pro and M3 Max MacBook Pros in stock today and available, Certified Refurbished, starting at $1699 and ranging up to $480 off MSRP. Each model features a new outer case, shipping is... Read more
24-inch M1 iMacs available at Apple starting...
Apple has clearance M1 iMacs available in their Certified Refurbished store starting at $1049 and ranging up to $300 off original MSRP. Each iMac is in like-new condition and comes with Apple’s... Read more
Walmart continues to offer $699 13-inch M1 Ma...
Walmart continues to offer new Apple 13″ M1 MacBook Airs (8GB RAM, 256GB SSD) online for $699, $300 off original MSRP, in Space Gray, Silver, and Gold colors. These are new MacBook for sale by... Read more
B&H has 13-inch M2 MacBook Airs with 16GB...
B&H Photo has 13″ MacBook Airs with M2 CPUs, 16GB of memory, and 256GB of storage in stock and on sale for $1099, $100 off Apple’s MSRP for this configuration. Free 1-2 day delivery is available... Read more
14-inch M3 MacBook Pro with 16GB of RAM avail...
Apple has the 14″ M3 MacBook Pro with 16GB of RAM and 1TB of storage, Certified Refurbished, available for $300 off MSRP. Each MacBook Pro features a new outer case, shipping is free, and an Apple 1-... Read more
Apple M2 Mac minis on sale for up to $150 off...
Amazon has Apple’s M2-powered Mac minis in stock and on sale for $100-$150 off MSRP, each including free delivery: – Mac mini M2/256GB SSD: $499, save $100 – Mac mini M2/512GB SSD: $699, save $100 –... Read more
Amazon is offering a $200 discount on 14-inch...
Amazon has 14-inch M3 MacBook Pros in stock and on sale for $200 off MSRP. Shipping is free. Note that Amazon’s stock tends to come and go: – 14″ M3 MacBook Pro (8GB RAM/512GB SSD): $1399.99, $200... Read more

Jobs Board

Sublease Associate Optometrist- *Apple* Val...
Sublease Associate Optometrist- Apple Valley, CA- Target Optical Date: Apr 20, 2024 Brand: Target Optical Location: Apple Valley, CA, US, 92307 **Requisition Read more
*Apple* Systems Administrator - JAMF - Syste...
Title: Apple Systems Administrator - JAMF ALTA is supporting a direct hire opportunity. This position is 100% Onsite for initial 3-6 months and then remote 1-2 Read more
Relationship Banker - *Apple* Valley Financ...
Relationship Banker - Apple Valley Financial Center APPLE VALLEY, Minnesota **Job Description:** At Bank of America, we are guided by a common purpose to help Read more
IN6728 Optometrist- *Apple* Valley, CA- Tar...
Date: Apr 9, 2024 Brand: Target Optical Location: Apple Valley, CA, US, 92308 **Requisition ID:** 824398 At Target Optical, we help people see and look great - and Read more
Medical Assistant - Orthopedics *Apple* Hil...
Medical Assistant - Orthopedics Apple Hill York Location: WellSpan Medical Group, York, PA Schedule: Full Time Sign-On Bonus Eligible Remote/Hybrid Regular Apply Now Read more
All contents are Copyright 1984-2011 by Xplain Corporation. All rights reserved. Theme designed by Icreon.