Oct 94 Top 10
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 Symantecs 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. Theres 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 doesnt 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.