• 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:8
Column Tag:Tips &Tidbits

Tips &Tidbits

By Scott T Boyd, Editor

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

Got a developer tip you’ve been keeping to yourself but really need to share? Think you have a better trick up your sleeve? Send us your tips and tricks, especially programming-related tips, but don’t hold back if you’ve got programmer’s user tips.

We want your tips! We pay $25 for every tip used, and $50 for Tip of the Month. You can take your award in orders or subscriptions if you prefer.

Make sure code compiles, and send tips by e-mail. See page two for our addresses.

Tip Of The Month

TCL 2.0 Startup Splash Screen

Version 2.0 of the TCL introduced a new method in CApplication called ShowSplashScreen(). This method is called at startup in CApplication::DoRun(), prior to the program handling any AppleEvents. Although the Visual Architect can be used to create the code neccessary for a splash screen, it is much simpler for you to write your own by hand, especially if all you want to do is display a PICT resource for a number of seconds. This is especially true if you want to add a splash screen to projects you are converting from 1.1.3.

To use the code below, override ShowSplashScreen() in your own CApplication derived class, and then make sure the source file contains all of the code outlined below. Features of the code are: TCL 2.0 use of constructors with default arguments; moving the window offscreen prior to calling Select() & Prepare(), thus preventing the user at staring at a blank window for a second before the CPicture object can be drawn; ‘paranoid’ memory cleanup to make absolutely certain there are no memory leaks.


/* 1 */
// TCL INCLUDES 
#include   <CDecorator.h>
#include   <CPicture.h>
#include   <CWindow.h>
// EXTERN GLOBALS 
extern   CDecorator   *gDecorator;

void myCApplication::ShowSplashScreen(void)
{
const short kProcID = dBoxProc,          // Window Manager window type 
= 1
                      kPicResID = 2000,// PICT resource ID
                      kPICTx = 250,// Width of PICT in pixels
                      kPICTy = 130;// Height   "
const longkDuration = 120;// Delay for @ 2 secs ( = 120/60 )
CDirector    *myDir = NULL; // TCL based object pointers...
CWindow      *myWindow = NULL;
CPicture     *myPicture = NULL;
Rect         aRect = {0, 0, kPICTy, kPICTx};
long         finalTick = 0;

myDir = new CDirector(this);// Create Bureaucrat & Window
myWindow = new CWindow(&aRect, false, kProcID, false, false, myDir);
myPicture = new CPicture(myWindow, myDir);   // Create CPicture object
myPicture->FitToEnclFrame(true, true);
::SetRect(&aRect, 2, 2, -2, -2);   // Shrink enclosure by 2 pixels
myPicture->ChangeSize(&aRect, false);
myPicture->UsePICT(kPicResID);// Grab PICT from resource
myWindow->MoveOffScreen();  // Get ready for drawing
myWindow->Select();
myPicture->Prepare();
gDecorator->CenterWindow(myWindow);// Need window on screen to draw PICT
myPicture->Draw(&aRect);       // Rect param is not really needed
::Delay(kDuration, &finalTick);  /* Delay long enough for user to read 
screen  */
myDir->CloseWind(myWindow); // Close window & tidy up memory
TCLForgetObject(myDir);
if (myPicture != NULL)
  TCLForgetObject(myPicture);
}

- Andrew Nemeth, Warrimoo Australia

Drop Everything

AppMaker (from Bowers Development) is a great development tool, but you can only drop AppMaker files on AppMaker (with System 7). You can change AppMaker drop other files (such as ResEdit and Resorcerer files) onto AppMaker’s icon to open them:

1) Open AppMaker with a resource tool, such as ResEdit.

2) Open the FREF resource, and open resource ID 203.

3) Change the file type from '????' to '****'.

4) Save your changes, and rebuild your desktop.

That’s it. You should be able to now drop any file onto AppMaker’s icon, and AppMaker will open it. If it doesn’t work, double-check the FREF (and possibly the BNDL) resources.

- Bill Modesitt, Maui Software

 
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