TweetFollow Us on Twitter

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

TCL and Visual Architect, Part 2

By Dave Mark, MacTech Magazine Regular Contributing Author

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

In last month’s column, we took a look at Symantec’s latest development environment, including the Symantec Project Manager and Visual Architect. Following the example presented in Chapter 14 of the Symantec C++ User’s Guide, we used Visual Architect to generate source code to implement the single, default view named Main. We then returned to the Symantec Project Manager and compiled the code into a standalone application (See Figure 1).

Figure 1. The window that appeared when we ran last month’s program.

This month, we’re going to add a second view to our program. This second view will be a dialog that allows you to type a number into an editable text field. When you press the Beep button, the dialog will beep the specified number of times.

Adding a Second View

Go into the Button ƒ folder you created last month and double-click on the file Button.Π to launch the Symantec Project Manager. When the project window appears, double click on the file name Visual Architect.rsrc to bring up Visual Architect. This is where we’ll add the second view.

• Select New View from the View menu.

• When asked to name the new view, type BeeperDialog and make sure Modal Dialog is selected from the View Kind: popup menu (Figure 2), then press the OK button.

Figure 2. Naming the new view.

The name BeeperDialog will be used as the basis for a new class, called CBeeperDialog. The next time you select Generate from Visual Architect’s Symantec Project Manager menu, Visual Architect will generate the files CBeeperDialog.cp, CBeeperDialog.h, x_CBeeperDialog.cp, and x_CBeeperDialog.h. First, we’ll add a few items to this dialog and then add a button to our Main view that brings up the dialog.

Once you press the OK button, a view window will appear with the name BeeperDialog.

• Select View Info from the View menu.

A view info window titled Dialog Info will appear (Figure 3). The view info window, which looks a lot like a ResEdit or Resorcerer WIND templat, lets you customize the look of your new dialog window.

Figure 3. The view info window for the BeeperDialog view.

• Click on the movable modal dialog icon (the second from the right) or type “5” in the procID: field.

• Click on the OK button to dismiss the dialog.

Your next step is to add some items to the dialog.

• Click on the Tools menu and drag down until the tool palette outline appears.

When you release the mouse button, the Tools palette window will appear (Figure 4). Take a few minutes to play with the items in this palette. In the top row, you have the selection tool, the text tool, and the editable text tool. The second row features the pushbutton tool, the radio button tool, and the check box tool. The third row features the popup menu, icon, and PICT tools. We’ll get into the rest of the tools in a future column. For now, try creating items based on the tools in the first three rows. Click on a tool, then click and drag in the BeeperDialog view window. Once you get a feel for these tools, select the selection tool (the arrow), then click on each of the items you added and press the delete key. Keep on deleting until the BeeperDialog window is empty again.

Figure 4. The Tools palette.

Now let’s add the items that make up the Beeper dialog. We’ll add four items: an OK button, a Cancel button, a static text label, and an editable text field for entering the number of beeps. We’ll start with the OK and Cancel buttons.

• Click on the button tool in the palette window.

• Click on the BeeperDialog window and drag out an OK button.

As you drag, keep your eye on the lower left corner of the window. Notice that the two coordinates listed reflect the upper left and lower right corners of the button. I made my button 80 pixels wide and 20 pixels tall with an upper left corner of (200,42).

• Click on the BeeperDialog window and drag out a Cancel button.

My Cancel button was also 80 pixels wide and 20 pixels tall. This time, the upper left corner was (107,42). Notice that VA automatically filled in the text OK for the first button and Cancel for the second button. Nice feature! Let’s change the OK to say Beep.

• Double-click on the OK button (or click on it and select Pane Info... from the Pane menu) to bring up the Pane Info window.

• Click on the triangle to the left of the class name CControl, revealing the CControl data members.

• Change contrlTitle from OK to Beep and close the Pane Info window.

Notice that the button’s name changed from OK to Beep. Now let’s add the static text label.

• Click on the static text tool (the big letter A) in the palette window.

• Click in the BeeperDialog window and type the text Number of times to beep:

• Click outside the static text to stop entering text, then click on the static text to select it. Drag it to a satisfactory position in the BeeperDialog window.

I dragged my static text so its upper-left corner was at (23,13). You might want to use the arrow keys to move the static text around the window, 4 pixels at a time. Hold down the command (Apple) key to get the arrow keys to move 1 pixel at a time. Experiment with the Shift and option keys which let you resize an item by 1 or 4 pixels in any of 4 directions.

Finally, let’s add an editable text field.

• Click on the editable text tool (to the right of the static text tool) in the palette window.

• Click on the BeeperDialog window and drag out an editable text area.

Mine had and upper left corner of (205,13) and a lower right of (280,29). Once your items are in place, resize the dialog view so it comfortably encloses the dialog items. To do that, click on the handle in the lower-right corner of the grey rectangle embedded in the BeeperDialog window. Drag the handle to its new position. I dragged mine to (293,75). The finished Beeper dialog is shown in Figure 5.

Figure 5. The finished Beeper dialog with the Beep button selected.

If you like, you can try the dialog out by selecting Try Out from the View menu. Click on one of the buttons or select Close from the File menu to close the Try Out window once you are done admiring your handiwork.

Our next task is to tell VA that our edit-text field is designed to hold only integers (as opposed to any old text).

• Click on the editable text field.

• Select Class from the Pane menu, then select CIntegerText from the submenu that appears.

Next, we need to define a new command that will get sent when the Beep button is clicked. Right now the Beep button’s command is set to cmdOK. To see that, double-click on the Beep button to bring up the Pane Info window, then click on the CButton triangle. Take a look at the Command popup menu. If you click on it, you’ll find a whole bunch of commands, all of them built into the TCL. Since there is no Beep command, we’ll need to define it ourselves, then set the Beep button to send it when clicked.

• Close the Beep Pane Info window, if you opened it to look at the Command popup.

• With the BeeperDialog window frontmost, select Commands... from the Edit menu.

• When the Commands window appears, select New Command from the Edit menu.

• Type cmdBeep in the uppermost editable text field.

• Select CBeeperDialog from the In Class: popup menu.

This tells VA which class this command belongs to.

• Select Call from the Do: popup menu.

This tells VA what you want done in response to this command. You could do nothing, you could ask VA to call a function, or you could open another view. In our case, we’ve asked VA to call a CBeeperDialog member function. We’ll get to that function in a bit.

Notice that VA automatically generated the command number 512. This is not particularly important. You’ll use the constant cmdBeep instead of 512, so there’s no reason to memorize your command numbers.

• Click on the OK button to dismiss the Commands dialog.

As you’ve probably guessed, your next step is to associate the cmdBeep command with the Beep button.

• Double-click on the Beep button to bring up the Pane Info window.

• Click on the triangle to the left of the class CButton, revealing the Command popup menu.

• Select cmdBeep from the Command popup (Figure 6).

• Close the Pane Info window.

Figure 6. The Pane Info window associated with the Beep button.
Notice that the Command popup has been set to cmdBeep.

You may have noticed that the Beep button no longer has the bold, rounded rectangle around it, specifying it as the default button, the button pressed when the user hits return. This changed because VA specifies the cmdOK command as the default. Let’s fix that.

• Select Set Default Command from the View menu.

• Select cmdBeep from the Command popup menu, then press OK.

Notice that the bold, rounded rectangle is back around the Beep button (Figure 7).

Figure 7. The BeeperDialog window, once cmdBeep is set as the default command.

We are almost done! Now we have to add a button to the Main view that brings up the Beeper dialog.

• Close the BeeperDialog view window.

• Double-click on Main in the view list window to bring up the Main view window.

• Click on the grow box in the lower left corner of the Main view window and drag down about 50 pixels.

• Click on the handle in the lower right corner of the grey bounding rectangle inside the window and drag it down about 50 pixels.

You’ve just resized the Main view to be about 50 pixels taller, making room for a new pushbutton.

• Click on the pushbutton tool (under the arrow) in the palette window.

• Click in the Main view window and drag out a new button below the PICT.

• Before you click off the button, type the word Beeper...

The button will now bear the name Beeper....

• Double-click on the Beeper... button, bringing up the button’s Pane Info window.

• Click on the triangle next to the class name CButton to reveal the CButton data members.

• Choose Other... from the top of the Command popup menu.

• When the Commands dialog appears, choose New Command from the Edit menu.

• Enter the command name cmdBeeperDialog.

• Choose CMain from the In Class: popup menu to let VA know you want the new command associated with the CMain class.

• Choose Open from the Do: popup menu.

• Choose CBeeperDialog from the View: popup menu.

We’ve just told VA that we want this new command (cmdBeeperDialog) to open the CBeeperDialog view (See Figure 8).

Figure 8. The Commands window for the new cmdBeeperDialog command.

• Click on the OK button.

Now we’ve told VA to associate this command with the Beeper... button we just created.

• Close the button’s Pane Info window to return to the Main view window (Figure 9).

Figure 9. My Main view with my new Beeper... button.

If you like, select Try Out from the View menu and take your new version of Main for a spin. Note that we haven’t put the code in place that gets called when the Beeper... button is pressed, but the scrollbars should work and the button should highlight when clicked.

Our next step is to ask VA to regenerate our source code, reflecting the new panes and commands we’ve defined.

• Select Generate... from the Symantec Project Manager menu (diamond shaped menu to the right of the Windows menu).

• When prompted to save your changes, click OK.

VA will update your existing code base. If you selected Generate All..., VA would have replaced your existing code base. Be sure you understand this difference!

Adding the New Code

Our last step is to add a few lines of code to bring all our new interface elements together.

• Return to the Symantec Project Manager.

• In the project window, click on the triangle to the left of the folder labeled Source. Skip this step if the Source folder was already opened.

• Double click on the file name “CBeeperDialog.cp”.

• Add this code to the end of CBeeperDialog.cp:

void CBeeperDialog::DoCmdBeep()
{
 long n;
 n = fBeeperDialog_Edit15->GetIntValue();
 for ( long i=0; i<n; i++ )
 SysBeep( 20 );
}

This code references the data member fBeeperDialog_Edit15. When VA generates your code, it makes up a constant for each of your dialog items. You can find these definitions in the file BeeperDialogItems.h. Here’s the constants that were generated for my version of Beeper:

enum
{
 BeeperDialog_Begin_,
 kBeeperDialog_Butn12 = 1,
 kBeeperDialog_Butn12ID = 2049L,
 kBeeperDialog_Butn13 = 2,
 kBeeperDialog_Butn13ID = 2050L,
 kBeeperDialog_Stat14 = 3,
 kBeeperDialog_Stat14ID = 2051L,
 kBeeperDialog_Stat17 = 4,
 kBeeperDialog_Stat17ID = 2053L,
 kBeeperDialog_Edit15 = 5,
 kBeeperDialog_Edit15ID = 2052L,
 BeeperDialog_End_
};

The member function GetIntValue() retrieves the value from the field that calls it (in this case, the editable text field), translates the value into an integer, and returns it. The loop uses this value to beep the specified number of times.

• Go to the top of the file and remove the comment characters (//) at the beginning of the line:

// #include   “AppCommands.h”

You’ll need to do this last step whenever your view includes at least 1 command.

• Close CBeeperDialog.cp.

That’s it! When you run the program, the Main view should appear, featuring a brand new button (Figure 10).

Figure 10. The Main view, with the Beeper... button pressed.

Press the Beeper... button. The Beeper Dialog will appear.
Type a number in the text field and press the Beep button. Happy?

Figure 11. Pressing the Beep button.

Till Next Month...

Next month, we’ll go back to PowerPlant. I just got my copy of CW7, and I’m anxious to dig into it. Hope you got your upgrades, too. 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.