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

Fresh From the Land Down Under – The Tou...
After a two week hiatus, we are back with another episode of The TouchArcade Show. Eli is fresh off his trip to Australia, which according to him is very similar to America but more upside down. Also kangaroos all over. Other topics this week... | Read more »
TouchArcade Game of the Week: ‘Dungeon T...
I’m a little conflicted on this week’s pick. Pretty much everyone knows the legend of Dungeon Raid, the match-3 RPG hybrid that took the world by storm way back in 2011. Everyone at the time was obsessed with it, but for whatever reason the... | Read more »
SwitchArcade Round-Up: Reviews Featuring...
Hello gentle readers, and welcome to the SwitchArcade Round-Up for July 19th, 2024. In today’s article, we finish up the week with the unusual appearance of a review. I’ve spent my time with Hot Lap Racing, and I’m ready to give my verdict. After... | Read more »
Draknek Interview: Alan Hazelden on Thin...
Ever since I played my first release from Draknek & Friends years ago, I knew I wanted to sit down with Alan Hazelden and chat about the team, puzzle games, and much more. | Read more »
The Latest ‘Marvel Snap’ OTA Update Buff...
I don’t know about all of you, my fellow Marvel Snap (Free) players, but these days when I see a balance update I find myself clenching my… teeth and bracing for the impact to my decks. They’ve been pretty spicy of late, after all. How will the... | Read more »
‘Honkai Star Rail’ Version 2.4 “Finest D...
HoYoverse just announced the Honkai Star Rail (Free) version 2.4 “Finest Duel Under the Pristine Blue" update alongside a surprising collaboration. Honkai Star Rail 2.4 follows the 2.3 “Farewell, Penacony" update. Read about that here. | Read more »
‘Vampire Survivors+’ on Apple Arcade Wil...
Earlier this month, Apple revealed that poncle’s excellent Vampire Survivors+ () would be heading to Apple Arcade as a new App Store Great. I reached out to poncle to check in on the DLC for Vampire Survivors+ because only the first two DLCs were... | Read more »
Homerun Clash 2: Legends Derby opens for...
Since launching in 2018, Homerun Clash has performed admirably for HAEGIN, racking up 12 million players all eager to prove they could be the next baseball champions. Well, the title will soon be up for grabs again, as Homerun Clash 2: Legends... | Read more »
‘Neverness to Everness’ Is a Free To Pla...
Perfect World Games and Hotta Studio (Tower of Fantasy) announced a new free to play open world RPG in the form of Neverness to Everness a few days ago (via Gematsu). Neverness to Everness has an urban setting, and the two reveal trailers for it... | Read more »
Meditative Puzzler ‘Ouros’ Coming to iOS...
Ouros is a mediative puzzle game from developer Michael Kamm that launched on PC just a couple of months back, and today it has been revealed that the title is now heading to iOS and Android devices next month. Which is good news I say because this... | Read more »

Price Scanner via MacPrices.net

Amazon is still selling 16-inch MacBook Pros...
Prime Day in July is over, but Amazon is still selling 16-inch Apple MacBook Pros for $500-$600 off MSRP. Shipping is free. These are the lowest prices available this weekend for new 16″ Apple... Read more
Walmart continues to sell clearance 13-inch M...
Walmart continues to offer clearance, but 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 MacBooks... Read more
Apple is offering steep discounts, up to $600...
Apple has standard-configuration 16″ M3 Max MacBook Pros available, Certified Refurbished, starting at $2969 and ranging up to $600 off MSRP. Each model features a new outer case, shipping is free,... Read more
Save up to $480 with these 14-inch M3 Pro/M3...
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
Amazon has clearance 9th-generation WiFi iPad...
Amazon has Apple’s 9th generation 10.2″ WiFi iPads on sale for $80-$100 off MSRP, starting only $249. Their prices are the lowest available for new iPads anywhere: – 10″ 64GB WiFi iPad (Space Gray or... Read more
Apple is offering a $50 discount on 2nd-gener...
Apple has Certified Refurbished White and Midnight HomePods available for $249, Certified Refurbished. That’s $50 off MSRP and the lowest price currently available for a full-size Apple HomePod today... Read more
The latest MacBook Pro sale at Amazon: 16-inc...
Amazon is offering instant discounts on 16″ M3 Pro and 16″ M3 Max MacBook Pros ranging up to $400 off MSRP as part of their early July 4th sale. Shipping is free. These are the lowest prices... Read more
14-inch M3 Pro MacBook Pros with 36GB of RAM...
B&H Photo has 14″ M3 Pro MacBook Pros with 36GB of RAM and 512GB or 1TB SSDs in stock today and on sale for $200 off Apple’s MSRP, each including free 1-2 day shipping: – 14″ M3 Pro MacBook Pro (... Read more
14-inch M3 MacBook Pros with 16GB of RAM on s...
B&H Photo has 14″ M3 MacBook Pros with 16GB of RAM and 512GB or 1TB SSDs in stock today and on sale for $150-$200 off Apple’s MSRP, each including free 1-2 day shipping: – 14″ M3 MacBook Pro (... Read more
Amazon is offering $170-$200 discounts on new...
Amazon is offering a $170-$200 discount on every configuration and color of Apple’s M3-powered 15″ MacBook Airs. Prices start at $1129 for models with 8GB of RAM and 256GB of storage: – 15″ M3... Read more

Jobs Board

*Apple* Systems Engineer - Chenega Corporati...
…LLC,** a **Chenega Professional Services** ' company, is looking for a ** Apple Systems Engineer** to support the Information Technology Operations and Maintenance Read more
Solutions Engineer - *Apple* - SHI (United...
**Job Summary** An Apple Solution Engineer's primary role is tosupport SHI customers in their efforts to select, deploy, and manage Apple operating systems and Read more
*Apple* / Mac Administrator - JAMF Pro - Ame...
Amentum is seeking an ** Apple / Mac Administrator - JAMF Pro** to provide support with the Apple Ecosystem to include hardware and software to join our team and 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.