TweetFollow Us on Twitter

DialogKeyFilter
Volume Number:9
Issue Number:7
Column Tag:Pascal Workshop

Related Info: Dialog Manager Event Manager List Manager

Dab-hand Dialogs from Darkest Africa

We describe, design, develop and distribute a decent DialogKeyFilter

By Mike O’Hanlon, Cape Town, South Africa

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

About the author

Mike O’Hanlon has been programming the Macintosh on a hobby basis for about 4 years. Anything starting with O’ is likely to be his. O’Tools, O’Heap, O’Files, O’Fonts, O’Help, O’Clock, O’List and O’Tree are examples. He believes his most useful effort to date has been O’Structures - a Data Structures library written in Object Pascal. He thinks C is for the birds. His other preoccupations are his wife, skiing and off-roading in a Land Rover.

DERELICT DIALOGS

I don’t want to be derogatory, but it’s dawning on this developer that our Dialogs are looking decidedly disadvantaged. They’re definitely in the Doldrums.

I’m a user interface fanatic, and hopelessly biased towards the Macintosh, so I get upset when another environment (like Windows) develops a tweak that gives it an edge over the Mac.

DYNAMIC DEVELOPMENT

In the case of the ubiquitous Modal Dialog, the improvement we should learn from Microsoft is that of allowing keyboard shortcuts for any enabled buttons, checkboxes and radio buttons presented in the dialog. The mouse is great, but sometimes the keyboard is much more convenient. You know the kind of thing: you’ve yanked up a “Find...” dialog using Command-F; you’ve typed the word you want to find, and you want to hit Command-W to toggle the “Whole Words” checkbox. With most applications, you can’t; you have to leave the keyboard and switch to the mouse.

Let’s call these shortcuts Dialog Control keys - to distinguish them from other types of keyboard shortcut like Menu Command keys, and ‘Type Selection’ of items in a List box (see Inside Macintosh Vol. VI, page 2-25).

It’s notable that Microsoft’s own applications for the Mac do implement this feature. The way I see it, Excel and Word are in any event the most popular Macintosh applications, and in effect this legitimizes such an extension to the Mac user interface.

‘D’ FOR DESKTOP

It’s also in keeping with recent keyboard shortcuts introduced by Apple, such as Command-D for the ‘DeskTop’ button in the standard file Open... dialog.

The other day, I got down to implementing this in my own applications. Once I got started, it wasn’t as difficult as I’d thought.

The challenge was to program it in a general purpose fashion and thereby avoid any App-specific code. I think I have succeeded in this, to the extent that if you use a resource editor to alter the titles of dialog controls (e.g. to create a foreign language version of your program), the keyboard shortcuts adapt themselves without any additional work.

So, to try and ensure that the Mac interface isn’t left behind, here are some explanatory notes and the code - which I hereby place in the public domain, hoping that the idea will be adopted by mainstream tool developers such as Symantec (in the THINK Class Libraries) and Bowers Development (in AppMaker).

DESCRIBING THE IDEA

The original Mac designers cleverly envisaged this kind of thing, and provided a neat hook for developers in the form of the filterProc parameter to the ModalDialog toolbox call.

The default system filter simply maps a few basic keys (Return, Enter, Esc etc.) to certain pre-defined dialog items. What I have done is implemented my ideas for Dialog Control keys entirely inside a much fuller-function filter procedure which you can specify in any ModalDialog call. I have called the thing DialogKeyFilter. There’s nothing else: no additional resources, no global variables, and no heap blocks. I have kept it as self-contained as possible.

DELICATE DESIGN

The basic principle in the filter is to interpret a key depression as a mouse click on the lowest numbered dialog item which is an enabled Control, and which has a title in which the first capitalized (upper case) letter matches the user’s key stroke. The idea is that the user should be able to use the A key for an “Add” button, the G key for a “Grid Lines” checkbox, the L key for a “Left Aligned” or “align Left” radio button etc. (I’ll come to whether or not the Command key is needed in a moment).

DEFAULT DECISION

But we have to be careful in several respects. Firstly, the user interface guidelines defined by Apple (I.M. Vol. VI, page 2-26) have already allocated two keyboard equivalents each for the default button (normally OK) and Cancel - namely Enter/Return and Esc/Command-period. For this reason, and because of possible confusion with the Copy (Edit menu) command, it makes sense not to associate Command-C with Cancel. Also, we only allocate an alphabetic Dialog Control key to the dialog’s default item if there is no other dialog item sharing the same first capitalized letter. For example, if the default item is ‘OK’, but there is also an ‘Outline’ button, the ‘O’ key (or Command-O) is interpreted as ‘Outline’, not ‘OK’.

Next, let’s consider the Command key. Should its use be made mandatory, or not? It depends on whether the dialog contains editable text or List items. If the cursor is currently in an editable text field, most key depressions must perform their normal input function. In this case we only interpret the key hit as a Dialog Control key if the user has the Command key depressed as well. Even then, we must reserve Command-X, -C and -V for the standard Edit commands.

DIRTY SCRAP

Incidentally, if the user does a Cut or Copy whilst in the dialog, the filter routine should notify the calling program, so that the latter knows that the scrap is ‘dirty’ and can act accordingly. The DialogKeyFilter routine provided in the source listing does this by setting the event.message field to the constant convertClipboardFlag, so that the developer can test it on return from the ModalDialog call. (The filterProc’s event is a var parameter). It could alternatively be done by having the filter routine set a global variable. Neither are very elegant solutions, and this reveals a deficiency in the filterProc parameter set.

DIALOG LISTS

Now, what happens when a dialog contains one or more List boxes? If a List is selected (or is the only dialog item which could receive keyboard events) most key depressions should be interpreted as ‘Type Selection’ in the list. I couldn’t build any generalized List support into DialogKeyFilter because there’s no way of identifying a dialog item as a List (it’s just a special case of User item). So, if you have a List in your dialog box, you’ll have to filter the List first, and then call DialogKeyFilter. (If there’s any demand, I’ll publish a ListKeyFilter as a follow-up supplement to this article).

Here’s the full Dialog key-depression logic. The part to be done in a List filter is in italics:

{1}

KeyDown or AutoKey event:
 Enter or Return:
 Set item hit to the default item;
 Esc. or Command-period:
 Set item hit to Cancel; {item 2}
 Tab key:
 Rotate round Editable text/List items;
 Other keys:
 Editable text field selected:
 F2, F3, or F4 depressed:
 It’s an Edit command;
 Not F2, F3 or F4:
 Command key down:
 X, C or V depressed:
 It’s an Edit command;
 A..Z (but not X, C or V):
 Dialog Control key;
 Others keys:
 Ignore;
 Command key not down:
 Apply key to the edit field;
 List box item selected:
 A..Z with Command key:
 Dialog Control key;
 Otherwise:
 Perform ‘Type Selection’;
 No Editable text fields or List boxes:
 A..Z (Command key optional):
 Dialog Control key;
 Other keys:
 Ignore;

In the logic above, Dialog Control key means we search the dialog item list for a matching Control. In DialogKeyFilter, I decided not to make the assumption that the upper case letter will necessarily be the first character in the control’s title. This allows you to capitalize another letter (such as the first letter of the second word). It also provides for quirks like Return characters at the start of the item title. (This is a bit obscure, but you might want to do this to make the control’s title invisible, so that it can be overlaid with a fancier static text title - eg to show a ‘Bold’ checkbox with a Bold caption).

MOVABLE & MODELESS

The idea of Dialog Control keys is fully applicable to the new System 7 Movable Modal dialogs, and the code given works fine with them. It also works fine with Modeless dialogs, but extension of the idea to Modeless dialogs is arguable: an essential attribute of the Modeless state is that the majority of Menu commands should remain available whilst the dialog is up. If Dialog Control keys are allowed in Modeless dialogs (and assuming that we stick with the Command key as the modifier key), confusion might arise as to whether a shortcut applies to a dialog control or a menu command.

I believe these shortcuts should be allowed in Modeless dialogs. After all, if the Modeless dialog is the frontmost window, then it is presumably the focus of the user’s attention. Nevertheless, if the user hits a Command-key combination which doesn’t match any dialog item, DialogKeyFilter simply returns false, enabling the command to be interpreted in the main event loop as a Menu command. Thus, in a frequently occurring example, Command-Q will still work as Quit even if there is a Modeless dialog as the front window, provided it doesn’t contain an enabled control with a capitalized Q. (In that case, he could still Quit from the keyboard using Esc, Command-Q).

IDEAS DECLINED

Before closing, here are some things that went through my head, but which I didn’t do. It occurred to me that it might be clever to allocate the Control key instead of Command as the modifier for use with Dialog Controls. The neat things would have been:

• dialog items accessed by Dialog Control keys are in fact always Controls;

• the Control key has been looking for a real job ever since it came on the scene;

• confusion with Menu Commands would have been avoided (and there would have been no argument about shortcuts in Modeless as well as Modal dialogs).

However, many Mac keyboards still don’t have a Control key, and many owners who do have a Control key like to reserve it for use with a macro recorder like QuicKeys.

DECIDING INFLUENCES

Two final deciding factors were that it would often have caused awkward shifting of the modifier finger from Command to Control, and it would have been inconsistent with MS Word and Excel for the Macintosh. It would also have been inconsistent with Windows, which uses the ‘Alt’ key for dialog shortcuts. (The PC’s ‘Alt’ key is normally situated in the same keyboard position as the Mac’s Command key). So on balance the idea was rejected.

I also toyed with more positive visual cueing of Dialog Control keys, but I couldn’t come up with anything that was aesthetically pleasing, didn’t chew up too much dialog real estate and wasn’t a nightmare to implement. So that idea also went out of the window dialog. Anyway the capitalization should be cue enough, and the user is given feedback in the normal way (highlighting, checking etc.).

DISCLAIMER

I hope you can see that I’ve given this a fair amount of thought. However, no code is perfect and I’m sure some of you will be able to suggest improvements. If so, please write to me at the address given below (unfortunately it’s a bit expensive working with CompuServe etc. from South Africa). Please also write to me if you can figure out how to install a filter like this in System 7.0 so that it replaces the default filter procedure which is used whenever a developer supplies nil as ModalDialog’s filterProc. Then it would automatically work for all applications which don’t currently specify a filter routine for dialog boxes. Now that would be clever.

Mike O’Hanlon, Eden House, 49 Eden Road,Claremont, 7700, Cape, South Africa.

SOURCE LISTINGS 
function DialogKeyFilter (
         Dialog: DialogPtr;
         var event: EventRecord;
         var itemHit: integer): boolean;
{**************************************}
{  Implements “Dialog Control keys” -  }
{  keyboard shortcuts for buttons,     }
{  checkboxes and radio buttons.       }
{            Author: Mike O’Hanlon.    }
{**************************************}

 const
  kEnter = chr(3);        {Enter key}
  kReturn = chr(13);      {Return key}
  kEscOrClear = chr(27);  {Esc/Clear}

  KeyX = 7;               {-X = Cut}
  KeyC = 8;               {-C = Copy}
  KeyV = 9;               {-V = Paste}

  KeyF2 = $78;            {F2 = Cut}
  KeyF3 = $63;            {F3 = Copy}
  KeyF4 = $76;            {F4 = Paste}

 var
  filtered: boolean;
  defItem: integer;
  keyChar: char;
  keyCode: Byte;

 function ButtonItem (Item: integer)
        : boolean;
    {uses Dialog: DialogPtr}
{**************************************}
{ Checks whether specified item is a   }
{ normal button (not Checkbox/radio).  }
{**************************************}
  var
   IType: integer;
   IHandle: Handle;
   IRect: Rect;
 begin
  GetDItem(Dialog, Item, IType,
                   IHandle, IRect);
  ButtonItem := BAND(IType, 255 -
   itemDisable) = (ctrlItem + btnCtrl);
 end; {ButtonItem}

 function Enabled (Item: integer)
        : boolean;
    {uses Dialog: DialogPtr}
{**************************************}
{ Checks whether the item is enabled.  }
{**************************************}
  var
   IType: integer;
   IHandle: Handle;
   IRect: Rect;
 begin
  GetDItem(Dialog, Item, IType,
                   IHandle, IRect);
  Enabled := BAND(
              IType, itemDisable) = 0;
 end; {Enabled}

 procedure EditCommand (key: Byte);
     {uses Dialog: DialogPtr}
     {sets event: EventRecord}
     {sets itemHit: integer}
     {sets filtered: boolean}
{**************************************}
{ Performs the specified Edit command. }
{**************************************}
 begin
  itemHit := DialogPeek(Dialog)^.
             editField + 1;
  case key of
   KeyX, KeyF2: 
    begin
     DlgCut(Dialog);
     if itemHit > 0 then
      event.message :=
                  convertClipboardFlag;
    end;
   KeyC, KeyF3: 
    begin
     DlgCopy(Dialog);
     if itemHit > 0 then
      event.message :=
                  convertClipboardFlag;
     itemHit := 0;
    end;
   KeyV, KeyF4: 
    begin
     DlgPaste(Dialog);
    end;
  end; {case}
  if itemHit > 0 then
   if Enabled(itemHit) then
    filtered := true;
  if not filtered then
   event.what := nullEvent;
 end; {EditCommand}

 procedure FrameButton (Item: integer);
     {uses Dialog: DialogPtr}
{**************************************}
{ Frames the specified (button) item,  }
{ to designate it as the default.      }
{**************************************}
  var
   IType: integer;
   IHandle: Handle;
   IRect: Rect;
   savePen: PenState;
 begin
  GetDItem(Dialog, Item, IType,
                   IHandle, IRect);
  GetPenState(savePen);
  PenNormal;
  PenSize(3, 3);
  InsetRect(IRect, -4, -4);
  FrameRoundRect(IRect, 16, 16);
  SetPenState(savePen);
 end; {FrameButton}

 function NumItems: integer;
    {uses Dialog: DialogPtr}
{**************************************}
{ Returns no. of items in item list.   }
{**************************************}
  type
   DITLHandle = ^DITLPtr;
   DITLPtr = ^DITL;
   DITL = packed record
     NumItemsLess1: integer;
      {followed by the items, but we...}
      {don’t need them in this function}
    end; {DITL}
 begin
  NumItems := DITLHandle(DialogPeek(
   Dialog)^.items)^^.NumItemsLess1 + 1;
 end; {NumItems}

 procedure SetItemHit (Item: integer);
     {uses Dialog: DialogPtr}
     {sets itemHit: integer}
{**************************************}
{ Sets itemHit to the specified item & }
{ flashes it if it’s an enabled button.}
{**************************************}
  var
   IType: integer;
   IHandle: Handle;
   IRect: Rect;
   Btn: ControlHandle;
   SaveState: Byte;
   finalTicks: longint;
 begin
  itemHit := Item;
  if Enabled(Item) & ButtonItem(Item)
   then begin
    GetDItem(Dialog, Item, IType,
                     IHandle, IRect);
    if IHandle <> nil then
     begin
      Btn := ControlHandle(IHandle);
      SaveState := Btn^^.contrlHilite;
      HiliteControl(Btn, inButton);
      Delay(6, finalTicks);
      HiliteControl(Btn, SaveState);
     end; {IHandle <> nil}
   end; {Enabled button}
  filtered := true;
 end; {SetItemHit}

 function TestItem (Item: integer;
              Ch: char): boolean;
    {uses Dialog: DialogPtr}
{**************************************}
{ Tests the specified dialog item for  }
{ the designated upper case char.      }
{**************************************}
  var
   IType: integer;
   IHandle: Handle;
   IRect: Rect;
   ITitle: str255;
   Posn: integer;
 begin
  TestItem := false;
  GetDItem(Dialog, Item, IType,
                   IHandle, IRect);
  if IType in [ctrlItem + btnCtrl,
               ctrlItem + chkCtrl,
               ctrlItem + radCtrl] then
   begin {it’s a Control item}
    if IHandle <> nil then
     begin
      GetCTitle(
       ControlHandle(IHandle), ITitle);
      if ITitle <> ‘’ then
       begin
        for Posn := 1 to length(ITitle)
        do
         if ITitle[Posn] in [‘A’..’Z’]
          then Leave; {for loop}
        if Posn <= length(ITitle) then
         if ITitle[Posn] = Ch then
          if Enabled(Item) then
           TestItem := true;
       end; {ITitle <> ‘’}
     end; {IHandle <> nil}
   end; {it’s a Control item}
 end; {TestItem}

 procedure SearchForItem (Ch: char);
     {sets itemHit: integer}
{**************************************}
{ Searches item list for Control with  }
{ specified upper case char. in title. }
{**************************************}
  var
   Item: integer;
   Found: boolean;
 begin
  itemHit := 0;
  if Ch in [‘a’..’z’] then
   begin
    Found := false;
    Ch := chr(ord(Ch) - 32);
                {Convert to Upper case}
    for Item := 1 to NumItems do
     if (Item <> defItem) &
        (Item <> Cancel) then
      if TestItem(Item, Ch) then
       begin
        SetItemHit(Item);
        Found := true;
        Leave; {for loop}
       end;
    if not found then
     if TestItem(defItem, Ch) then
      SetItemHit(defItem);
   end; {key in range ‘a’..’z’}
 end; {SearchForItem}

begin {DialogKeyFilter}
{**************************************}
{           The main logic.            }
{**************************************}
 filtered:= false;
 defItem:= DialogPeek(Dialog)^.aDefItem;
 if event.what in [keyDown,autoKey] then
  begin
   keyChar := chr(BAND(event.message,
                  charCodeMask));
   keyCode := BSR((BAND(event.message,
                   keyCodeMask)), 8);
   if keyChar in [kEnter, kReturn] then
    SetItemHit(defItem)
   else if keyChar = kEscOrClear then
    SetItemHit(Cancel)
   else if (BAND(event.Modifiers,
         CmdKey) <> 0) & (keyChar = ‘.’)
   then {Command-period}
    SetItemHit(Cancel)
   else {not Enter/Return/Esc/Cmd-.}
    begin
     if DialogPeek(Dialog)^.
             editField + 1 <> 0 then
      {...an editable text field exists}
      if keyCode in [KeyF2,KeyF3,KeyF4]
      then
       EditCommand(keyCode)
      else if BAND(event.Modifiers,
                    CmdKey) <> 0 then
       if keyCode in [KeyX, KeyC, KeyV]
       then
        EditCommand(keyCode)
       else
        SearchForItem(keyChar)
      else
         {Editable text field exists}
         {and Command Key isn’t down}
         {... so we do nothing here.}
     else {no editable text field}
      SearchForItem(keyChar);
    end; {not Enter/Return/Esc/Cmd-.}
  end {keyDown, autoKey}
 else if (event.what = updateEvt) then
  if WindowPtr(event.message) = thePort
  then
   if ButtonItem(defItem) then
    FrameButton(defItem);
 DialogKeyFilter := Filtered;
end; {DialogKeyFilter}
END OF SOURCE LISTING
 

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.