TweetFollow Us on Twitter

Palette Selection
Volume Number:2
Issue Number:5
Column Tag:C Workshop

Palette Selection in Aztec C

By Mike Schuster, Adobe Systems, MacTutor Contributing Editor

Mike wins our prize of $50 for this month's outstanding article with this fine demonstration of a new ROM routine. Congratulations Mike!

Making Palettes with the List Manager

Apple's December 1985 Macintosh software supplement (which was shipped to “the rest of us” in March 1986) contains a variety of useful items, including the new List Manager Package. The List Manager provides a set of routines and data types for creating, maintaining and displaying lists and arrays of data elements. In its simplest form, you can use the List Manager to display a scrollable list of names, as in the Standard File Open dialog box. In other, more complex forms, you can use the List Manager to display arrays of arbitrary graphic images, as the displays of pictures and icons in the Resource Editor and the Chooser desk accessory.

Apple implemented the List Manager as a package (like the Standard File, Disk Initialization and International Utilities packages) and placed it (as package 0) in the System resource file (version 3.1.1) which is included with the supplement. The supplement also contains an alpha draft of the new List Manager Package chapter of Inside Macintosh Volume IV.

To show you what you can do with the List Manager, I used it implement a MacPaint-like palette of tools:

In this example, the palette is represented as a 2 column by 10 row array (only 5 rows of which are visible at any one time), where each list element is a MacPaint tool icon. I instructed the List Manager to display the array and its scroll bar in a rectangle within its own window. Once the array is setup, the List Manager handles all mouse events, selections, and scrolling of the icons within the palette.

The List Manager provides a variety of display alternatives. In the following two example, I arranged the palette as 10 column by 2 row array and as a 20 column by 1 row array.

In the following example, the palette is arranged as a 10 column by 2 row array, where the whole palette is visible in its window, and so a scroll bar is not needed.

The List Manager's Structure

The List Manager is designed to maintain a set of data elements within a list, and to display the list in a rectangle within a window. The data elements themselves are displayed in the rectangle as a two dimensional array of cells. Although the size of each data element may vary, the cells in which they are displayed must be the same size. When you create the list, you specify the horizontal and vertical size of a cell, as well as the number of rows and columns of cells the list is to contain. After the list is created, you can at any time add new rows or columns to the list as well as delete existing rows and columns. The cells in a new list and in any new rows and columns are initially empty.

Once you have created the list, or added rows or columns, you can set the values of the cells. The value of a cell is any arbitrary consecutive sequence of bytes of data, with the restriction that the total size of a list cannot exceed 32K bytes. Hence, a cell can store most anything - a text string, the bits of an icon, or the resource ID of a picture.

At any given time, only a subset of the cells in the list may be visible in the list's rectangle within the window. The set of visible cells is determined by the size of a cell, the number of rows and columns in the list, and the current horizontal and vertical scrolling positions.

The location of each cell in a list is specified by its row and column number. The top-left cell in the list is in column 0 and row 0. The bottom-right cell in the list is in column c-1, row r-1, where the list contains c columns and r rows. The List Manager uses the Quickdraw Point data type to specify a cell's location. The horizontal coordinate specifies the cell's column, and the vertical coordinate specifies the cell's row.

The List Manager calls a list definition procedure, which is normally stored as a resource in a resource file, to draw and hilite the data elements within a cell. Apple supplied a default text-only procedure with the software supplement. For the palette, we'll have to write our own custom procedure to draw and hilite the palette's icons.

The List Manager routine LNew creates a list, and returns a handle to the new list.

ListHandle LNew(rView, dataBounds, cSize, theProc, theWindow, drawIt, 
hasGrow, scrollHoriz, scrollVert)

Rect *rView, *dataBounds;
Point cSize;
int theProc;
WindowPtr theWindow;
Boolean drawIt, hasGrow, scrollHoriz, scrollVert;

The list will be displayed in the window specified by theWindow. RView specifies, in the local coordinates of theWindow, the rectangle in which the list will be drawn.

The rectangle DataBounds specifies the initial dimensions of the list. Its top and left coordinates should both be 0. Its bottom coordinate specifies the number of rows in the list. Its right coordinate specifies the number of columns in the list. The point cSize specifies the size of each cell. Its horizontal coordinate specifies the width of a cell. Its vertical coordinate specifies the height of a cell.

TheProc is the resource ID of the list definition procedure that will be used to draw and hilite the data elements within the cells. For the default text-only list, pass 0 and Apple's default list definition procedure will be used.

If scrollHoriz is TRUE, the List Manager will place a horizontal scroll bar immediate below rView in the window and will enable all of the list's horizontal scrolling functions. Similarly, if scrollVert is TRUE, the List Manager will place a vertical scroll bar immediately to the right of rView in the window and will enable all of the list's vertical scrolling functions. If hasGrow is TRUE, the scroll bars are sized to make room for a size box in the standard position.

DrawIt specifies the initial value of the list's drawing mode. If the list's drawing mode is TRUE, all routines that affect the contents of cells, the number of rows and columns in the list, the size of the window, or which cells are visible within the rectangle, will cause the updated list to be drawn. If the list's drawing mode is FALSE, none of these operations will cause the updated list to be drawn, until the drawing mode is later set to TRUE, using the List Manager routine LDoDraw.

void LDoDraw(drawIt, lHandle)
 Boolean drawIt;
 ListHandle lHandle;

LDoDraw sets the list's drawing mode to the state specified by drawIt.

The ListHandle returned by LNew is defined as follows. For a more detailed description, refer to the List Manager Package chapter in the supplement.

typedef Point Cell;

typedef struct
 {
 Rect rView;/* list's display rectangle */
 GrafPtr port;   /* list's grafPort */
 Point indent;   /* indent distance */
 Point cellSize; /* cell size */
 Rect visible;   /* boundary of visible cells */
 ControlHandle vScroll; /* vertical scroll bar */
 ControlHandle hScroll; /* horizontal scroll bar */
 char selFlags;  /* selection flags */
 Boolean lActive;/* TRUE if active */
 char lReserved; /* reserved */
 char listFlags; /* automatic scrolling flags */
 long clikTime;  /* time of last click */
 Point clikLoc;  /* position of last click */
 Point mouseLoc; /* current mouse location */
 Ptr lClikLoop;  /* routine for LClick */
 Cell lastClick; /* last cell clicked */
 long refCon;    /* list's reference value */
 Handle listDefProc; /* list definition procedure */
 Handle userHandle;/* additional storage */
 Rect dataBounds;/* boundary of cells allocated */
 Handle cells;   /* cell data */
 int maxIndex;   /* used internally */
 int cellArray[1]; /* offsets to data */
 } ListRec, *ListPtr, **ListHandle;

The List Manager provides a variety of cell selection algorithms, and defines the following predefined flags for the selFlags field of the list record shown on the top of the next page.

#define lOnlyOne 128 /* set if only one selected cell */
#define lExtendDrag 64    /* set for dragging without shift */
#define lNoDisjoint 32    /* set  turns off multiple selects */
#define lNoExtend 16 /* set to not extend shift selects */
#define lNoRect 8/* set to not expand selections */
#define lUseSense 4/* set for shift to use first cell's        
 sense */
#define lNoNilHilite 2    /* set to not hilite empty cells */

For our purposes, only the lOnlyOne flag is useful, since only one icon may be selected from the palette at any time. Check the supplement for a description of the other flags.

Once the list is created, the List Manager routine LSetCell may be called to set the value of a particular cell in the list.

void LSetCell(dataPtr, dataLen, theCell, lHandle)
 Ptr dataPtr;
 int dataLen;
 Cell theCell;
 ListHandle lHandle;

LSetCell places the data pointed to by dataPtr and of length dataLen into the cell specified by theCell in the list specified by lHandle.

In addition to setting the value of a cell, the List Manager provides routines for selecting a cell as well as returning information about which cell (cells) is (are) currently selected.

void LSetSelect(setIt, theCell, lHandle)
 Boolean setIt;
 Cell theCell;
 ListHandle lHandle;

If setIt is TRUE, LSetSelect selects the cell specified by theCell in the list specified by lHandle. If setIt is FALSE, LSetSelect deselects the cell.

Boolean LGetSelect(next, theCell, lHandle)
 Boolean next;
 Cell *theCell;
 ListHandle lHandle;

If next is FALSE, LGetSelect returns TRUE if the specified cell is selected, or FALSE if not. If next is TRUE, LGetSelect returns in theCell the cell coordinates of the next selected cell after theCell in row major order, and returns TRUE. If there are no selected cells after theCell, FALSE is returned.

The List Manager provides several routines that should be called in response to certain events.

void LActivate(act, lHandle)
 Boolean act;
 ListHandle lHandle;

You should call LActivate to activate or deactivate the list specified by lHandle in response to an activate event in the window containing the list. Act should be set to TRUE to activate the list, and FALSE to deactivate it.

void LUpdate(theRgn, lHandle)
 RgnHandle theRgn;
 ListHandle lHandle;

You should call LUpdate in response to an update event. TheRgn should be set to the visRgn of the list's window. LUpdate redraws the visible cells and the scroll bars, if necessary.

Boolean LClick(pt, modifiers, lHandle)
 Point pt;
 int modifiers;
 ListHandle lHandle;

Call LClick in response to a mouse-down event in the list's rectangle or its scroll bars. Pt is the mouse location in local coordinates. Modifiers is the modifiers word from the event record. The result is TRUE if a double-click occurred.

LClick keeps control until the mouse is released. If the pointer is in the list's rectangle, cells are selected appropriately. If the pointer was in the rectangle, but is dragged outside, the list is auto-scrolled. If the pointer was in a scroll bar, its control definition procedure is called to track the mouse, and the list is scrolled appropriately.

In addition to the 8 routines described above, the List Manager provides an additional 18 routines. Check the supplement for their description.

Implementing the Palette

With help of the List Manager, implementing the palette is relatively straightforward. First LNew is called to create a 2 column by 10 row list. Then LSetCell is called to set the value of each cell to the 128 bytes of the appropriate icon. The icons themselves are stores as ICON resources in the application's resource file.

Once the palette is created, the routines LActivate, LUpdate, and LClick are called in response to the appropriate events.

The routine IconListDef is our custom list definition procedure that draws and hilites the icons in their respective cells. A list definition procedure must have the following parameters:

void ListDefProc(lMessage, lSelect, lRect, lCell, lDataOffset, 
 lDataLen, lHandle)
 int lMessage;
 Boolean lSelect;
 Rect *lRect;
 Cell lCell;
 int lDataOffset, lDataLen;
 ListHandle lHandle;

The lMessage parameter identifies the operation to be performed. It has one of the following values:

#define lInitMsg 0 /* do any additional list initialization */
#define lDrawMsg 1 /* draw and optionally hilite the cell */
#define lHiliteMsg 2 /* invert the cell's hilite state */
#define lCloseMsg 3/* take any additional disposal action */

LSelect is TRUE if the cell should be selected. LRect is the rectangle in which the cell should be drawn or hilited. lCell identifies the cell's column and row. LDataLen is the length in bytes of the cell's data. LDataOffset is the offset into the list's cell data of the cell to be drawn or hilited. lHandle is a handle to the list record.

Our routine IconListDef ignores the lInitMsg and lCloseMsg, since no private storage is needed.

In response to an lDrawMsg, IconListDef uses the Quickdraw CopyBits routine to copy the bits of the icon from the list's cell data into the argument rectangle lRect. Then, if lSelect is TRUE, InvertRect is called to hilite the icon.

In response to an lHiliteMsg, IconListDef simply calls InvertRect to invert the hilite state of the icon.

Since LNew expects that the list definition procedure is stored as an LDEF resource in a resource file, I defined a 6 byte LDEF resource that contains the single instruction

 JMP    $00000000

Then, before calling LNew, the following code is used to modify the destination of the JMP instruction to the routine IconListDef:

 theLDEF = GetResource('LDEF', LDEF);
 *(long *) (*theLDEF + 2) = (long) &IconListDef;

This scheme is reasonable since the LDEF resource is non-purgeable and the IconListDef routine is in a non-relocatable CODE resource.

The application itself was written for the Manx Aztex C compiler.

/*
 * Palette List Application
 */

#include <event.h>
#include <inits.h>
#include <list.h>
#include <memory.h>
#include <menu.h>
#include <packages.h>
#include <quickdraw.h>
#include <resource.h>
#include <segment.h>
#include <toolutil.h>
#include <window.h>

#define MENUBAR 256
#define WINDOW 256
#define ICON 256
#define LDEF 256
#define GRABBER 256

#define WIDTH 26
#define HEIGHT 22
#define ROWS 10
#define COLUMNS 2

#define POINT(thePt) *(long *)(&thePt)

WindowPtr palette;

main()
 {
 MacInit();
 MenuInit();
 PaleInit();
 for (;;)
 EventDoOne();
 }

MacInit()
 {
 InitGraf(&thePort);
 InitFonts();
 InitWindows();
 InitMenus();
 TEInit();
 InitDialogs(0l);
 FlushEvents(everyEvent, 0);
 InitCursor();
 }

MenuInit()
 {
 SetMenuBar(GetNewMBar(MENUBAR));
 DrawMenuBar();
 }


pascal void IconListDef(lMessage, lSelect, lRect, lCell,       
 lDataOffset, lDataLen, lHandle)
 int lMessage;
 int lSelect;
 Rect *lRect;
 long lCell;
 int lDataOffset;
 int lDataLen;
 ListHandle lHandle;
 {
 char tag;
 BitMap iconBits;
 
BlockMove(lRect, &iconBits.bounds, (long) sizeof(Rect));
switch (lMessage)
 {
 case lInitMsg:
 break;
 
 case lDrawMsg:
 if (lDataLen)
 {
 tag = *(char *) (*lHandle)->cells;
 HLock((*lHandle)->cells);
 iconBits.baseAddr = *(*lHandle)->cells +                      lDataOffset;
 iconBits.rowBytes = 4;
 CopyBits(&iconBits, &thePort->portBits,                       lRect, 
lRect, srcCopy, 0l);
 *(char *) (*lHandle)->cells = tag;
 }
 else
 EraseRect(lRect);
 if (!*(char *) &lSelect)
 break;
 
 case lHiliteMsg:
 iconBits.bounds.right--; iconBits.bounds.bottom--;
 InvertRect(&iconBits.bounds);
 break;
 
 case lCloseMsg:
 break;
 }
}

PaleInit()
 {
 Handle theLDEF;
 Rect theView;
 Rect theBounds;
 int scroll;
 Point theSize;
 ListHandle theList;
 Cell theCell;
 int id;
 Handle theIcon;
 
 palette = GetNewWindow(WINDOW, 0l, -1l);

 theLDEF = GetResource('LDEF', LDEF);
 *(long *) (*theLDEF + 2) = (long) &IconListDef;
 
 SetRect(&theBounds, 0, 0, COLUMNS, ROWS);
 BlockMove(&palette->portRect, &theView, (long)                sizeof(Rect));
 if (scroll = (theView.bottom - theView.top) / HEIGHT <        
 ROWS)
 theView.right -= 15;
 SetPt(&theSize, WIDTH, HEIGHT);
 theList = LNew(&theView, &theBounds, POINT(theSize),          
 LDEF, palette, FALSE, FALSE, FALSE, scroll ?                  TRUE : 
FALSE);
 SetWRefCon(palette, theList);
 (*theList)->selFlags = lOnlyOne;

 for (id = 0; id < COLUMNS * ROWS; id++)
 {
 SetPt(&theCell, id % COLUMNS, id / COLUMNS);
 HLock(theIcon = GetIcon(id + ICON));
 LSetCell(*theIcon, 128, POINT(theCell), theList);
 HUnlock(theIcon);
 }

 SetPt(&theCell, 0, 0);
 LSetSelect(TRUE, POINT(theCell), theList);
 
 LDoDraw(TRUE, theList);
 ShowWindow(palette);
 }

EventDoOne()
 {
 EventRecord theEvent;
 WindowPtr theWindow;
 
 if (GetNextEvent(everyEvent, &theEvent))
 {
 switch (theEvent.what)
 {
 case mouseDown:
 switch (FindWindow(POINT(theEvent.where),                     &theWindow))
 {
 case inMenuBar:
 if (MenuSelect(POINT(theEvent.where)))
 ExitToShell();
 break;
 
 
 case inContent:
 if (theEvent.modifiers & optionKey)
 {
 SetCursor(*GetCursor(GRABBER));
 LActivate(FALSE, GetWRefCon(palette));
 DragWindow(palette, POINT(theEvent.where),                    &screenBits.bounds);
 LActivate(TRUE, GetWRefCon(palette));
 InitCursor();
 }
 else
 {
 SetPort(palette);
 GlobalToLocal(&theEvent.where);
 LClick(POINT(theEvent.where),     theEvent.modifiers, GetWRefCon(palette));
 }
 break;
 }
 break;
 
 case updateEvt:
 BeginUpdate(palette);
 LUpdate(palette->visRgn, GetWRefCon(palette));
 EndUpdate(palette);
 break;
 
 case activateEvt:
 LActivate(theEvent.modifiers & activeFlag ? TRUE :            FALSE, 
GetWRefCon(palette));
 break;
 }
 }
}

A Few Resources

The following file is a list of the resources used by the Palette application. The file Palette.app contains the linked application. The file Palette.icon contains the tool icons and application cursors. The file List.pack contains the List Manager package. (You don't need to include this file if the List Manager package resides in your System file, ie System File 3.1.1, the latest release.)

*

* Palette List Resources

*

Palette:Palette

APPLPALE

Include Palette:Palette.app

Include Palette:Palette.icon

Include Palette:List.pack

Type MBAR = GNRL

,256 (4)

.I

1

.I

256

Type MENU

,256 (4)

File

Quit

Type WIND

,256 (4)

Untitled

* bounds for 5 rows with scroll bar: 29 15 139 82

* bounds for 10 rows without scroll bar: 29 15 249 67

29 15 139 82

Invisible NoGoAway

2

0

Type LDEF = GNRL

,256 (4)

.H

4EF9 0000 0000

A List Manager Interface

The following file is the List Manager interface for Manx Aztec C. Each of the routine nubs first pops a return address off the stack, pushes the appropriate package routine selector word, pushes the return address back onto the stack, and then invokes the _Pack0 trap. The auto-pop bit in the _Pack0 trap word is set so that control returns to the invoking routine.

;
; Manx Axtec C interface to the List Manager
;
lActivate equ    0
lAddColumnequ    lActivate+4
lAddRow equ    lAddColumn+4
lAddToCellequ    lAddRow+4
lAutoScroll equ    lAddToCell+4
lCellSize equ    lAutoScroll+4
lClick  equ    lCellSize+4
lClrCellequ    lClick+4
lDelColumnequ    lClrCell+4
lDelRow equ    lDelColumn+4
lDisposeequ    lDelRow+4
lDoDraw equ    lDispose+4
lDraw equ    lDoDraw+4
lFind equ    lDraw+4
lGetCellequ    lFind+4
lGetSelectequ    lGetCell+4
lLastClickequ    lGetSelect+4
lNew  equ    lLastClick+4
lNextCell equ    lNew+4
lRect equ    lNextCell+4
lScroll equ    lRect+4
lSearch equ    lScroll+4
lSetCellequ    lSearch+4
lSetSelectequ    lSetCell+4
lSize equ    lSetSelect+4
lUpdate equ    lSize+4

public  .begin

_ListCall:
 move.l (A7)+,A0 ; pop return address
 move.w D0,-(A7) ; push routine selector
 move.l A0,-(A7) ; push return address
 dc.w $ade7 ; pack0, with auto-pop

 public LNew_
LNew_:
 moveq  #lNew,D0
 bra  _ListCall

 public LDispose_
LDispose_:
 moveq  #lDispose,D0
 bra  _ListCall

 public LAddColu_
LAddColu_:
 moveq  #lAddColumn,D0
 bra  _ListCall

 public LAddRow_
LAddRow_:
 moveq  #lAddRow,D0
 bra  _ListCall

 public LDelColu_
LDelColu_:
 moveq  #lDelColumn,D0
 bra  _ListCall

 public LDelRow_
LDelRow_:
 moveq  #lDelRow,D0
 bra  _ListCall

 public LAddToCe_
LAddToCe_:
 moveq  #lAddToCell,D0
 bra  _ListCall

 public LClrCell_
LClrCell_:
 moveq  #lClrCell,D0
 bra  _ListCall

 public LGetCell_
LGetCell_:
 moveq  #lGetCell,D0
 bra  _ListCall

 public LSetCell_
LSetCell_:
 moveq  #lSetCell,D0
 bra  _ListCall

 public LCellSiz_
LCellSiz_:
 moveq  #lCellSize,D0
 bra  _ListCall

 public LGetSele_
LGetSele_:
 moveq  #lGetSelect,D0
 bra  _ListCall

 public LSetSele_
LSetSele_:
 moveq  #lSetSelect,D0
 bra  _ListCall

 public LClick_
LClick_:
 moveq  #lClick,D0
 bra  _ListCall

 public LLastCli_
LLastCli_:
 moveq  #lLastClick,D0
 bra  _ListCall

 public LFind_
LFind_:
 moveq  #lFind,D0
 bra  _ListCall

 public LNextCel_
LNextCel_:
 moveq  #lNextCell,D0
 bra  _ListCall

 public LRect_
LRect_:
 moveq  #lRect,D0
 bra  _ListCall

 public LSearch_
LSearch_:
 moveq  #lSearch,D0
 bra  _ListCall

 public LSize_
LSize_:
 moveq  #lSize,D0
 bra  _ListCall

 public LDraw_
LDraw_:
 moveq  #lDraw,D0
 bra  _ListCall

 public LDoDraw_
LDoDraw_:
 moveq  #lDoDraw,D0
 bra  _ListCall

 public LScroll_
LScroll_:
 moveq  #lScroll,D0
 bra  _ListCall

 public LAutoScr_
LAutoScr_:
 moveq  #lAutoScroll,D0
 bra  _ListCall

 public LUpdate_
LUpdate_:
 moveq  #lUpdate,D0
 bra  _ListCall

 public LActivat_
LActivat_:
 moveq  #lActivate,D0
 bra  _ListCall

 end
 
AAPL
$501.02
Apple Inc.
+2.34
MSFT
$34.83
Microsoft Corpora
+0.34
GOOG
$895.87
Google Inc.
+13.86

MacTech Search:
Community Search:

Software Updates via MacUpdate

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
Merlin 2.9.2 - Project management softwa...
Merlin is the only native network-based collaborative Project Management solution for Mac OS X. This version offers many features propelling Merlin to the top of Mac OS X professional project... Read more
Eye Candy 7.1.0.1191 - 30 professional P...
Eye Candy renders realistic effects that are difficult or impossible to achieve in Photoshop alone, such as Fire, Chrome, and the new Lightning. Effects like Animal Fur, Smoke, and Reptile Skin are... 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 »
Costume Quest Review
Costume Quest Review By Blake Grundman on October 16th, 2013 Our Rating: :: SLIGHTLY SOURUniversal App - Designed for iPhone and iPad This bite sized snack lacks the staying power to appeal beyond the haunting season.   | Read more »
Artomaton – The AI Painter is an Artific...
Artomaton – The AI Painter is an Artificial Artistic Intelligence That Paints From Photos You’ve Taken Posted by Andrew Stevens on October 16th, 2013 [ | Read more »
Hills of Glory 3D Review
Hills of Glory 3D Review By Carter Dotson on October 16th, 2013 Our Rating: :: BREACHED DEFENSEUniversal App - Designed for iPhone and iPad Hills of Glory 3D is the most aggravating kind of game: one with good ideas but sloppy... | Read more »
FitStar: Tony Gonzalez Adds New 7 Minute...
FitStar: Tony Gonzalez Adds New 7 Minute Workout Program for Those Who Are in a Hurry Posted by Andrew Stevens on October 16th, 2013 [ permalink ] | Read more »
PUMATRAC Review
PUMATRAC Review By Angela LaFollette on October 16th, 2013 Our Rating: :: INSIGHTFULiPhone App - Designed for the iPhone, compatible with the iPad PUMATRAC not only provides runners with stats, it also motivates them with insights... | Read more »
Flipcase Turns the iPhone 5c Case into a...
Flipcase Turns the iPhone 5c Case into a Game of Connect Four Posted by Andrew Stevens on October 15th, 2013 [ permalink ] | Read more »

Price Scanner via MacPrices.net

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
Global Notebook Shipments To Grow Less Than 3...
Digitimes Research’s Joanne Chien reports that Taiwan’s notebook shipments grew only 2.5% sequentially, and dropped 8.6% year-over-year in the third quarter despite the fact that notebook ODMs have... Read more

Jobs Board

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
Associate *Apple* Solutions Consultant - Ap...
**Job Summary** The Associate ASC is an Apple employee who serves as an Apple brand ambassador and influencer in a Reseller's store. The Associate ASC's role is to Read more
*Apple* Solutions Consultant (ASC) - Apple (...
**Job Summary** The ASC is an Apple employee who serves as an Apple brand ambassador and influencer in a Reseller's store. The ASC's role is to grow Apple Read more
All contents are Copyright 1984-2011 by Xplain Corporation. All rights reserved. Theme designed by Icreon.