TweetFollow Us on Twitter

Multifile Dialogs in CPX

Volume Number: 13 (1997)
Issue Number: 7
Column Tag: Toolbox Essentials

Creating Multi-File Dialogs in CPX

by John Shackelford, Tangent Systems

How to build a custom file dialog with CustomGetFile and how to manage the dialog callback routines

Introduction

The ease that applications are built in CPX often masks the flexibility of writing low-level code for the Macintosh. Prograph CPX ships with a class library called Application Building Classes (ABCs) which, in the world of Macintosh application frameworks, ranks among the richest. However, one particularly useful chunk of code that you will not find in the ABCs is the fancy file dialog you create using CustomGetFile.

You use the CustomGetFile feature to add source files to projects in several popular Macintosh applications like CodeWarrior, Roaster or Symantec Project Manager. The File classes in the ABCs all use the Standard GetFile dialog to retrieve files. This is fine for single file operations, but if your application must provide the ability to manipulate several files at once, CustomGetFile must be used to add controls for collecting the list of files. Surprisingly, when I wrote the code for a CPX version of CustomGetFile, it was difficult to find a complete example in C or Pascal on which to base the design. I did find some chunks or pieces in C and some CPX that I used as a basis for MultiFile.

MultiFile is a CPX section. It provides a class for a multifile dialog of the type shown below. It allows you to navigate, add and subtract several files all in one dialog session. The section also provides a basic file dialog allowing you to specify the user prompt. However, this article focuses on MultiFile Dialog -- it shows you how to use the MultiFile Dialog class and discusses key code snippets.

MultiFile Demo Application

The demo application opens a MultiFile Dialog and allows you to add and subtract files. Its purpose is to demonstrate what a MultiFile Dialog provides (see Figure 1). The demo application is one of those minimal apps. It does not use the ABCs and has no value other than showing you how the MultiFile Dialog looks.

Figure 1. The Demo Application opens a MultiFile Dialog.

The Macintosh Toolbox provides a function called CustomGetFile for creating custom file dialogs. First, I'll show you the top level CPX code for using it. That way, if all you want is to use MultiFile and you don't care about how it works, you'll have all you need to know. I will also show the function prototype and build up the associated functions for it in CPX.

Figure 2. The MultiFile section comes with an example method for using MultiFile.

Using MultiFile is pretty straightforward -- explaining it will be much more difficult. However, as you can see in Figure 2, all you do is create an instance of MultiFile Dialog, setup the type of files you want with the message "/setTypeList" and finally send the message "/multiFileGet" to get the whole process rolling. When the method completes, the list of selected files appears on the output of "/multiFileGet."

How it All Works

I'll first decompose the main method "/multiFileGet," describe the attributes of MultiFile Dialog and then expose in detail the major chunks of code that makes MultiFile Dialog work in support of CustomGetFile -- the Toolbox call we are encapsulating.

MultiFile Dialog Constructor

The first thing to look at is the constructor for MultiFile Dialog (Figure 3). When an instance of MultiFile Dialog is created, several attributes are initialized. The "Files" attribute will end up holding a new instance of File Results. This object will eventually hold the FSSpecs for the selected files, and it provides methods to add and remove FSSpecs from its internal list of FSSpecs. The attribute "Select List" is set to NULL. Eventually, it will hold a pointer to the scroll list item created by a call to LNew. The Persistent called "The Dialog" is set to the current MultiFile Dialog instance. Two other methods are executed -- one creates a Standard File Reply record while the other ("/makeCallbacks") sets up pointers to the callback functions. So by design a "The Dialog" (global) holds the MultiFile Dialog instance. Everything else hangs off of that -- the lower scroll list, StandardReplyRec and the File Results object. The callbacks rely on "The Dialog" to access the scroll list, the File Results object and the StandardReplyRec.

Figure 3. The "Constructor" for MultiFile Dialog sets up 3 Persistants.

The method "/makeCallbacks" (Figure 4) checks each of 4 attributes in MultiFile Dialog and creates a pointer to a callback method if a method name is specified. This provides a nice way for users of the class to specify their own callback methods -- just by specifying their own methods in the initialization list that can be fed to the Constructor. And of course if that does not provide enough flexibility, you can always subclass the whole thing and define "/makeCallbacks" anew.

Figure 4. "/makeCallbacks" checks each of 4 MultiFile Dialog attributes.

The local method "file filter proc" (Figure 5) is typical of the calls in "/makeCallbacks". An improvement on this local method would be to verify that the universal method is actually defined and if it isn't, then fail into a next case and set the "callback" attribute (in this specific case "File Filter Callback") value to NULL.

Figure 5. This local method is typical for what a "/makeCallbacks" method does.

The method "/multiFileGet" (Figure 6) is composed of three methods itself. The first performs the Toolbox call, the second retrieves the selected files and the final method cleans up.

Figure 6. "/multiFileGet" retrieves a list of file specifications.

/callCustomGet

The method "/callCustomGet" (Figure 7) makes the Toolbox call "CustomGetFile". The MultiFile Dialog instance carries the values necessary for the function to operate as the user wants.

Figure 7. "/callCustomGet" makes the low level Toolbox call.

Let's first look at the CustomGetFile arguments and what Prograph uses. The calling arguments for CustomGetFile are shown below (bold) with the MultiFile Dialog Attribute (underlined):

FileFilterYDProcPtr FileFilter Callback
A pointer to an optional file filter function, provided by your application, through which CustomGetFile passes files of the specified types.

short Num Types
The number of file types to be displayed. If you specify a "Num Types" value of -1, the first filtering passes files of all types.

SFTypeList /Type List
A list of file types to be displayed. You can define it using the call "/setTypeList" which automatically sets the value of attribute "Num Types" used above.

StandardFileReply * YourDataPointer
The reply record, which CustomGetFile fills in before returning. We create a pointer to a Reply record in the Constructor for MultiFile Dialog.

short DialogID
The resource ID of a customized dialog template. To use the standard template, set this parameter to 0. The MultiFile Dialog defines this value to be 1001. If you want to customize the look of the dialog, create a new dialog resource and set the DialogID to the new value in a subclass of MultiFile Dialog for the "new" dialog.

Point Where
The upper-left corner of the dialog box in global coordinates. This value is predefined to be {-1, -1} which will place it in the middle of the screen.

DlgHookYDProcPtr DialogHook Callback
A pointer to the dialog hook function, which handles item selections received from the Dialog Manager. This is in many ways the "meat" (I suppose I should instead say "fiber" for those vegetarians among us) of the matter; clicks within the dialog get handled by this method.

ModalFilterYDProcPtr ModalFilter Callback
A pointer to your modal-dialog filter function, which determines how the Dialog Manager filters events when called by CustomGetFile. Specify a value of NIL if you are not supplying your own function. We need a modal-dialog filter function because we must provide scroll control for our scrolling list. This method handles clicks in the user-defined lower scroll list. (Control of the upper list "comes" with CustomGetFile.)

short ActiveList

ActivateYDProcPtr Activate Proc Callback

void * YourDataPointer

These last three parameters are not used, and are set to NULL.

Figure 8. The default attributes are defined to work with a dialog resource 1001.

Figure 9 shows the default MultiFile dialog (ID = 1001) and the index numbers for its items.

Figure 9. Default MultiFile dialog (ID = 1001).

When CustomGetFile is called, three methods (all are Universals) take over until the user clicks "Cancel" or "Done" in the dialog window. They are "filterProc", "modalFilterYD" and "dialogHook". We'll describe each in turn.

Filter Proc Method

The "filterProc" method (Figure 10) does one job. It is called whenever the upper scroll list is about to be filled with files (after passing through the internal "types" filter). It gives us a chance to do further processing. The output of this method is a Boolean which determines whether or not the file should appear in the upper list. A TRUE output removes the item from the upper list while a FALSE value allows it to appear in the upper list. This method checks the list of FSSpecs in the File Results object. If the file is in the File Results object, this filter will remove it from the upper list.

Figure 10. "filterProc" is called whenever the upper scroll list is about to be filled with files.

The field "ioNamePtr" holds a pointer to a Pascal string. The first byte in a Pascal string must be the length of the string. we execute "get-integer" to determine the length of the string, and then we execute "get-text" using that value and start at byte 1 of the buffer. We then check the list of file names held by the File Results object (retrieved with "getFiles"). If a matching file name is found, the primitive "(in)" will return an integer greater than 0 indicating the files position in the list. In that case the method outputs TRUE. Otherwise it will output FALSE.

Modal Filter yd Method

The "modalFilterYD" method (Figure 11) is called as part of the event processing in the window. It is needed to control scrolling of the lower scroll list (the "Select List"). It is written such that it will only handle clicks within the scroll lists vertical control.

Figure 11. "modalFilterYD" controls scrolling of the lower scroll list.

Dialog Hook Method

The "dialogHook" is the biggest of these three methods. It installs the lower scroll list the first time the method is called. It also handles all clicks in the dialog. So for example when the "Add" button is clicked, the dialog hook method defines what happens in the window.

Instead of going through every case of this method (there are 15 cases), I'll just provide an overview of what the method is supposed to do:

First Time Through -- Creates the lower scroll list and installs it in the dialog window.

Add -- Adds the filename of the selected file to lower list. The file is removed from the upper the list through the file filter function. The FSSpec for the file is added to the File Results object.

Add All -- The names of all available files in the upper scroll list are added to the lower list. The FSSpecs are added to the File Results object. All files that get successfully added to the File Results are filtered from the upper list display by the file filter method.

Remove -- Enabled if an item is selected in the lower list. The selected item is removed from the File Results object, removed from the lower list and added to the upper list by the file filter method.

Remove All -- Enabled if there are any files in lower list. All files in the File Results object are removed, all items in the lower list are removed. The file filter method then allows available files to appear in the upper list.

Cancel -- Deletes all FSSpecs from the File Results object, then closes the dialog.

Done -- Closes the dialog.

Here is the code of two interesting cases to drive home how things work: what happens the first time though -- that's when we create and install the lower scroll list -- and how Add works. I leave the other cases as a review exercise for you and your CPX Debugger.

First Time Through

The first time "dialogHook" is executed, we must detect that this is the first time and display the lower list box.

Figure 12. The First Time Through case creates the lower scroll list item.

Figure 13. "initList" creates a new scroll list and places it in the position of window item 18 in the dialog resource.

The Toolbox call "LNew" creates a new scroll list. We define the rectangle for the list by getting the rectangle for window item 18 (see Figure 9). We "send" the new scroll list to the MultiFile Dialog in the message "/setSelectList".

Add file

The Add file case duplicates the FSSpec representing the selected file and sends that FSSpec as an argument in the call to "addFile".

Figure 14. The "Add" case calls "addFile" universal.

Figure 15. "addFile" universal also enables item 19 in the dialog window.

The "addFile" universal method performs several tasks. It first checks if the file can really be added. If so, it continues on by getting the value of the name field in the FSSpec and asking the File Results object for the number of items in its files list to form an index. It send those two values (name and index) as arguments to "addCell" which adds a new cell to the "Select List". It then sends the FSSpec to the File Results object in a message "/addItem" which adds the FSSpec to the File Result object. After all that, the lower scroll list is redrawn in method "updateScrollList" and window item 19 (Remove All) is enabled.

At this point "dialogHook" case 12:15 (Figure 14) outputs "sfHookRebuildList" and the method ends. The new item now appears in the lower scroll list and disappears from the upper list. The multifile dialog window waits for the next event.

Conclusion

This article describes the CPX code in the MultiFile section. MultiFile contains classes for creating special file dialogs that don't come out of the box with CPX. These classes are useful if you need a file dialog that can deal with several files at once or if you want to specify a unique prompt in a standard file dialog.

With the information in this article, CPX developers can now start using CustomGetFile based file dialogs in their applications. Simply add the MultiFile section to your project, create an instance of MultiFile Dialog, and send it the message "/multiFileGet". All of your problems will be solved.

Bibliography and References

Apple Computer's Inside Macintosh: Files, page 3-51.


John Shackelford is the founder of Tangent Systems - a software development company based in San Diego. When he's not playing with his 3 children, he's busy writing CPX code or playing the piano. He can be reached at shackx@aol.com. You can find Tangent Systems on the world wide web at http://www.tangentsys.com.

 

Community Search:
MacTech Search:

Software Updates via MacUpdate

Latest Forum Discussions

See All

Whitethorn Games combines two completely...
If you have ever gone fishing then you know that it is a lesson in patience, sitting around waiting for a bite that may never come. Well, that's because you have been doing it wrong, since as Whitehorn Games now demonstrates in new release Skate... | Read more »
Call of Duty Warzone is a Waiting Simula...
It's always fun when a splashy multiplayer game comes to mobile because they are few and far between, so I was excited to see the notification about Call of Duty: Warzone Mobile (finally) launching last week and wanted to try it out. As someone who... | Read more »
Albion Online introduces some massive ne...
Sandbox Interactive has announced an upcoming update to its flagship MMORPG Albion Online, containing massive updates to its existing guild Vs guild systems. Someone clearly rewatched the Helms Deep battle in Lord of the Rings and spent the next... | Read more »
Chucklefish announces launch date of the...
Chucklefish, the indie London-based team we probably all know from developing Terraria or their stint publishing Stardew Valley, has revealed the mobile release date for roguelike deck-builder Wildfrost. Developed by Gaziter and Deadpan Games, the... | Read more »
Netmarble opens pre-registration for act...
It has been close to three years since Netmarble announced they would be adapting the smash series Solo Leveling into a video game, and at last, they have announced the opening of pre-orders for Solo Leveling: Arise. [Read more] | Read more »
PUBG Mobile celebrates sixth anniversary...
For the past six years, PUBG Mobile has been one of the most popular shooters you can play in the palm of your hand, and Krafton is celebrating this milestone and many years of ups by teaming up with hit music man JVKE to create a special song for... | Read more »
ASTRA: Knights of Veda refuse to pump th...
In perhaps the most recent example of being incredibly eager, ASTRA: Knights of Veda has dropped its second collaboration with South Korean boyband Seventeen, named so as it consists of exactly thirteen members and a video collaboration with Lee... | Read more »
Collect all your cats and caterpillars a...
If you are growing tired of trying to build a town with your phone by using it as a tiny, ineffectual shover then fear no longer, as Independent Arts Software has announced the upcoming release of Construction Simulator 4, from the critically... | Read more »
Backbone complete its lineup of 2nd Gene...
With all the ports of big AAA games that have been coming to mobile, it is becoming more convenient than ever to own a good controller, and to help with this Backbone has announced the completion of their 2nd generation product lineup with their... | Read more »
Zenless Zone Zero opens entries for its...
miHoYo, aka HoYoverse, has become such a big name in mobile gaming that it's hard to believe that arguably their flagship title, Genshin Impact, is only three and a half years old. Now, they continue the road to the next title in their world, with... | Read more »

Price Scanner via MacPrices.net

B&H has Apple’s 13-inch M2 MacBook Airs o...
B&H Photo has 13″ MacBook Airs with M2 CPUs and 256GB of storage in stock and on sale for up to $150 off Apple’s new MSRP, starting at only $849. Free 1-2 day delivery is available to most US... Read more
M2 Mac minis on sale for $100-$200 off MSRP,...
B&H Photo has Apple’s M2-powered Mac minis back in stock and on sale today for $100-$200 off MSRP. Free 1-2 day shipping is available for most US addresses: – Mac mini M2/256GB SSD: $499, save $... Read more
Mac Studios with M2 Max and M2 Ultra CPUs on...
B&H Photo has standard-configuration Mac Studios with Apple’s M2 Max & Ultra CPUs in stock today and on Easter sale for $200 off MSRP. Their prices are the lowest available for these models... Read more
Deal Alert! B&H Photo has Apple’s 14-inch...
B&H Photo has new Gray and Black 14″ M3, M3 Pro, and M3 Max MacBook Pros on sale for $200-$300 off MSRP, starting at only $1399. B&H offers free 1-2 day delivery to most US addresses: – 14″ 8... Read more
Department Of Justice Sets Sights On Apple In...
NEWS – The ball has finally dropped on the big Apple. The ball (metaphorically speaking) — an antitrust lawsuit filed in the U.S. on March 21 by the Department of Justice (DOJ) — came down following... Read more
New 13-inch M3 MacBook Air on sale for $999,...
Amazon has Apple’s new 13″ M3 MacBook Air on sale for $100 off MSRP for the first time, now just $999 shipped. Shipping is free: – 13″ MacBook Air (8GB RAM/256GB SSD/Space Gray): $999 $100 off MSRP... Read more
Amazon has Apple’s 9th-generation WiFi iPads...
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
Discounted 14-inch M3 MacBook Pros with 16GB...
Apple retailer Expercom has 14″ MacBook Pros with M3 CPUs and 16GB of standard memory discounted by up to $120 off Apple’s MSRP: – 14″ M3 MacBook Pro (16GB RAM/256GB SSD): $1691.06 $108 off MSRP – 14... Read more
Clearance 15-inch M2 MacBook Airs on sale for...
B&H Photo has Apple’s 15″ MacBook Airs with M2 CPUs (8GB RAM/256GB SSD) in stock today and on clearance sale for $999 in all four colors. Free 1-2 delivery is available to most US addresses.... Read more
Clearance 13-inch M1 MacBook Airs drop to onl...
B&H has Apple’s base 13″ M1 MacBook Air (Space Gray, Silver, & Gold) in stock and on clearance sale today for $300 off MSRP, only $699. Free 1-2 day shipping is available to most addresses in... Read more

Jobs Board

Medical Assistant - Surgical Oncology- *Apple...
Medical Assistant - Surgical Oncology- Apple Hill Location: WellSpan Medical Group, York, PA Schedule: Full Time Sign-On Bonus Eligible Remote/Hybrid Regular Apply Read more
Omnichannel Associate - *Apple* Blossom Mal...
Omnichannel 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
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
Business Analyst | *Apple* Pay - Banco Popu...
Business Analyst | Apple PayApply now " Apply now + Apply Now + Start applying with LinkedIn Start + Please wait Date:Mar 19, 2024 Location: San Juan-Cupey, PR Read more
All contents are Copyright 1984-2011 by Xplain Corporation. All rights reserved. Theme designed by Icreon.