Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
C
cpython
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
Analytics
Analytics
Repository
Value Stream
Wiki
Wiki
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
Kirill Smelkov
cpython
Commits
d99d2833
Commit
d99d2833
authored
Jul 22, 1996
by
Jack Jansen
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Added SetFolder method which sets Standard File initial folder
parent
1ed9529a
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
29 additions
and
0 deletions
+29
-0
Mac/Modules/macfsmodule.c
Mac/Modules/macfsmodule.c
+29
-0
No files found.
Mac/Modules/macfsmodule.c
View file @
d99d2833
...
@@ -31,6 +31,7 @@ OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
...
@@ -31,6 +31,7 @@ OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
#include <Folders.h>
#include <Folders.h>
#include <StandardFile.h>
#include <StandardFile.h>
#include <Aliases.h>
#include <Aliases.h>
#include <LowMem.h>
#include "nfullpath.h"
#include "nfullpath.h"
...
@@ -689,6 +690,33 @@ mfs_StandardPutFile(self, args)
...
@@ -689,6 +690,33 @@ mfs_StandardPutFile(self, args)
return
mkvalue
(
"(Oi)"
,
newmfssobject
(
&
reply
.
sfFile
),
reply
.
sfGood
);
return
mkvalue
(
"(Oi)"
,
newmfssobject
(
&
reply
.
sfFile
),
reply
.
sfGood
);
}
}
/*
** Set initial directory for file dialogs */
static
object
*
mfs_SetFolder
(
self
,
args
)
object
*
self
;
object
*
args
;
{
FSSpec
spec
;
FSSpec
ospec
;
short
orefnum
;
long
oparid
;
/* Get old values */
orefnum
=
-
LMGetSFSaveDisk
();
oparid
=
LMGetCurDirStore
();
(
void
)
FSMakeFSSpec
(
orefnum
,
oparid
,
"\pplaceholder"
,
&
ospec
);
/* Go to working directory by default */
(
void
)
FSMakeFSSpec
(
0
,
0
,
"\p:placeholder"
,
&
spec
);
if
(
!
newgetargs
(
args
,
"|O&"
,
PyMac_GetFSSpec
,
&
spec
))
return
NULL
;
/* Set standard-file working directory */
LMSetSFSaveDisk
(
-
spec
.
vRefNum
);
LMSetCurDirStore
(
spec
.
parID
);
return
(
object
*
)
newmfssobject
(
&
ospec
);
}
static
object
*
static
object
*
mfs_FSSpec
(
self
,
args
)
mfs_FSSpec
(
self
,
args
)
object
*
self
;
/* Not used */
object
*
self
;
/* Not used */
...
@@ -794,6 +822,7 @@ static struct methodlist mfs_methods[] = {
...
@@ -794,6 +822,7 @@ static struct methodlist mfs_methods[] = {
{
"PromptGetFile"
,
mfs_PromptGetFile
,
1
},
{
"PromptGetFile"
,
mfs_PromptGetFile
,
1
},
{
"StandardPutFile"
,
mfs_StandardPutFile
,
1
},
{
"StandardPutFile"
,
mfs_StandardPutFile
,
1
},
{
"GetDirectory"
,
mfs_GetDirectory
,
1
},
{
"GetDirectory"
,
mfs_GetDirectory
,
1
},
{
"SetFolder"
,
mfs_SetFolder
,
1
},
{
"FSSpec"
,
mfs_FSSpec
,
1
},
{
"FSSpec"
,
mfs_FSSpec
,
1
},
{
"RawFSSpec"
,
mfs_RawFSSpec
,
1
},
{
"RawFSSpec"
,
mfs_RawFSSpec
,
1
},
{
"RawAlias"
,
mfs_RawAlias
,
1
},
{
"RawAlias"
,
mfs_RawAlias
,
1
},
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment