TweetFollow Us on Twitter

Deeper Dialog 2
Volume Number:9
Issue Number:6
Column Tag:Getting started

Related Info: Dialog Manager

Looking Deeper into the Dialog Manager
Part II

Digging into the Modeless Code

By Dave Mark, MacTech Magazine Regular Contributing Author

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

Last month, we entered the source code and created the resources for a program called Modeless. Modeless implemented a modeless version of the dialog box used by the Dialogger program of a few months back. As a reminder, here’s another look at Modeless in action.

Running Modeless

Dig into your Development folder and open the folder named Modeless ƒ. Double-click on the file named Modeless.Π. Once THINK C starts up, select Run from the Project menu to compile and run Modeless.

When Modeless runs, the My Pet Fred window will appear, showing the picture we saved as PICT 128. Pull down the • menu and verify that the first item reads About Modeless.... Select About Modeless... from the • menu and check out the About alert. Click the OK button to dismiss the About alert.

Hold down the mouse in the File menu and verify that the S command-key equivalent appears next to the Settings... item. Select Settings.... The Settings... modal dialog box should appear (Figure 1).

Figure 1. The Settings... modeless dialog box.

Click on the My Pet Fred window, bringing it to the front and sending the modeless dialog to the back. Notice that the radio buttons are dimmed when the dialog is no longer the front-most window (Figure 2).

Figure 2. The radio buttons are dimmed when the dialog box is not in front.

Now type the command-key equivalent S to bring the Settings... dialog to the front again. Once again, the radio buttons should be enabled. Click on the Elephant radio button. Notice that the My Pet Fred window changes appropriately, leaving the Settings... dialog in front. Click on a few more radio buttons. While you are at it, Click on the File menu. Notice that the Settings... item has been dimmed. Though this doesn’t help us much in this program, it’s important to be able to disable and enable certain menu items when a modeless dialog is in front.

When you are satisfied with your pet selection, drag the Settings... window to another part of your screen. Now click the close box. The Settings... window disappears. Select Settings... from the File menu. The Settings... window reappears at the position it was in when it disappeared and with the same radio button settings.

Finally, type the command-key equivalent Q to exit the program.

The Modeless Source Code

As usual, Modeless starts off with a series of #defines. The first three define the base resource ID, and the resource IDs for the ALRT and DLOG resources.

/* 1 */

#define kBaseResID 128
#define kAboutALRTid 129
#define kDialogResID 128

kVisible, kMoveToBack, kMoveToFront, and kNoGoAway are used in the calls to NewWindow() and GetNewDialog(). kSleep, as usual, is passed to WaitNextEvent().

/* 2 */

#define kVisible true
#define kMoveToBackNULL
#define kMoveToFront (WindowPtr)-1L
#define kNoGoAwayfalse
#define kSleep   60L

kOn and kOff are passed to SetCtlValue() to turn a radio button on and off.

/* 3 */

#define kOn 1
#define kOff0

These three #defines define the item IDs for the three radio buttons that appear in the modeless dialog.

/* 4 */

#define iAfghan  1
#define iElephant2
#define iSquirrel3

kLeftMargin and kTopMargin determine the position of the My Pet Fred window on the screen.

/* 5 */

#define kLeftMargin5
#define kTopMargin 40

kFirstRadio defines the ID of the first radio button in the modeless dialog. kLastRadio defines the ID of the last radio button in the set.

/* 6 */

#define kFirstRadio1
#define kLastRadio 3

The remainder of the #defines represent the Modeless menus and menu items.

/* 7 */

#define mApple   kBaseResID
#define iAbout   1

#define mFile    kBaseResID+1
#define iSettings1
#define iQuit    3

Modeless makes use of four global variables. gDone is set to true until the program is ready to exit. gCurrentPICT contains the ID of the current My Pet Fred PICT. gSettingsDLOG is a pointer to the modeless dialog. We made this a global so we could keep the modeless dialog settings around, even if we close the dialog. gFredWindow points to the My Pet Fred window. We’ll take advantage of this pointer when we delete the My Pet Fred window and create a new one.

/* 8 */

Boolean gDone;
short   gCurrentPICT = kBaseResID;
DialogPtr gSettingsDLOG = NULL;
WindowPtr gFredWindow = NULL;

As always, we created a function prototype for each of the Modeless functions.

/* 9 */

void    ToolBoxInit( void );
PicHandle LoadPICT( short picID );
void    CreateWindow( void );
void    MenuBarInit( void );
void    EventLoop( void );
void    DoEvent( EventRecord *eventPtr );
void    DoDialogEvent( EventRecord *eventPtr );
void    HandleMouseDown( EventRecord *eventPtr );
void    HandleMenuChoice( long menuChoice );
void    HandleAppleChoice( short item );
void    HandleFileChoice( short item );
void    DoUpdate( EventRecord *eventPtr );
void    CreateDialog( void );
void    FlipControl( ControlHandle control );
void    SwitchPICT( void );

main() starts off by initializing the Toolbox. Next, the menu bar is set up and the My Pet Fred window is created. Finally, the main event loop is entered.

/* 10 */

/********** main **********/

void  main( void )
{
 ToolBoxInit();
 MenuBarInit();
 
 CreateWindow();
 
 EventLoop();
}

Nothing new about ToolBoxInit().

/* 11 */

/********** ToolBoxInit **********/

void  ToolBoxInit( void )
{
 InitGraf( &thePort );
 InitFonts();
 InitWindows();
 InitMenus();
 TEInit();
 InitDialogs( NULL );
 InitCursor();
}

Just like its Dialogger counterpart, LoadPICT() takes a resource ID as an input parameter, loads the specified PICT resource, then returns a handle to the PICT.

/* 12 */

/********** LoadPICT **********/

PicHandle LoadPICT( short picID )
{
 PicHandlepic;
 
 pic = GetPicture( picID );

If the PICT could not be loaded for some reason, the program beeps once, then exits.

/* 13 */

 if ( pic == NULL )
 {
 SysBeep( 10 );  /*  Couldn’t load the PICT resource!!!  */
 ExitToShell();
 }

 return( pic );
}

CreateWindow() creates a new My Pet Fred window.

/* 14 */

/********** CreateWindow **********/

void  CreateWindow( void )
{
 PicHandlepic;
 Rect   r;

First, LoadPICT() is called to load the PICT specified by gCurrentPICT.

/* 15 */

 pic = LoadPICT( gCurrentPICT );

Next, the PICT’s bounding rectangle is stored in the local variable r.

/* 16 */

 r = (**pic).picFrame;

OffsetRect() is called to normalize the Rect, keeping it the same size as the PICT, but moving its upper left corner to the position specified by kLeftMargin and kTopMargin. Basically, we’re setting up the bounding rectangle for the new My Pet Fred window.

/* 17 */

 OffsetRect( &r, kLeftMargin - r.left,
 kTopMargin - r.top );

This rectangle is passed to NewWindow(). The new window is made visible. Notice that kMoveToBack is passed instead of our normal kMoveToFront. Why? We want the window to appear behind the modeless dialog window, if the dialog is currently visible.

/* 18 */

 gFredWindow = NewWindow( NULL, &r, “\pMy Pet Fred”, 
 kVisible, noGrowDocProc, kMoveToBack, kNoGoAway, 0L );

If the window couldn’t be created for some reason, beep once, then exit.

/* 19 */

 if ( gFredWindow == NULL )
 {
 SysBeep( 10 );  /*  Couldn’t load the WIND resource!!!  */
 ExitToShell();
 }

Finally, make the window visible (this line is unnecessary since we created the window with kVisible, but it’s a good habit to get into) and make it the current port. We’ll draw the current Fred by responding to an update event.

/* 20 */

 ShowWindow( gFredWindow );
 SetPort( gFredWindow );
}

MenuBarInit() loads the MBAR resource, and makes it the current menu bar.

/* 21 */

/********** MenuBarInit **********/

void  MenuBarInit( void )
{
 Handle menuBar;
 MenuHandle menu;
 
 menuBar = GetNewMBar( kBaseResID );
 SetMenuBar( menuBar );

Next, a handle to the • menu is retrieved and the desk accessories added to the menu.

/* 22 */
 menu = GetMHandle( mApple );
 AddResMenu( menu, ‘DRVR’ );

Finally, the menu bar is redrawn.

/* 23 */
 DrawMenuBar();
}

EventLoop() looks much the same. As you’d expect, the program exits when gDone is set to true.

/* 24 */

/********** EventLoop **********/

void  EventLoop( void )
{
 EventRecordevent;
 
 gDone = false;
 while ( gDone == false )
 {
 if ( WaitNextEvent( everyEvent, &event, kSleep, NULL ) )
 DoEvent( &event );
 }
}

DoEvent() is slightly different than previous incarnations.

/* 25 */

/********** DoEvent **********/

void  DoEvent( EventRecord *eventPtr )
{
 char   theChar;

The first difference lies in our call of IsDialogEvent(). IsDialogEvent() takes a pointer to an EventRecord as a parameter and returns true if the event is associated with a modeless dialog. Note that our code calls IsDialogEvent() whether or not a modeless dialog is currently open. Since we aren’t that concerned with efficiency here, this is just fine. In a more complex program, you might want to check to see if any of your modeless dialogs are open before you call IsDialogEvent(). Obviously, if your program contains no modeless dialogs, you shouldn’t call IsDialogEvent().

/* 26 */

 if ( IsDialogEvent( eventPtr ) )
 {

If IsDialogEvent() returns true, the event is associated with our modeless dialog box and we’ll pass it along to DoDialogEvent() for processing.

/* 27 */

 DoDialogEvent( eventPtr );
 }

If the event is not associated with a modeless dialog, we’ll process the event as we always did, via a switch statement.

/* 28 */

 else
 {
 switch ( eventPtr->what )
 {

A mouseDown is handled by HandleMouseDown().

/* 29 */

 case mouseDown: 
 HandleMouseDown( eventPtr );
 break;

keyDown and autoKey events are turned into characters and turned from command-key equivalences (if appropriate) into menu selections by MenuKey(). The menu selections are handled by HandleMenuChoice().

/* 30 */

 case keyDown:
 case autoKey:
 theChar = eventPtr->message & charCodeMask;
 if ( (eventPtr->modifiers & cmdKey) != 0 ) 
 HandleMenuChoice( MenuKey( theChar ) );
 break;

updateEvts are handled by DoUpdate(). Since the update events for our modeless dialog will have been diverted to DoDialogEvent(), any updateEvts passed to DoUpdate() will be for the My Pet Fred window.

/* 31 */

 case updateEvt:
 DoUpdate( eventPtr );
 break;
 }
 }
}

All events for the modeless dialog are passed to DoDialogEvent().

/* 32 */

/********** DoDialogEvent **********/

void  DoDialogEvent( EventRecord *eventPtr )
{
 short  itemHit;
 short  itemType;
 Handle itemHandle;
 Rect   itemRect;
 short  curRadioButton, i;
 char   theChar;
 BooleanbecomingActive;
 MenuHandle menu;
 DialogPtrdialog;

We’ll start off by fetching a handle to the File menu. Why? We’re going to dim the Settings... item if the modeless dialog is up front. Remember, we’re doing this just to demonstrate how it’s done, not because it’s needed.

/* 33 */

 menu = GetMHandle( mFile );

Notice that we process keyDown and autoKey events in two different places. If the modeless dialog is up front, DoDialogEvent() will get all keyDowns and autoKeys. If the modeless dialog is not up front, or is not open, the normal event handling mechanism will get the keyDowns and autoKeys.

/* 34 */

 switch ( eventPtr->what )
 {
 case keyDown:
 case autoKey:
 theChar = eventPtr->message & charCodeMask;
 if ( (eventPtr->modifiers & cmdKey) != 0 ) 
 HandleMenuChoice( MenuKey( theChar ) );
 break;

If the modeless dialog window is either being activated or deactivated, DoDialogEvent() will get an activateEvt. In that case, we’ll use the activeFlag to determine whether becomingActive should be set to true or false.

/* 35 */

 case activateEvt:
 becomingActive = ( (eventPtr->modifiers & activeFlag)
 == activeFlag );

If the modeless dialog window is becoming active, we’ll use HiliteControl() to enable all the radio buttons, from kFirstRadio to kLastRadio, then we’ll disable the File menu’s Settings... item.

/* 36 */

 if ( becomingActive )
 {
 for ( i=kFirstRadio; i<=kLastRadio; i++ )
 {
 GetDItem( gSettingsDLOG, i, &itemType,
 &itemHandle, &itemRect );
 HiliteControl( (ControlHandle)itemHandle, 0 );
 }
 DisableItem( menu, iSettings );
 }

If the modeless dialog window is being deactivated, we’ll dim all the radio buttons and enable the Settings... item. When the user goes to the File menu and sees that Settings... is dimmed, they’ll have a clue that the modeless dialog is already up front and ready to use.

/* 37 */

 else
 {
 for ( i=kFirstRadio; i<=kLastRadio; i++ )
 {
 GetDItem( gSettingsDLOG, i, &itemType,
 &itemHandle, &itemRect );
 HiliteControl( (ControlHandle)itemHandle, 255 );
 }
 EnableItem( menu, iSettings );
 }
 break;
 }

The previous chunk of code accomplished two things. First, it made sure that command-key equivalents were supported. Second, it made any user interface adjustments that were not normally handled by the Dialog Manager. We decided to dim the radio buttons when the modeless window is deactivated and dim the Settings... item when the modeless window is activated. These user interface adjustments are window trimmings that we decided to add. The program would still work without them.

Next, we’re going to the things that absolutely must be done. DialogSelect() is the modeless version of ModalDialog(). DialogSelect() takes the event pointer and maps it to a specific dialog and a specific item in the dialog. DialogSelect() returns true if we need to do some processing (if an item was actually hit).

/* 38 */

 if ( DialogSelect( eventPtr, &dialog, &itemHit ) )
 {

Since our dialog was relatively simple, we know that itemHit is going to be one of iAfghan, iElephant, or iSquirrel.

/* 39 */

 switch ( itemHit )
 {
 case iAfghan:
 case iElephant:
 case iSquirrel:

Before we process the radio button click, we’ll first calculate which radio button should be currently lit.

/* 40 */

 curRadioButton = gCurrentPICT - 
 kBaseResID + kFirstRadio;

If the button that was clicked in is not the current radio button, we’ve got some work to do.

/* 41 */

 if ( curRadioButton != itemHit )
 {

First, we’ll turn off the current radio button.

/* 42 */

 GetDItem( dialog, curRadioButton, &itemType,
 &itemHandle, &itemRect );
 FlipControl( (ControlHandle)itemHandle );

Next, we’ll turn on the radio button that was just clicked. Remember, always turn off a radio button before you turn on a new one.

/* 43 */

 GetDItem( dialog, itemHit, &itemType,
 &itemHandle, &itemRect );
 FlipControl( (ControlHandle)itemHandle );

Next, update curRadioButton to reflect the newly clicked radio button.

/* 44 */

 curRadioButton = itemHit;

Next we check to see if the current PICT is still up to date.

/* 45 */

 if ( gCurrentPICT != curRadioButton +
 kBaseResID - kFirstRadio )
 {

If not, we’ll set it to its new value, then call SwitchPICT() to update the My Pet Fred window.

/* 46 */

 gCurrentPICT = curRadioButton +
 kBaseResID - kFirstRadio;
 SwitchPICT();
 }
 }
 break;
 }
 }
}


HandleMouseDown() works much the same as always.

/* 47 */

/********** HandleMouseDown **********/

void  HandleMouseDown( EventRecord *eventPtr )
{
 WindowPtrwindow;
 short  thePart;
 long   menuChoice;
 GrafPtroldPort;
 long   windSize;
 Rect   growRect;
 MenuHandle menu;

First, we call FindWindow() to find out what window the mouseDown was in and where in the window the mouseDown occurred.

/* 48 */

 thePart = FindWindow( eventPtr->where, &window );

If the mouseDown was in the menu bar, pass the menu selection on to HandleMenuChoice(). A mouseDown in inSysWindow gets passed on to SystemClick().

/* 49 */

 switch ( thePart )
 {
 case inMenuBar:
 menuChoice = MenuSelect( eventPtr->where );
 HandleMenuChoice( menuChoice );
 break;
 case inSysWindow : 
 SystemClick( eventPtr, window );
 break;

A mouseDown inContent causes a call to SelectWindow() to bring the clicked-in window to the front.

/* 50 */

 case inContent:
 SelectWindow( window );
 break;

Note that this line will get executed even if the mouse click was in the modeless dialog, but only if the modeless dialog was in the back when it was clicked in. Want to prove this? Try adding this line after the call of SelectWindow() but before the break:

/* 51 */

if ( window == gSettingsDLOG ) SysBeep( 20 );

If the mouseDown was inDrag, call DragWindow() to drag the window around on the screen.

/* 52 */

 case inDrag : 
 DragWindow( window, eventPtr->where, 
 &screenBits.bounds );
 break;

This next case is interesting. If the mouseDown was inGoAway, call TrackGoAway() to ensure that the mouse button was released inside the close box.

/* 53 */

 case inGoAway:
 if ( TrackGoAway( window, eventPtr->where ) )

If so, verify that the click was in the modeless dialog’s close box (the only window with a close box, by the way).

/* 54 */

 if ( window == gSettingsDLOG )
 {

If so, make the modeless dialog window invisible. Why not close the window? We want to keep the dialog around so if the user brings it back up, it will have the same settings and will be in the same position, without us having to keep track of all the stuff.

/* 55 */

 HideWindow( window );

Once the window is hidden, we’ll enable the File menu’s Settings... item.

/* 56 */

 menu = GetMHandle( mFile );
 EnableItem( menu, iSettings );
 }
 break;
 }
}

HandleMenuChoice() does what it always has, dispatching menu selections to the • and File menus.

/* 57 */

/********** HandleMenuChoice **********/

void  HandleMenuChoice( long menuChoice )
{
 short  menu;
 short  item;
 
 if ( menuChoice != 0 )
 {
 menu = HiWord( menuChoice );
 item = LoWord( menuChoice );
 
 switch ( menu )
 {
 case mApple:
 HandleAppleChoice( item );
 break;
 case mFile:
 HandleFileChoice( item );
 break;
 }
 HiliteMenu( 0 );
 }
}

HandleAppleChoice() puts up an alert if the first item on the • menu was selected. An alert is like a dialog, but is not interactive (other than dismissing it). The alert comes up and is then dismissed, usually by a button click. Read the section on alerts in Inside Macintosh. Alerts are not complicated.

/* 58 */

/********** HandleAppleChoice **********/

void  HandleAppleChoice( short item )
{
 MenuHandle appleMenu;
 Str255 accName;
 short  accNumber;
 
 switch ( item )
 {
 case iAbout:
 NoteAlert( kAboutALRTid, NULL );
 break;
 default:
 appleMenu = GetMHandle( mApple );
 GetItem( appleMenu, item, accName );
 accNumber = OpenDeskAcc( accName );
 break;
 }
}

HandleFileChoice() handles the two items in the File menu.

/* 59 */

/********** HandleFileChoice **********/

void  HandleFileChoice( short item )
{

Ooops! The variable newPICTid was declared and never used. Sorry about that...

/* 60 */

 short  newPICTid;

If Settings... was selected, we first check to see if the modeless dialog was created yet. If not, we create it by calling CreateDialog().

/* 61 */

 switch ( item )
 {
 case iSettings:
 if ( gSettingsDLOG == NULL )
 CreateDialog();

If the dialog does exist, we make it visible and bring it to the front. How does the Settings... item get dimmed, you might ask. When the dialog is brought to the front, an activateEvt gets posted. The activateEvt handling code takes care of that.

/* 62 */

 else
 {
 ShowWindow( gSettingsDLOG );
 SelectWindow( gSettingsDLOG );
 }
 break;

As always, when Quit is selected, we set gDone to true and drop out of the program.

/* 63 */

 case iQuit:
 gDone = true;
 break;
 }
}

Since events for the modeless dialog are handled elsewhere, the only update event this code will see is for the My Pet Fred window.

/* 64 */

/********** DoUpdate **********/

void  DoUpdate( EventRecord *eventPtr )
{
 PicHandlepic;
 WindowPtrwindow;
 Rect   r;

We’ll retrieve the WindowPtr from eventPtr->message and load the current Fred PICT using LoadPICT.

/* 65 */

 window = (WindowPtr)eventPtr->message;
 
 pic = LoadPICT( gCurrentPICT );

Next, we make the window the current port, call BeginUpdate(), then draw the newest version of Fred and call EndUpdate().

/* 66 */

 SetPort( window );
 
 BeginUpdate( window );
 
 r = window->portRect;
 DrawPicture( pic, &r );
 
 EndUpdate( window );
}

Just as we’d do with a modal dialog, we load the modeless DLOG resource by calling GetNewDialog().

/* 67 */

/********** CreateDialog **********/

void  CreateDialog( void )
{
 short  itemType;
 Handle itemHandle;
 Rect   itemRect;
 short  curRadioButton;

 gSettingsDLOG = GetNewDialog( kDialogResID, 
 NULL, kMoveToFront );

If the DLOG couldn’t be loaded, beep once then exit.

/* 68 */

 if ( gSettingsDLOG == NULL )
 {
 SysBeep( 10 );  /*  Couldn’t load the DLOG resource!!!  */
 ExitToShell();
 }

Once the DLOG is loaded, make the dialog window visible and the current port.

/* 69 */

 ShowWindow( gSettingsDLOG );
 SetPort( gSettingsDLOG );

Next, turn the current radio button on.

/* 70 */

 curRadioButton = gCurrentPICT - kBaseResID + kFirstRadio;
 GetDItem( gSettingsDLOG, curRadioButton, &itemType,
 &itemHandle, &itemRect );
 SetCtlValue( (ControlHandle)itemHandle, kOn );
}

FlipControl() turns a radio button or check box that’s on, off and one that’s off, on.

/* 71 */

/********** FlipControl **********/

void  FlipControl( ControlHandle control )
{
 SetCtlValue( control, ! GetCtlValue( control ) );
}

SwitchPICT() calls DisposeWindow() to free up the memory used by the specified window (this closes the window as well) and then calls CreateWindow() to create a My Pet Fred window that reflects or most current choice of pet.

/* 72 */

/********** SwitchPICT **********/

void  SwitchPICT( void )
{
 DisposeWindow( gFredWindow );
 
 CreateWindow();
}

Till Next Time...

Well, that’s about it for modeless dialogs. Be sure to read the Inside Macintosh chapters that pertain to dialogs and alerts. Next month, we’ll spend some time with a filterProc, a procedure that you provide to the Toolbox, that the Toolbox calls for you. You can read about filterProcs in Inside Macintosh, in the description of the Dialog Manager routine ModalDialog().

By the way, have you gotten a copy of THINK Reference 2.0 yet? If you don’t want to spend the money on the first six volumes of Inside Macintosh, the new THINK Reference fills the bill pretty nicely. THINK Reference 2.0 is definitely my “Product of the Month”...

[For those of you who don’t know, THINK Reference 2.0 is included FREE on the “All of MacTech Magazine CD-ROM, Volumes I-VIII”. With this CD, you can have all of “Inside Macintosh” and every issue of “MacTech Magazine” and “MacTutor” online and searchable.

- Ed.]

 

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.