TweetFollow Us on Twitter

January 93 - Children of the DogCow

Children of the DogCow

Kent Sandvik and Jeroen Schalk

In MacApp 3.0 it is relatively easy to add extra dialog items to Standard Get File and Standard Put File. However, youhave to use normal 'DLOG' and 'DITL' resources to ac-complish this. It would be much nicer if you were able to add 'View' resources to Standard File.

Using MacApp 2.0, Danie Underwood had already created a number of patches for his MacApp Drafter application that implemented this feature. We decided to implement his ideas in MacApp 3.0 and add some extra features.

You will find that these changes are easy to add to your application. You just have to subclass your application object from TSFPApplication and your document from TSFPFileBasedDocument and override a couple of methods.

As a bonus, file filtering is also implemented as a method. There is no longer a need to write a low level file filter function. Just override the TSFPApplication.FileFilter() method.

Changing Standard File

This article won't explain in detail how to change the behavior of Standard File. A number of resources are available that explain the principle and give example code on how to do it. Suffice it to say that up to four call back routines can be installed with the Standard File routines. These callbacks are invoked by Standard File as part of its event processing:
  • The first callback is the Dialog Hook routine. It is called whenever anything significant happens in Standard File. Of importance for us are the events sfHookFirstCall, sfHookLastCall and sfHookNullEvent. sfHookFirstCall is the first event that happens (before the Standard File dialog is shown). It gives us the opportunity to add items to the dialog. sfHookLastCall gives us the opportunity to do some cleanup, e.g. delete the added view hierarchy. sfHookNullEvent is called repeatedly while the dialog is on screen. The current selection in the Standard File dialog is available for application use during this 'idle time' process.
  • The second call back is the dialog filter routine. It provides raw event data to your routine and gives you the opportunity to intercept events and handle them yourself. We want to intercept update and mouse events that are meant for our added view hierarchy and forward these to the MacApp event handling code.
  • The third callback is the File Filter routine. It is used in Standard Get File to determine which files should be displayed. It is an extension to the filtering on file type that the MacApp framework provides.
  • The fourth callback is an activation callback that can be used if extra edit items have been added to the Standard File. We ignore this callback in our code. It is only available under System 7.0.

The prototype of these callbacks is as follows under System 7.0:

typedef pascal short (*DlgHookYDProcPtr)(short item,
    DialogPtr theDialog, void *yourDataPtr);
typedef pascal Boolean (*ModalFilterYDProcPtr)(DialogPtr theDialog,
    EventRecord *theEvent, short *itemHit, void *yourDataPtr);
typedef pascal Boolean (*FileFilterYDProcPtr)(ParmBlkPtr PB,
    void *yourDataPtr);
typedef pascal void (*ActivateYDProcPtr)(DialogPtr theDialog,
    short itemNo, Boolean activating, void *yourDataPtr);

For System 6.0, the same type of callbacks are present except for the activate callback, but they lack the last parameter. This last parameter (void *yourDataPtr) allows you to pass a user defined data structure to your callback.

Strategy

Given these callbacks, our strategy is as follows:
  1. Install a dialog filter routine that will create a 'View' resource on sfHookFirstCall and add it to the Standard File dialog. Clean up is done on sfHookLastCall, and on sfHookNullEvent we let our application know which file or folder is cur-rently selected. Note that on Standard Put file, the "selected file" is the name of the file that the user is specifying.
  2. Install a dialog hook routine that will intercept selected events. We choose to intercept only the mouseDown and update events. If this mouseDown event occurs within the extent of the 'View' we have added, we will dispatch it to this view. Update events have to be first dispatched to our view hierarchy so that we can refresh the parts that Standard File can not reach. After that, we hand the update event back to Standard File so that it can redraw its own dialog items.
  3. Install a File Filter routine that creates a TFile object from the information it gets and calls one of our application methods to do the actual file filtering. This third step is relevant only for Standard Get File.

Use Of Standard File in MacApp 3.0

Standard File routines are used in two locations in MacApp 3.0. MacApp uses either the Custom routines found in System 7.0 or later releases or the old SFP (Standard File Programmer) routines.

The first use of Standard File routines is in TApplication.ChooseDocument() that is called whenever the user chooses "Open" from the File menu. It calls TApplication.GetStandardFileParameters() to get a reference to a file filter routine, a modal dialog filter routine and a dialog hook routine. It then uses either CustomGetFile() or SFPGetFile() to pose the Standard Get File dialogs.

The second use is in TFileHandler.RequestFileName(). This one calls TFileHandler.SFPutParms() to get a modal dialog filter routine and a dialog hook routine and subsequently calls CustomPutFile() or SFPPutFile().

MacApp uses a trick so that the same call back routines can be used in both the Custom…() and the SFP…() cases. In the SFP…() case, it packages the call back routines in a CallBack data structure. This data structure actually contains some assembler code that reserves space for the extra parameter, pushes that extra parameter and jumps to the original callback.

Note that there are some bugs in how this is implemented in MacApp 3.0. First of all, it can't handle the situation where you have more than one callback (as will be the case in our code). Only the modal dialog filter routine was packaged, not the other ones. A second bug could occur if you returned NULL for this modal dialog filter routine in your override of GetStandardFileParameters() or SFPutParms(). The CallBack data structure would make the code jump to zero. Not a good idea. The first thing we had to do was fix these potential problems.

Based on the use of Standard File in MacApp 3.0, we chose the following strategy to implement our changes:

  1. The class TSFPApplication was introduced. It overrides TApplication.GetStandardFileParameters() and TApplication.ChooseDocument(). We also added a method TSFPApplication.ExtraViewID() to determine the id of the 'View' resource to add and a method TSFPApplication.FileFilter() to implement a higher level file filter method.
  2. The class TSFPFileHandler was introduced. It overrides TFileHandler.RequestFileName().
  3. The class TSFPFileBasedDocument was introduced that overrides TFileBasedDocument.SFPutParms() and attaches an instance of a TSFPFileHandler to it in TDocument.DoMakeFileHandler(). We also added a method TSFPFileBasedDocument.ExtraViewID() to determine the id of the 'View' resource to add in and a method TSFPFileBasedDocument.GetPrompt() to determine the prompt to use.

The method ExtraViewID() that determines the ID of the view to add gets the command number used to open or save as a parameter. This means you can test this parameter to add a different dialog if you have more than one command number to open a file. An example is if you want to open a help file as well as a normal document. You could install a view with a "Search Help" button.

TSFPWindow and TSFPView

In order to add a view hierarchy to Standard File, we need to treat the Standard File window as one of our own TWindows. This turns out to be relatively straightforward if you consider the following:
  1. Standard File disposes of the window manager port, and so does TWindow.Free(). We need to override TSFPWindow.Free() to prevent this from happening.
  2. MacApp draw code erases the port rectangle before drawing. Standard File is not aware of this and would not refresh these erased parts. This problem can be fixed by removing the erase adorner from our window. This is done in the TSFPWindow.ISFPWindow() method.
  3. The window itself should NOT draw as Standard File takes care of that. So fShown should be set false. Now this leads to another problem because a view does not show up if its window does not show. We fixed this by introducing a TSFPView class that overrides TView.Shown().
  4. The window should not handle mouse downs but pass them directly to the added view.
  5. When our window updates itself, it should not set the updateRgn to empty afterwards. This is because part of the update region 'belongs' to Standard File. Therefore, we need to restore that part of the update region.

The methods necessary to implement these changes are done in the TWindow subclass TSFPWindow. For completeness, TSFPWindow also keeps a Boolean field fNeedRefresh. If you set this field, an sfHookRebuildList event will be generated in the dialog hook routine.

Whenever one of the Custom…() or SFP…() routines is called, the system loads one of the 'DLOG' resources that contains the dialog items for that routine (sfGetDialogID, getDlgID, sfPutDialogID, putDlgID).

Now, if we know the number of the 'View' resource to add to the dialog, we can change the rectangle of that dialog to accommodate our added items. This is done in TSFPWindow.LocateAndResize().

The view hierarchy that we add to this window must always have one top view of class TSFPView and an identifier 'DLOG'. This is needed so that we can:

  1. Easily locate the added views and resize the Standard File dialog box with the dimensions of that top view.
  2. Add a couple of abstract 'callback' methods to this top view. These methods are called from within our dialog hook routine on sfHookNullEvent events. These callbacks (WantToUpdate() and SetOkEnable()) pass information on the currently selected file or folder and information on the state of the Save/Open button.
  3. Override TView.Shown(). It should not ask its window, but instead use its own fShown field.

Putting It All Together: USFP.cp and USFP.h

The implementation is available in the source files USFP.cp and USFP.h. Functionality for overriding Standard Get File and Standard Put File is combined, although you could split it up if necessary. We use a set of globals (all beginning with "pSFP") to store some global references. This is necessary so that we can use them from within our call back routines.

The dialog hook routine is called SFPDialogHook(). During sfHookFirstCall processing in our dialog hook procedure we create an instance of our special window TSFPWindow. We also create our view hierarchy and adapt the size and location of Standard File's dialog (in TSFPWindow.DoLocateAndResize()).

During sfHookNullEvent we call TSFPView.WantToUpdate() with information on the currently selected file or folder. We also determine whether the Save/Open button is currently enabled and pass this information to our view in TSFPView.SetOkEnable(). In sfHookLastCall we can clean up any views that we have added:

static pascal short SFPDialogHook(short item, DialogPtr theDialog, void *)
{
    short returnItem = item;
    switch (item) {
    case sfHookFirstCall:
    // set reference to Standard File Dialog
        pSFPDialog = theDialog;
    // Install the MacApp world.
        if (! pSFPWindow && pSFPViewID) {
            pSFPWindow = new TSFPWindow;
            if (pSFPWindow) {
                pSFPWindow->ISFPWindow(NULL, GrafPtr(theDialog));
                pSFPWindow->SavePortInfo();
                gViewServer->DoCreateViews(NULL, pSFPWindow,
                        pSFPViewID, gZeroVPt);
                pSFPWindow->DoLocateAndResize();
                pSFPWindow->GetSFPView()->Show(true, false);
                pSFPWindow->RestorePortInfo();
            }
        }
        break;
    case sfHookNullEvent:
        if (pSFPWindow) {

            // see if list of files needs updating
            if (pSFPWindow->GetNeedRefresh()) {
                pSFPWindow->SetNeedRefresh(false);
                returnItem = sfHookRebuildList;
            } else {
                pSFPWindow->SavePortInfo();
            // get added view
                TSFPView *view = pSFPWindow->GetSFPView();
            // focus on window
                pSFPWindow->InvalidateFocus();
                pSFPWindow->Focus();

                // update view depending on OK state
                Handle  dialogItem;
                CRect   itsBox;
                short   itemType;
                ::GetDItem(theDialog, pSFPGetPutOK, itemType,
                        dialogItem, itsBox);
                Boolean okEnabled =         
                    ((**ControlHandle(dialogItem)).contrlHilite
                        != 255);
                view->SetOkEnable(okEnabled);

                // update view with information on current reply
                view->WantToUpdate(pSFPReply,
                        pSFPStandardFileReply);
                pSFPWindow->RestorePortInfo();
            }
        }
        break;

    case sfHookLastCall:
        if (pSFPWindow) {
        // throw out allocated view hierarchy
            pSFPWindow->Free();
            pSFPWindow = NULL;
        }
        break;
    } // end of switch()
    return returnItem;
}

The dialog filter routine is called SFPDialogFilter(). In our dialog filter callback we detect mouseDowns inside our added view and pass these events directly to that added view. We handle update events for our special TSFPWindow (which shares the window manager port of Standard File) by drawing our added view hierarchy and passing on the update event to Standard File:

static pascal Boolean SFPDialogFilter(DialogPtr theDialog,
        EventRecord& theEvent, short& itemHit, void *yourDataPtr)
{
    Boolean result = false;
    switch (theEvent.what) {

        case mouseDown: { 
        // mouse down events the MacApp way.
            Boolean oldObjectPerm;
            oldObjectPerm = AllocateObjectsFromPerm(FALSE);
            TToolboxEvent* theToolBoxEvent = new TToolboxEvent;
            AllocateObjectsFromPerm(oldObjectPerm);
            theToolBoxEvent->IToolboxEvent(gApplication, theEvent);

            // get mouse location
            CPoint theMouse = theEvent.where;
            ::SetPort(theDialog);
            ::GlobalToLocal(theMouse);
            TSFPView *view = pSFPWindow->GetSFPView();
            pSFPWindow->InvalidateFocus();
            pSFPWindow->Focus();

            // convert to local coordinates
            VPoint theVMouse = theMouse;
            view->SuperToLocal(theVMouse);
            if (view->ContainsMouse(theVMouse) &&
                view->HandleMouseDown(theVMouse, theToolBoxEvent,
                gStdHysteresis)) {
                result = true;
            }
            theToolBoxEvent->Free();
        }
        break;

        case updateEvt:
            if (WindowPtr(theEvent.message) != theDialog) {
            // update MacApp windows
                gApplication->UpdateAllWindows();
            result = true;
        } else {
        // update MacApp part and pass update to Stand File
            pSFPWindow->InvalidateFocus();
            pSFPWindow->Focus();
            pSFPWindow->Update();
        }
        break;
    }
    return result;
}

Last, our file filter call back SFPFileFilter() will get information about the file to test, makes that into a TFile object and calls a method of our TSFPApplication:

pascal Boolean SFPFileFilter(ParmBlkPtr p, void *)
{
// no #define for stationary bit
const short isStationery = 0x0800;
// get current volume
ParamBlockRec oldVol;
oldVol.volumeParam.ioNamePtr = NULL;
::PBGetVol(&oldVol, false);

// get current directory
WDPBRec     WDRec;
WDRec.ioNamePtr     = NULL;
WDRec.ioVRefNum     = p->fileParam.ioVRefNum;
WDRec.ioWDProcID    = 'ERIK';
WDRec.ioWDDirID     = *kCurDirStorePtr;
::PBOpenWD(&WDRec, false);
::PBSetVol(&oldVol, false);

// name of file to test is passed in
CStr63 name = p->ioParam.ioNamePtr;
// create TFile
TFile *aFile = new TFile;
aFile->SpecifyWithTrio(p->fileParam.ioVRefNum,
        WDRec.ioWDDirID, name);
::PBCloseWD(&WDRec, false);

// set type and creator
FInfo finderInfo;
if (aFile->GetFinderInfo(finderInfo) == noErr) {
    aFile->fFileType = finderInfo.fdType;
    aFile->fCreator = finderInfo.fdCreator;
    if (finderInfo.fdFlags & isStationery) {
        aFile->fStationery = TRUE;
    }
}

// pass it to the application object
Boolean returnVal =
    ((TSFPApplication *)gApplication)->FileFilter(aFile);
aFile->Free();
return returnVal;
}

Examples: UMySFP.cp and UMySFP.h

As an example of how you can use these extensions, we developed a small application called UMySFP. This application overrides both Standard Get File and Standard Put File.

In Standard Get File, we show a 'preview' of AppleLink documents, where the preview consists of the sender followed by '•', followed by the subject, e.g. "SCHALK1 • Not So Standard File". As you can see in the sources, we define a subclass TOpenAppleLink of TSFPView with a method TSFPView.WantToUpdate(). We also subclass TSFPApplication and implement TMySFPApplication.ExtraViewID() to return the ID of the 'View' to add. As a bonus, we also change TSFPApplication.FileFilter() so that we filter out all files that have already been opened (see Figure 1):

pascal short TMySFPApplication::ExtraViewID(CommandNumber)
{
    return kOpenAppleLinkViewID;
}
pascal void TOpenAppleLink::WantToUpdate(SFReply &aSFReply,
        StandardFileReply& aCustomReply)
{
    CStr255 aPreview;
// create "originator • subject"
    this->CreatePreView(aSFReply, aCustomReply, aPreview);
// and set in text field
    this->SetPreviewText(aPreview);
}
pascal Boolean TMySFPApplication::FileFilter(TFile *aFile)
{
    if (inherited::FileFilter(aFile) ||
            (aFile->fCreator != 'GEOL') ||
            gApplication->FindDocument(aFile)) {
        return true;
    }
    return false;
}

The second part customizes Standard Put File. We add a couple of radio buttons and a popup menu to select the type of file to save. Again we use a subclass TSaveAppleLink of TSFPView. We subclass our TMySFPFileBasedDocument from TSFPFileBasedDocument and give it an ExtraViewID() method to yield the id of the 'View' resource to add. Note that you would have methods in your TSaveAppleLink class to let your application know which type of document was selected. This is not implemented (see Figure 2).

pascal short TMySFPFileBasedDocument::ExtraViewID(CommandNumber)
{
    return kSaveAppleLinkViewID;
}

The views themselves are created in a ViewEdit file. Don't forget to give them a top-level view of a subclass of TSFPView and to set its identifier to 'DLOG'

References

  • New Inside Macintosh : Files
  • New Technical Notes M.FL.SFCustomize
  • MacApp ™ Drafter on E.T.O. 9
 
AAPL
$501.11
Apple Inc.
+2.43
MSFT
$34.64
Microsoft Corpora
+0.15
GOOG
$898.03
Google Inc.
+16.02

MacTech Search:
Community Search:

Software Updates via MacUpdate

CrossOver 12.5.1 - Run Windows apps on y...
CrossOver can get your Windows productivity applications and PC games up and running on your Mac quickly and easily. CrossOver runs the Windows software that you need on Mac at home, in the office,... Read more
Paperless 2.3.1 - Digital documents mana...
Paperless is a digital documents manager. Remember when everyone talked about how we would soon be a paperless society? Now it seems like we use paper more than ever. Let's face it - we need and we... Read more
Apple HP Printer Drivers 2.16.1 - For OS...
Apple HP Printer Drivers includes the latest HP printing and scanning software for Mac OS X 10.6, 10.7 and 10.8. For information about supported printer models, see this page.Version 2.16.1: This... Read more
Yep 3.5.1 - Organize and manage all your...
Yep is a document organization and management tool. Like iTunes for music or iPhoto for photos, Yep lets you search and view your documents in a comfortable interface, while offering the ability to... Read more
Apple Canon Laser Printer Drivers 2.11 -...
Apple Canon Laser Printer Drivers is the latest Canon Laser printing and scanning software for Mac OS X 10.6, 10.7 and 10.8. For information about supported printer models, see this page.Version 2.11... Read more
Apple Java for Mac OS X 10.6 Update 17 -...
Apple Java for Mac OS X 10.6 delivers improved security, reliability, and compatibility by updating Java SE 6.Version Update 17: Java for Mac OS X 10.6 Update 17 delivers improved security,... Read more
Arq 3.3 - Online backup (requires Amazon...
Arq is online backup for the Mac using Amazon S3 and Amazon Glacier. It backs-up and faithfully restores all the special metadata of Mac files that other products don't, including resource forks,... Read more
Apple Java 2013-005 - For OS X 10.7 and...
Apple Java for OS X 2013-005 delivers improved security, reliability, and compatibility by updating Java SE 6 to 1.6.0_65. On systems that have not already installed Java for OS X 2012-006, this... Read more
DEVONthink Pro 2.7 - Knowledge base, inf...
Save 10% with our exclusive coupon code: MACUPDATE10 DEVONthink Pro is your essential assistant for today's world, where almost everything is digital. From shopping receipts to important research... Read more
VirtualBox 4.3.0 - x86 virtualization so...
VirtualBox is a family of powerful x86 virtualization products for enterprise as well as home use. Not only is VirtualBox an extremely feature rich, high performance product for enterprise customers... Read more

Briquid Gets Updated with New Undo Butto...
Briquid Gets Updated with New Undo Button, Achievements, and Leaderboards, on Sale for $0.99 Posted by Andrew Stevens on October 16th, 2013 [ | Read more »
Halloween – iLovecraft Brings Frightenin...
Halloween – iLovecraft Brings Frightening Stories From Author H.P. | Read more »
The Blockheads Creator David Frampton Gi...
The Blockheads Creator David Frampton Gives a Postmortem on the Creation Process of the Game Posted by Andrew Stevens on October 16th, 2013 [ permalink ] Hey, a | Read more »
Sorcery! Enhances the Gameplay in Latest...
Sorcery! | Read more »
It Came From Australia: Tiny Death Star
NimbleBit and Disney have teamed up to make Star Wars: Tiny Death Star, a Star Wars take on Tiny Tower. Right now, the game is in testing in Australia (you will never find a more wretched hive of scum and villainy) but we were able to sneak past... | Read more »
FIST OF AWESOME Review
FIST OF AWESOME Review By Rob Rich on October 16th, 2013 Our Rating: :: TALK TO THE FISTUniversal App - Designed for iPhone and iPad A totalitarian society of bears is only the tip of the iceberg in this throwback brawler.   | Read more »
PROVERBidioms Paints English Sayings in...
PROVERBidioms Paints English Sayings in a Picture for Users to Find Posted by Andrew Stevens on October 16th, 2013 [ permalink ] | Read more »
OmniFocus 2 for iPhone Review
OmniFocus 2 for iPhone Review By Carter Dotson on October 16th, 2013 Our Rating: :: OMNIPOTENTiPhone App - Designed for the iPhone, compatible with the iPad OmniFocus 2 for iPhone is a task management app for people who absolutely... | Read more »
Ingress – Google’s Augmented-Reality Gam...
Ingress – Google’s Augmented-Reality Game to Make its Way to iOS Next Year Posted by Andrew Stevens on October 16th, 2013 [ permalink ] | Read more »
CSR Classics is Full of Ridiculously Pre...
CSR Classics is Full of Ridiculously Pretty Classic Automobiles Posted by Rob Rich on October 16th, 2013 [ permalink ] | Read more »

Price Scanner via MacPrices.net

Apple Store Canada offers refurbished 11-inch...
 The Apple Store Canada has Apple Certified Refurbished 2013 11″ MacBook Airs available starting at CDN$ 849. Save up to $180 off the cost of new models. An Apple one-year warranty is included with... Read more
Updated MacBook Price Trackers
We’ve updated our MacBook Price Trackers with the latest information on prices, bundles, and availability on MacBook Airs, MacBook Pros, and the MacBook Pros with Retina Displays from Apple’s... Read more
13-inch Retina MacBook Pros on sale for up to...
B&H Photo has the 13″ 2.5GHz Retina MacBook Pro on sale for $1399 including free shipping. Their price is $100 off MSRP. They have the 13″ 2.6GHz Retina MacBook Pro on sale for $1580 which is $... Read more
AppleCare Protection Plans on sale for up to...
B&H Photo has 3-Year AppleCare Warranties on sale for up to $105 off MSRP including free shipping plus NY sales tax only: - Mac Laptops 15″ and Above: $244 $105 off MSRP - Mac Laptops 13″ and... Read more
Apple’s 64-bit A7 Processor: One Step Closer...
PC Pro’s Darien Graham-Smith reported that Canonical founder and Ubuntu Linux creator Mark Shuttleworth believes Apple intends to follow Ubuntu’s lead and merge its desktop and mobile operating... Read more
MacBook Pro First, Followed By iPad At The En...
French site Info MacG’s Florian Innocente says he has received availability dates and order of arrival for the next MacBook Pro and the iPad from the same contact who had warned hom of the arrival of... Read more
Chart: iPad Value Decline From NextWorth
With every announcement of a new Apple device, serial upgraders begin selling off their previous models – driving down the resale value. So, with the Oct. 22 Apple announcement date approaching,... Read more
SOASTA Survey: What App Do You Check First in...
SOASTA Inc., the leader in cloud and mobile testing announced the results of its recent survey showing which mobile apps are popular with smartphone owners in major American markets. SOASTA’s survey... Read more
Apple, Samsung Reportedly Both Developing 12-...
Digitimes’ Aaron Lee and Joseph Tsai report that Apple and Samsung Electronics are said to both be planning to release 12-inch tablets, and that Apple is currently cooperating with Quanta Computer on... Read more
Apple’s 2011 MacBook Pro Lineup Suffering Fro...
Appleinsider’s Shane Cole says that owners of early-2011 15-inch and 17-inch MacBook Pros are reporting issues with those models’ discrete AMD graphics processors, which in some cases results in the... Read more

Jobs Board

*Apple* Retail - Manager - Apple (United Sta...
Job SummaryKeeping an Apple Store thriving requires a diverse set of leadership skills, and as a Manager, youre a master of them all. In the stores fast-paced, dynamic Read more
*Apple* Support / *Apple* Technician / Mac...
Apple Support / Apple Technician / Mac Support / Mac Set up / Mac TechnicianMac Set up and Apple Support technicianThe person we are looking for will have worked Read more
Senior Mac / *Apple* Systems Engineer - 318...
318 Inc, a top provider of Apple solutions is seeking a new Senior Apple Systems Engineer to be based out of our Santa Monica, California location. We are a Read more
*Apple* Retail - Manager - Apple Inc. (Unite...
Job Summary Keeping an Apple Store thriving requires a diverse set of leadership skills, and as a Manager, you’re a master of them all. In the store’s fast-paced, Read more
*Apple* Solutions Consultant - Apple (United...
**Job Summary** Apple Solutions Consultant (ASC) - Retail Representatives Apple Solutions Consultants are trained by Apple on selling Apple -branded products Read more
All contents are Copyright 1984-2011 by Xplain Corporation. All rights reserved. Theme designed by Icreon.