Subversion Repositories filter_foundry

Rev

Rev 18 | Rev 171 | Go to most recent revision | Show entire file | Regard whitespace | Details | Blame | Last modification | View Log | RSS feed

Rev 18 Rev 64
Line 1... Line 1...
1
/*
1
/*
2
    This file is part of "Filter Foundry", a filter plugin for Adobe Photoshop
2
    This file is part of "Filter Foundry", a filter plugin for Adobe Photoshop
3
    Copyright (C) 2003-5 Toby Thain, toby@telegraphics.com.au
3
    Copyright (C) 2003-7 Toby Thain, toby@telegraphics.com.au
4
 
4
 
5
    This program is free software; you can redistribute it and/or modify
5
    This program is free software; you can redistribute it and/or modify
6
    it under the terms of the GNU General Public License as published by  
6
    it under the terms of the GNU General Public License as published by  
7
    the Free Software Foundation; either version 2 of the License, or
7
    the Free Software Foundation; either version 2 of the License, or
8
    (at your option) any later version.
8
    (at your option) any later version.
Line 15... Line 15...
15
    You should have received a copy of the GNU General Public License  
15
    You should have received a copy of the GNU General Public License  
16
    along with this program; if not, write to the Free Software
16
    along with this program; if not, write to the Free Software
17
    Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
17
    Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
18
*/
18
*/
19
 
19
 
20
#include "AEUserTermTypes.r"
20
//#include "AEUserTermTypes.r"
21
 
21
 
22
#define MSWindows 0
22
#define MSWindows 0
23
#include "piactions.h"
23
#include "PIActions.h"
-
 
24
#include "PITerminology.h"
24
 
25
 
25
#include "ui.h"
26
#include "ui.h"
26
#include "version.h"
27
#include "version.h"
27
 
28
 
28
//-------------------------------------------------------------------------------
29
//-------------------------------------------------------------------------------
29
//	Dictionary (scripting) resource
30
//	Dictionary (scripting) resource
30
//-------------------------------------------------------------------------------
31
//-------------------------------------------------------------------------------
31
 
32
 
32
resource 'aete' (AETE_ID, "", purgeable)
33
resource 'aete' (AETE_ID, "FilterFoundry scripting dictionary", purgeable)
33
{
34
{
34
	1, 0, english, roman,				/* aete version and language specifiers */
35
	1, 0, english, roman,				/* aete version and language specifiers */
35
	{
36
	{
36
		vendorName,						/* vendor suite name */
37
		vendorName,						/* vendor suite name */
37
		"",								/* optional description */
38
		"custom filter creator, compatible with Adobe Filter Factory", /* optional description */
38
		plugInSuiteID,					/* suite ID */
39
		plugInSuiteID,					/* suite ID */
39
		1,								/* suite code, must be 1 */
-
 
40
		1,								/* suite level, must be 1 */
40
		1,								/* suite level, must be 1 */
-
 
41
		1,								/* suite version, must be 1 */
41
		{								/* structure for filters */
42
		{	/* structure for filters */
42
			plugInName,					/* unique filter name */
43
			plugInName,					/* unique filter name */
43
			"",							/* optional description */
44
			"",							/* optional description */
44
			plugInClassID,				/* class ID, must be unique or Suite ID */
45
			plugInClassID,				/* event class ID, must be unique or Suite ID */
45
			plugInEventID,				/* event ID, must be unique to class ID */
46
			plugInEventID,				/* event ID, must be unique to class ID */
46
			
47
			
47
			NO_REPLY,					/* never a reply */
48
			NO_REPLY,					/* never a reply */
48
			IMAGE_DIRECT_PARAMETER,		/* direct parameter, used by Photoshop */
49
			IMAGE_DIRECT_PARAMETER,		/* direct parameter, used by Photoshop */
49
			{	/* parameters here, if any */
50
			{	/* parameters here, if any */