forked from sveinbjornt/Platypus
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Common.h
executable file
·112 lines (90 loc) · 4.85 KB
/
Common.h
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
/*
Platypus - program for creating Mac OS X application wrappers around scripts
Copyright (C) 2003-2012 Sveinbjorn Thordarson <[email protected]>
This program is free software; you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
the Free Software Foundation; either version 2 of the License, or
(at your option) any later version.
This program is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU General Public License for more details.
You should have received a copy of the GNU General Public License
along with this program; if not, write to the Free Software
Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
*/
// General definitions file with various application-wide settings/information
// General program information
#define PROGRAM_STAMP @"Platypus-4.7"
#define PROGRAM_NAME @"Platypus"
#define PROGRAM_VERSION @"4.7"
#define PROGRAM_MIN_SYS_VERSION @"10.5.0"
#define PROGRAM_AUTHOR @"Sveinbjorn Thordarson"
#define PROGRAM_WEBSITE @"http://sveinbjorn.org/platypus"
#define PROGRAM_DONATIONS @"http://sveinbjorn.org/donations"
// Application support folder info
#define APP_SUPPORT_FOLDER [@"~/Library/Application Support/Platypus/" stringByExpandingTildeInPath]
#define TEMP_FOLDER [@"~/Library/Application Support/Platypus/Temp" stringByExpandingTildeInPath]
#define PROFILES_FOLDER [@"~/Library/Application Support/Platypus/Profiles" stringByExpandingTildeInPath]
#define EXAMPLES_FOLDER "./Examples/"
#define PROFILES_SUFFIX @"platypus"
#define TEMP_ICON_PATH [NSString stringWithFormat: @"%@/TmpIcon.icns", APP_SUPPORT_FOLDER]
// default output text settings
#define DEFAULT_OUTPUT_FONT @"Monaco"
#define DEFAULT_OUTPUT_FONTSIZE 10.0
#define DEFAULT_OUTPUT_FG_COLOR @"#000000"
#define DEFAULT_OUTPUT_BG_COLOR @"#ffffff"
#define DEFAULT_OUTPUT_TXT_ENCODING NSUTF8StringEncoding
#define PROGRAM_MAX_LIST_ITEMS 255
// documentation
#define PROGRAM_README_FILE @"Readme.html"
#define PROGRAM_MANPAGE @"platypus.man.html"
#define PROGRAM_DOCUMENTATION @"PlatypusDocumentation.html"
#define PROGRAM_LICENSE_FILE @"License.txt"
// command line tool seetings
#define CMDLINE_PROGNAME @"platypus"
#define CMDLINE_TOOL_PATH @"/usr/local/bin/platypus"
#define CMDLINE_SHARE_PATH @"/usr/local/share/platypus/"
#define CMDLINE_VERSION_PATH @"/usr/local/share/platypus/Version"
#define CMDLINE_MANPAGE_PATH @"/usr/local/share/man/man1/platypus.1"
#define CMDLINE_EXEC_PATH @"/usr/local/share/platypus/ScriptExec"
#define CMDLINE_NIB_PATH @"/usr/local/share/platypus/MainMenu.nib"
#define CMDLINE_ICON_PATH @"/usr/local/share/platypus/PlatypusDefault.icns"
#define IBTOOL_PATH @"/Developer/usr/bin/ibtool"
#define LIPO_PATH @"/usr/bin/lipo"
#define DEFAULT_EDITOR @"Built-In"
#define DEFAULT_INTERPRETER @"/bin/sh"
#define DEFAULT_VERSION @"1.0"
#define DEFAULT_ROLE @"Viewer"
#define DEFAULT_STATUSITEM_DTYPE @"Text"
#define DEFAULT_APP_NAME @"MyPlatypusApp"
#define DEFAULT_DESTINATION_PATH [[NSString stringWithFormat: @"~/Desktop/%@.app", DEFAULT_APP_NAME] stringByExpandingTildeInPath]
#define DEFAULT_OUTPUT_TYPE @"Progress Bar"
#define DEFAULT_BUNDLE_ID [PlatypusAppSpec standardBundleIdForAppName: DEFAULT_APP_NAME usingDefaults: NO]
// output modes
#define PLATYPUS_NONE_OUTPUT 1
#define PLATYPUS_PROGRESSBAR_OUTPUT 2
#define PLATYPUS_TEXTWINDOW_OUTPUT 3
#define PLATYPUS_WEBVIEW_OUTPUT 4
#define PLATYPUS_STATUSMENU_OUTPUT 5
#define PLATYPUS_DROPLET_OUTPUT 6
// execution style
#define PLATYPUS_NORMAL_EXECUTION 0
#define PLATYPUS_PRIVILEGED_EXECUTION 1
// path to temp script file
#define TMP_SCRIPT_TEMPLATE @".plx_tmp.XXXXXX"
#define TMP_STDIN_PATH @"/tmp/.plstdin.XXXXXX"
#define TMP_ICON_PATH @"/tmp/PlatypusIcon.icns"
// this is surely enough
#define PLATYPUS_MAX_QUEUE_JOBS 255
// array of output types, used for validation
#define PLATYPUS_OUTPUT_TYPES [NSArray arrayWithObjects: @"None", \
@"Progress Bar", \
@"Text Window", \
@"Web View", \
@"Droplet", \
@"Status Menu", nil ]
#pragma mark -
// code abbreviations, Obj-C is a tediously verbose language
#define FILEMGR [NSFileManager defaultManager]
#define DEFAULTS [NSUserDefaults standardUserDefaults]