• MacTech Network:
  • Tech Support
  • |
  • MacForge.net
  • |
  • Apple News
  • |
  • Register Domains
  • |
  • SSL Certificates
  • |
  • iPod Deals
  • |
  • Mac Deals
  • |
  • Mac Book Shelf

MAC TECH

  • Home
  • Magazine
    • About MacTech in Print
    • Issue Table of Contents
    • Subscribe
    • Risk Free Sample
    • Back Issues
    • MacTech DVD
  • Archives
    • MacTech Print Archives
    • MacMod
    • MacTutor
    • FrameWorks
    • develop
  • Forums
  • News
    • MacTech News
    • MacTech Blog
    • MacTech Reviews and KoolTools
    • Whitepapers, Screencasts, Videos and Books
    • News Scanner
    • Rumors Scanner
    • Documentation Scanner
    • Submit News or PR
    • MacTech News List
  • Store
  • Apple Expo
    • by Category
    • by Company
    • by Product
  • Job Board
  • Editorial
    • Submit News or PR
    • Writer's Kit
    • Editorial Staff
    • Editorial Calendar
  • Advertising
    • Benefits of MacTech
    • Mechanicals and Submission
    • Dates and Deadlines
    • Submit Apple Expo Entry
  • User
    • Register for Ongoing Raffles
    • Register new user
    • Edit User Settings
    • Logout
  • Contact
    • Customer Service
    • Webmaster Feedback
    • Submit News or PR
    • Suggest an article
  • Connect Tools
    • MacTech Live Podcast
    • RSS Feeds
    • Twitter

ADVERTISEMENT
Volume Number:10
Issue Number:10
Column Tag:Think Top 10

Think Top 10

By Mark B. Baldwin and Craig Connor, Symantec Technical Support

This is a monthly column written by Symantec’s Technical Support Engineers intended to provide you with information on Symantec products. Each month we cover either a specific application of tools or a “Q&A” list.

Q. Can pointers to base classes be cast as pointers to derived classes?

A. Yes. Run-Time Type Identification (RTTI), allows the safe casting of base class pointers to derived classes. If the cast is not allowed, a NULL pointer is returned.

Q. How come I get an error when I declare a variable of any type with the name 'v' or 'h'?

A. There’s an enumeration in Types.h that looks like:

     
     enum { h, v };
     

which clutters the namespace for both h and v.

Q. Using TCL, when I create a series of CEditText panes in a window, why are they placed at seemingly random places on the screen?

A. The coordinates that you are setting for your CEditText object are not being interpreted as window coordinates. Have your object call FrameToWindR(Rect *windowCoordinates). This will adjust the frame of the pane to the correct position on the screen.

Q. Why doesn’t the example in the manual for CArrayIterator work? I get the following:

     File "CPtrArrayIterator_myClass.cp"; Line 7
     Error:   'gAncestors' is not a member of struct 
     'CPtrArrayIterator<myClass>'
     
     File "CPtrArrayIterator_myClass.cp"; Line 9
     Error:   unable to open input file 'CPtrArrayIterator.tem'

A. The example in the manual for CArrayIterator is incorrect. 1) Remove the line for TCL_DEFINE_CLASS. You do this because the base class for CArrayIterator is not an RTTI class. 2) Remove the #include CArrayIterator.tem. This file does not get created because you are no longer calling TCL_DEFINE_CLASS.

Q. How do I change the foreground/ background color of a CStaticText?

A. Instantiate a pointer to your CStaticText object, or if you are using VA, find where the object pointer is created in x_CMain. Then use the following formula:


/* 1 */
((*CColorTextEnvirons)myCStaticText->itsEnvirons)
 ->SetColorInfo(*RGBColor forecolor, *RGBColor backcolor);  

Notice we cast from a base to a derived class CEnvrirons to a derived class CColorTextEnvirons.

Q. How do I read in a CBitMapPane?

A. Try the following code segment. It reads a bitmap from a file and assigns it to a CBitMapPane object.

     
/* 2 */
    CPNTGFile   *theFile = NULL;
    SFTypeList  myList;
    SFReply theReply;
    Point   where;
     
    where.h=120;  where.v=190;  // SF dialog window position
             
    myList[0]='PNTG';
         
    SFGetFile(where,0,NULL,1,myList,0,&theReply);
         
    if(theReply.good)
    {
        theFile = new CPNTGFile;   // Make a File object and read the
        theFile->SFSpecify(&theReply);// data into a new BitMap
        theFile->Open(fsRdWrPerm);
        theBitMap = ((CPNTGFile *)itsFile)->ReadNewBitMap(TRUE);
     
        myBitMapPane->SetBitMap(theBitMap);
    }

Q. How do I use VA to make CIconButtons work like radio buttons? It works when I do a Try Out, but then the code is not generated.

A. Version 7.0.3 fixes this problem. Download the 7.0.3 Patch from an on-line service.

Q. How do I make a PICTGrid in a Window using VA?

A. Create the window you want to use. Temporarily create a tear-off menu view, and copy the PICTGrid from the menu, and paste it into your window. Then delete the tear-off menu.

Q. Everytime I create a VA project it takes a very long time to compile. How can I reduce the compile time?

A. Open the “Project Models:Visual Architect:@1.1” file, and compile it. From now on, the TCL files will be compiled upon the creation of a new VA project.

Q. How do I add a new project type to the project models that appear in the New Project Dialog?

A. Create a new project, include the files and libraries you want, compile it, and copy the whole folder over to the Project Models folder. Name the project file “@1.1”. The “@1” will be replaced with the project name you specify. If you have trouble, take a look at the existing project models to see the naming convention for the project files.

Special Thanks To

Steve Howard, Michael Hopkins, Colen Garoutte-Carson, Rick Hartmann, Kevin Irlen, Yuen Li, Celso Barriga, Scott Shurr, and Chris Prinos, et al.

 
MacTech Only Search:
Community Search:

 
 
 

 
 
 
 
 
  • SPREAD THE WORD:
  • Slashdot
  • Digg
  • Del.icio.us
  • Reddit
  • Newsvine
  • Generate a short URL for this page:



MacTech Magazine. www.mactech.com
Toll Free 877-MACTECH, Outside US/Canada: 805-494-9797
MacTech is a registered trademark of Xplain Corporation. Xplain, "The journal of Apple technology", Apple Expo, Explain It, MacDev, MacDev-1, THINK Reference, NetProfessional, Apple Expo, MacTech Central, MacTech Domains, MacNews, MacForge, and the MacTutorMan are trademarks or service marks of Xplain Corporation. Sprocket is a registered trademark of eSprocket Corporation. Other trademarks and copyrights appearing in this printing or software remain the property of their respective holders.
All contents are Copyright 1984-2010 by Xplain Corporation. All rights reserved. Theme designed by Icreon.
 
Nov. 20: Take Control of Syncing Data in Sow Leopard' released
Nov. 19: Cocktail 4.5 (Leopard Edition) released
Nov. 19: macProVideo offers new Cubase tutorials
Nov. 18: S Stardom anounces Safe Capsule, a companion piece for Apple's
Nov. 17: Ableton releases Max for Live
Nov. 17: Ableton releases Max for Live
Nov. 17: Ableton releases Max for Live
Nov. 17: Ableton releases Max for Live
Nov. 17: Ableton releases Max for Live
Nov. 17: Ableton releases Max for Live
Nov. 17: Ableton releases Max for Live
Nov. 17: Ableton releases Max for Live
Nov. 17: Ableton releases Max for Live
Nov. 17: Ableton releases Max for Live