TweetFollow Us on Twitter

Text Box objects
Volume Number:7
Issue Number:8
Column Tag:Jörg's Folder

Text Box View Objects

By Jörg Langowski, MacTutor Editorial Board

“Text box view objects”

We are proceeding quite a bit on our way to a full drawing program (with objects of different shape and text boxes); this month we’ll finally see how to create text boxes in a window as independent views. Next month, then, we’ll put it all together and maybe even start adding the disk I/O code.

Some Forth news first

First of all, though, I’d like to let you know that Palo Alto Shipping still exists. I had them on the phone just a couple of days ago, the old number (415) 688-1111 still works. They are still supporting Mach2, and even working on a version that is System 7 compatible. But unfortunately, Forth has become their side activity. As I understood it, they are mainly working on hardware developments now, such as modems, and are doing the Mach2 support only as a service to faithful Forthers. Anyway, Rick Wiley assured me that the System 7-compatible version should be out at the end of the summer. Otherwise, he stated, “there is just no market for Forth on the Macintosh”. Too bad; people still ask me every now and then about what’s happening with Mach2, and some quite complex programs seem to have been developed with this system. The Mach2 roundtable on GEnie has been inactive for a long time; in fact, it is supposed to be taken down soon.

Still, there are quite a number of Forth systems around for the Macintosh. Mach2, if PASC keeps its promise to get the System 7 upgrade out at the end of the summer (however, if you compare Bay Area summer temperatures to those we have here in France this year, that might well be in November); MacForth Plus by Creative Solutions - but we rarely hear anything from MacForth people here at MacTutor, although there seems to be quite a big crowd out there using MacForth; then the public domain systems, starting with PocketForth by Chris Heilman, and the two object oriented systems, Yerk (ex-NEON) and Mops, which you’ve read about in this column. Thus, if you need a Forth for the Macintosh, there are still quite a few possibilities.

When (if ever) I receive a System 7-compatible version of Mach2, I’ll devote a column to it. Until then, let’s continue our C++/MacApp explorations.

C++ text boxes

Last month’s example showed you how to create two text views as subviews of a scroller, and how to make either one of them the application’s target, i.e., the place where key down events are sent. The application was very simple, it contained just one window which was open at startup, and had no means to save the view’s data in a document.

Of course, the drawing application that we are going to create is useless if we can’t save our drawings. Therefore we’ll have to restructure our example for being able to deal with documents. Also, at the end we’d like to add as many text boxes as we like to our drawing; therefore we’ll have to put them in a list which is part of the document, where all the other shapes (rectangles, lines, polygons...) are also kept.

A MacApp application that is supposed to deal with documents needs to define the method DoMakeDocument, which is called when a new document is created (by selecting New from the File menu) or an existing one opened. In our case (see example) this method will just create the new document through the new operator. We have only one class of documents. For applications that can deal with different document types, the parameter itsCmdNumber will indicate which type of document has been opened.

Initialization of the new document is done by the constructor TEditDocument::TEditDocument(). We do not need to call a special initializing method, as we would have to in Pascal. However, we need to call the generic IDocument method from within our constructor.

The document’s window and views within that window are created by the DoMakeViews() method, which is called by MacApp. In the case of a document which is opened for printing, the flag forPrinting would be set to true; we ignore it here since we make no distinction between a document opened for display or for printing.

We create the document window from a view template which was created with ViewEdit. This template contains a TEditView, which is a subclass of TScroller (see last month’s column). That view contains four subviews of type TBoxView, our text boxes which we want to draw. Although TEditView contains a list of its subviews, we’ll keep references to the text boxes in a separate list, fShapeList, to which we can later add other types of shapes (rectangles, lines, etc.), which are not views. This will be the list of objects to be drawn in our window.

Thus, we will define a new subclass of TShape, TEditBox, which contains a pointer to its document and to the TBoxView as instance variables. A TEditBox can then be accessed through the generic ForEachShapeDo method in TEditView, just as all the other shapes in the shape list. Here, the view’s frame is drawn by the method TEditBox::DrawYourself. The view itself will be drawn independently, because it is installed as a subview in the document window. (We could handle the drawing of text boxes completely separately from the other objects in the shape list, by defining an Adorn method for TBoxView; the way I’ve done it here is just one possibility).

A TBoxView should respond to mouse clicks by becoming the target for text input. Thus, we define a method TBoxView::DoMouseCommand, whose only two statements are:

/* 1 */

this->GetWindow()->SetTarget(this);
inherited::DoMouseCommand(theMouse, info, hysteresis);

Thus, it sets the currently active target to itself and then calls DoMouseCommand from its superclass, so that the standard text selection mouse commands work.

DoMakeViews() gets references to the four subviews of the TEditView and creates TEditBoxes containing those views. This is just for testing purposes; later, we’ll add a palette selection which will create a new text box and install it in the shape list, and its TBoxView in the list of subviews of the document window. I should point out here that, in order to get the view’s enclosing rectangles (their ‘extents’) with the GetFrame method, one has to focus on the superview containing them. Focusing means: setting the GrafPort to the window in which the view is installed, setting the window’s origin to the origin of the view, and setting the clip region to the view’s superview. One can only focus a view whose window is visible, so we have to show the window first (aWindow->Show(true,false)).

Once the views have been created and installed in the window, they will respond to mouse clicks as you expect; when you type text in the active text box, you can select it with the mouse, cut, copy and paste; and when you click in an inactive text box, the blinking caret will appear there.

When you try out the example, note that the bottom left text box initially is set to the Courier font, while all the others are Geneva. When you copy text from one box to the other, you’ll notice that you can mix fonts in each box; Geneva text stays Geneva, irrespectively of which box you copy it to. Yes, MacApp text views are styled. We’ll explore this property further in the coming columns, and add a style selection menu as well.

Finally, I’ll give you three screen dumps which show the ViewEdit settings for the view resources in the editor.rsrc file. They should allow those of you who don’t get the source code disks to recreate the example from scratch. Although I recommend subscribing to the source disks, if only to avoid typographic errors.

See you next month.

Screen 1: Example view hierarchy (the view in the background is the TEditView)

Screen 2: TWindow parameters for the example (target setting is not important since the program changes the target anyway)

Screen 3: TEditView parameters (note setting of view ID and class name)

Screen 4: TBoxView parameters (note class name and view ID. The four views should have IDs tx01, tx02, tx03 and tx04 respectively)

Listing 1: editor.h

class TEditor : public TApplication {
public:
 pascal TEditor(OSType itsMainFileType);
 virtual pascal struct TDocument 
 *DoMakeDocument(CmdNumber itsCmdNumber);
 pascal void HandleFinderRequest();
#ifdef qDebug
 virtual pascal void IdentifySoftware();
#endif
};

class TEditView;

class TBoxView : public TTEView {
public:
 pascal struct TCommand *DoMouseCommand
 (Point *theMouse, EventInfo *info, Point *hysteresis);
#ifdef qDebug
 virtual pascal void Fields
 (pascal void (*DoToField) (StringPtr fieldName,
 Ptr fieldAddr, short fieldType, void *link), void *link);
#endif
};

class TEditDocument : public TDocument {
public:
 TEditView*fEditView;
 pascal TEditDocument();
 pascal void DoMakeViews(Boolean forPrinting);
 pascal void DoNeedDiskSpace
 (long *dataForkBytes, long *rsrcForkBytes);
 pascal void DoRead(short aRefNum, 
 Boolean rsrcExists, Boolean forPrinting);
 pascal void DoWrite(short aRefNum, 
 Boolean makingCopy);
 pascal void Free();
#ifdef qDebug
 virtual pascal void Fields
 (pascal void (*DoToField) (StringPtr fieldName,
 Ptr fieldAddr, short fieldType, void *link), void *link);
#endif
};

class TBox : public TObject {
public:
 Rect fLocation;
 BooleanfSelected;
 RgnHandlefTagRgn;
 Rect fTL,fTR,fBL,fBR,
 fT,fB,fL,fR;
 pascal TBox(Rect *itsLocation);
 virtual pascal void DrawShape();
#ifdef qDebug
 virtual pascal void Fields
 (pascal void (*DoToField) (StringPtr fieldName,
 Ptr fieldAddr, short fieldType, void *link), void *link);
#endif
};

class TShape : public TBox {
public:
 short  fPenSize;
 PatternfPenPat;
 PatternfFillPat;
 pascal TShape(Rect *itsLocation);
#ifdef qDebug
 virtual pascal void Fields
 (pascal void (*DoToField) (StringPtr fieldName,
 Ptr fieldAddr, short fieldType, void *link), void *link);
#endif
};

class TEditBox : public TShape {
public:
 TBoxView *fBoxView;
 TEditDocument   *fEditDocument;
 
 pascal TEditBox(Rect *itsLocation, 
   TBoxView *itsView, TEditDocument *itsDocument);
 pascal void DrawShape();
#ifdef qDebug
 virtual pascal void Fields
 (pascal void (*DoToField) (StringPtr fieldName,
 Ptr fieldAddr, short fieldType, void *link), void *link);
#endif
};

class TEditView : public TScroller {
public:
 TEditDocument *fDocument;
 TList  *fShapeList; 
 // list of shapes (TEditView, boxes)
 pascal void IEditView(TEditDocument *itsDocument);
 pascal void AddShape(TBox *aBox); 
 pascal void DeleteShape();
 pascal void ForEachShapeDo
 (pascal void (*DoToItem) (TObject *item, void 
     *DoToItem_Staticlink),void *DoToItem_Staticlink);
 pascal void Draw(Rect *area);
 pascal void Free();
#ifdef qDebug
 virtual pascal void Fields
 (pascal void (*DoToField) (StringPtr fieldName,
 Ptr fieldAddr, short fieldType, void *link), void *link);
#endif
};

// -- global definitions --

typedef pascal void (*DoToObject) 
 (TObject *aObject, void *DoToObject_staticlink);
Listing 2: editor.cp

#include <UMacApp.h>
#include <UPrinting.h>
#include <UTEView.h>
#include <Fonts.h>
#include <ToolUtils.h>

#include “editor.h”

// ***** Global constants

const OSType kSignature   = ‘JLMT’;
const OSType kFileType  = ‘JL01’;
const int kWindowID= 1002;

// ***** Class TEditor 

pascal TEditor::TEditor(OSType itsMainFileType)
{TEditView*aEditView;
 TBoxView *aBoxView;
 
 IApplication(itsMainFileType);
 if (gDeadStripSuppression)
 { aEditView = new TEditView;
 aBoxView  = new TBoxView;}
}

pascal struct TDocument 
*TEditor::DoMakeDocument(CmdNumber itsCmdNumber)
{TEditDocument* aEditDocument;
 aEditDocument = new TEditDocument;
 FailNIL(aEditDocument);
 return aEditDocument;  }

pascal void TEditor::HandleFinderRequest()  {};

#ifdef qDebug
pascal void TEditor::IdentifySoftware()
{ProgramReport
 (“\pEditor ©J.Langowski/MacTutor June 1991”,false);
 inherited::IdentifySoftware();  }
#endif

// ***** Class TEditDocument 

pascal TEditDocument::TEditDocument()
{IDocument(kFileType, kSignature, kUsesDataFork,
 !kUsesRsrcFork, !kDataOpen, !kRsrcOpen);
 fSavePrintInfo = true; // save print info in data fork
}

pascal void 
 TEditDocument::DoMakeViews(Boolean forPrinting)
{VRect  itsExtent;
 Rect itsQDExtent;

 TBoxView *aBoxView;
 TEditBox *aEditBox;
 TWindow*aWindow;

 aWindow = NewTemplateWindow(kWindowID,this);
 FailNIL(aWindow);

 aWindow->SimpleStagger(kStdStaggerAmount, 
 kStdStaggerAmount, &gStdStaggerCount);

 fEditView = 
 (TEditView*) aWindow->FindSubView(‘scrl’);
 FailNIL(fEditView);
 fEditView->IEditView(this);
 
 aWindow->Show(true,false); // so view can be focused
 
 if (fEditView->Focus())  
 // must focus for ViewToQDRect
 { aBoxView = 
 (TBoxView*) aWindow->FindSubView(‘tx01’);
 FailNIL(aBoxView);
 aBoxView->GetFrame(&itsExtent);
 fEditView->
 ViewToQDRect(&itsExtent,&itsQDExtent);
 aEditBox = 
 new TEditBox(&itsQDExtent,aBoxView,this);
 FailNIL(aEditBox);
 fEditView->AddShape(aEditBox);
 
 aBoxView = 
 (TBoxView*) aWindow->FindSubView(‘tx02’);
 FailNIL(aBoxView);
 aBoxView->GetFrame(&itsExtent);
 fEditView->
 ViewToQDRect(&itsExtent,&itsQDExtent);
 aEditBox = 
 new TEditBox(&itsQDExtent,aBoxView,this);
 FailNIL(aEditBox);
 fEditView->AddShape(aEditBox);
 
 aWindow->SetTarget(aBoxView);  
 //  just for testing, set to view no. 2
 
 aBoxView = 
 (TBoxView*) aWindow->FindSubView(‘tx03’);
 FailNIL(aBoxView);
 aBoxView->GetFrame(&itsExtent);
 fEditView->
 ViewToQDRect(&itsExtent,&itsQDExtent);
 aEditBox = 
 new TEditBox(&itsQDExtent,aBoxView,this);
 FailNIL(aEditBox);
 fEditView->AddShape(aEditBox);
 
 aBoxView = 
 (TBoxView*) aWindow->FindSubView(‘tx04’);
 FailNIL(aBoxView);
 aBoxView->GetFrame(&itsExtent);
 fEditView->
 ViewToQDRect(&itsExtent,&itsQDExtent);
 aEditBox = 
 new TEditBox(&itsQDExtent,aBoxView,this);
 FailNIL(aEditBox);
 fEditView->AddShape(aEditBox);  }
}

pascal void TEditDocument::DoNeedDiskSpace
 (long *dataForkBytes, long *rsrcForkBytes)  {}
pascal void TEditDocument::DoRead(short aRefNum,
  Boolean rsrcExists, Boolean forPrinting)   {}
pascal void TEditDocument::DoWrite
 (short aRefNum, Boolean makingCopy) {}
pascal void TEditDocument::Free()  {}

#ifdef qDebug
pascal void TEditDocument::Fields(pascal void 
 (*DoToField) (StringPtr fieldName, Ptr fieldAddr, 
 short fieldType, void *link), void *link)
{DoToField(“\pTEditDocument”, nil, bClass, link);
 DoToField(“\pfEditView”, (Ptr) &fEditView, 
 bObject, link);
 inherited::Fields(DoToField, link); }
#endif

// *****  Shape class methods

pascal TBox::TBox(Rect *itsLocation)
 {    fLocation = *itsLocation;  
 fSelected = false;}

pascal void TBox::DrawShape()
{//  add code later for shape selections     }

#ifdef qDebug
pascal void TBox::Fields(pascal void (*DoToField) 
 (StringPtr fieldName, Ptr fieldAddr, short fieldType, 
 void *link), void *link)
{DoToField(“\pTBox”, nil, bClass, link);
 DoToField(“\pfLocation”, (Ptr) &fLocation, bRect, link);
 DoToField(“\pfSelected”, (Ptr) &fSelected, 
 bBoolean, link);
 DoToField(“\pfTagRgn”, (Ptr) &fTagRgn, 
 bRgnHandle, link);
 DoToField(“\pfTL”, (Ptr) &fTL, bRect, link);
 DoToField(“\pfTR”, (Ptr) &fTR, bRect, link);
 DoToField(“\pfBL”, (Ptr) &fBL, bRect, link);
 DoToField(“\pfBR”, (Ptr) &fBR, bRect, link);
 DoToField(“\pfT”, (Ptr) &fT, bRect, link);
 DoToField(“\pfB”, (Ptr) &fB, bRect, link);
 DoToField(“\pfL”, (Ptr) &fL, bRect, link);
 DoToField(“\pfR”, (Ptr) &fR, bRect, link);
 inherited::Fields(DoToField, link); }
#endif

pascal TShape::TShape(Rect *itsLocation) : (itsLocation)
{  fPenSize = 1;
 for (int i = 0; i<8 ; i++)
 { fPenPat[i]  = qd.black[i];
 fFillPat[i] = qd.gray[i];}
}

#ifdef qDebug
pascal void TShape::Fields(pascal void (*DoToField) 
 (StringPtr fieldName, Ptr fieldAddr, short fieldType, 
 void *link), void *link)
{DoToField(“\pTShape”, nil, bClass, link);
 DoToField(“\pfPenSize”, (Ptr) &fPenSize, 
 bInteger, link);
 DoToField(“\pfPenPat”, (Ptr) &fPenPat, 
 bPattern, link);
 DoToField(“\pfFillPat”, (Ptr) &fFillPat, bPattern, link);
 inherited::Fields(DoToField, link); }
#endif

pascal TEditBox::TEditBox(Rect *itsLocation, TBoxView
 *itsView, TEditDocument *itsDocument) : (itsLocation)
{fBoxView = itsView;
 fEditDocument = itsDocument; }

pascal void TEditBox::DrawShape()
{VRect  itsExtent;
 Rect itsQDExtent;
 
 PenNormal();
 fBoxView->GetFrame(&itsExtent);
 fEditDocument->fEditView->
 ViewToQDRect(&itsExtent,&itsQDExtent);
 FrameRect(&itsQDExtent);
 inherited::DrawShape();  }

#ifdef qDebug
pascal void TEditBox::Fields(pascal void (*DoToField) 
 (StringPtr fieldName, Ptr fieldAddr, short fieldType, 
 void *link), void *link)
{DoToField(“\pTEditBox”, nil, bClass, link);
 DoToField(“\pfBoxView”, (Ptr) &fBoxView, 
 bObject, link);
 DoToField(“\pfEditDocument”, (Ptr) &fEditDocument, 
 bObject, link);
 inherited::Fields(DoToField, link); }
#endif

// *****  TBoxView methods

pascal struct TCommand 
 *TBoxView::DoMouseCommand(Point *theMouse,
 EventInfo *info, Point *hysteresis)
{this->GetWindow()->SetTarget(this);
 inherited::DoMouseCommand
 (theMouse, info, hysteresis);
 return gNoChanges;}

#ifdef qDebug
pascal void TBoxView::Fields(pascal void (*DoToField) 
 (StringPtr fieldName, Ptr fieldAddr, short fieldType, 
 void *link), void *link)
{DoToField(“\pTBoxView”, nil, bClass, link);
 inherited::Fields(DoToField, link); }
#endif

// *****  TEditView methods

pascal void TEditView::IEditView
 (TEditDocument *itsDocument)
{TStdPrintHandler*aStdPrintHandler;
 TList  *aList;
 
 aStdPrintHandler = new TStdPrintHandler;
 FailNIL(aStdPrintHandler);
 aStdPrintHandler->IStdPrintHandler
 (nil,this,kSquareDots,kFixedSize,!kFixedSize);
 fPrintHandler = aStdPrintHandler;
 
 fDocument = itsDocument; 
 aList = NewList();
 fShapeList = aList; }

pascal void TEditView::AddShape(TBox *aBox) 
 { fShapeList->InsertFirst(aBox);  }

pascal void TEditView::DeleteShape()
 { fShapeList->Delete(fShapeList->First());  }

pascal void TEditView::ForEachShapeDo
 (pascal void (*DoToItem) (TObject *item, void
  *DoToItem_Staticlink),void *DoToItem_Staticlink)
{fShapeList->Each(DoToItem,DoToItem_Staticlink); }


pascal void DrawYourself(TBox *aBox, void *link)
 { aBox->DrawShape();}
pascal void TEditView::Draw(Rect *area)
{void *link;
 ForEachShapeDo((DoToObject)DrawYourself,link); }

pascal void TEditView::Free() { }

#ifdef qDebug
pascal void TEditView::Fields(pascal void (*DoToField) 
 (StringPtr fieldName, Ptr fieldAddr, short fieldType, 
 void *link), void *link)
{DoToField(“\pTEditView”, nil, bClass, link);
 DoToField(“\pfDocument”, (Ptr) &fDocument, 
 bObject, link);
 DoToField(“\pfShapeList”, (Ptr) &fShapeList, 
 bObject, link);
 inherited::Fields(DoToField, link); }
#endif

TEditor *gEditor;

int main()
{InitToolBox();
 if (ValidateConfiguration(&gConfiguration))
 {
 InitUMacApp(8); InitUPrinting();
 InitUTEView();
 gEditor = new TEditor(kFileType);
 FailNIL(gEditor);
 gEditor->Run(); }
 else StdAlert(phUnsupportedConfiguration);
 return 0;}
Listing 3: editor.r

/* editor.r 
 Rez file for MacTutor C++/MacApp Editor example
 J. Langowski March 1991  */

#ifndef __TYPES.R__
#include “Types.r”
#endif

#ifndef __SYSTYPES.R__
#include “SysTypes.r”
#endif

#ifndef __MacAppTypes__
#include “MacAppTypes.r”
#endif

#ifndef __ViewTypes__
#include “ViewTypes.r”
#endif

#if qDebug
include “Debug.rsrc”;
#endif

include “MacApp.rsrc”;
include “Printing.rsrc”;

include “Defaults.rsrc” ‘SIZE’(-1);
include “Defaults.rsrc” ‘ALRT’(phAboutApp);
include “Defaults.rsrc” ‘DITL’(phAboutApp);
include “Defaults.rsrc” ‘cmnu’(mApple);
include “Defaults.rsrc” ‘cmnu’(mEdit);
include “Defaults.rsrc” ‘cmnu’(mBuzzWords);

include “Editor” ‘CODE’;

include “editor.rsrc”;

#define kSignature ‘JLMT’
#define kDocFileType ‘JL01’
#define getInfoString“©1991 J.Langowski/MacTutor. “

resource ‘cmnu’ (2) {
 2, textMenuProc, allEnabled, enabled, “File”,
  {“New”, noIcon, “N”, noMark, plain, 10;
 “Open ”, noIcon, “O”, noMark, plain, 20;
 “-”, noIcon, noKey, noMark, plain, nocommand;
 “Close”, noIcon, noKey, noMark, plain, 31;
 “Save”, noIcon, “S”, noMark, plain, 30;
 “Save As ”, noIcon, noKey, noMark, plain, 32;
 “Save a Copy In ”, noIcon, noKey, 
 noMark, plain, 33;
 “-”, noIcon, noKey, noMark, plain, nocommand;
 “Page Setup ”, noIcon, noKey, 
 noMark, plain, 176;
 “Print One”, noIcon, “P”, noMark, plain, 177;
 “Print ”, noIcon, noKey, noMark, plain, 178;
 “-”, noIcon, noKey, noMark, plain, nocommand;
 “Quit”, noIcon, “Q”, noMark, plain, 36}
};

resource ‘MBAR’ (kMBarDisplayed,purgeable) 
{{mApple; 2; mEdit;} };

RESOURCE ‘vers’ (2,
#if qNames
“Package Version”,
#endif
 purgeable) { 0x02, 0x00, beta, 0x06, verUs, “2.0”,
 “MacApp® 2.0, ©Apple Computer, Inc. 1990”  };

RESOURCE ‘vers’ (1,
#if qNames
“File Version”,
#endif
 purgeable) { 0x01, 0x00, beta, 0x05, verUs, “Editor”,
 “©JL/MacTutor June 1991” };

resource ‘dbug’ (kDebugParamsID,
#if qNames
“Debug”,
#endif
 purgeable) {  {350, 4, 474, 636},  /* Bounding rect  */
 1,  /*  font  */ 9, /* font size  */
 100, /* Number of lines */ 100, /* Width of lines */
 true, /* open initially */
 “Jörg’s Debug Window”  /* Window title */  };

 

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.