-
Notifications
You must be signed in to change notification settings - Fork 1
/
Pattern_Strings.cpp
70 lines (62 loc) · 2.77 KB
/
Pattern_Strings.cpp
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
/*******************************************************************/
/* */
/* ADOBE CONFIDENTIAL */
/* _ _ _ _ _ _ _ _ _ _ _ _ _ */
/* */
/* Copyright 2007 Adobe Systems Incorporated */
/* All Rights Reserved. */
/* */
/* NOTICE: All information contained herein is, and remains the */
/* property of Adobe Systems Incorporated and its suppliers, if */
/* any. The intellectual and technical concepts contained */
/* herein are proprietary to Adobe Systems Incorporated and its */
/* suppliers and may be covered by U.S. and Foreign Patents, */
/* patents in process, and are protected by trade secret or */
/* copyright law. Dissemination of this information or */
/* reproduction of this material is strictly forbidden unless */
/* prior written permission is obtained from Adobe Systems */
/* Incorporated. */
/* */
/*******************************************************************/
#include "Pattern.h"
struct TableString {
A_u_long index;
A_char str[256];
};
TableString g_strs[StrID_NUMTYPES] = {
StrID_NONE, "",
StrID_Name, "Pattern",
StrID_Description, "Creates Islamic Star Pattern Animations from Polygons in Contact",
StrID_BgColor_Param_Name, "Background Color",
StrID_ChooseMode_Param_Name, "Mode",
StrID_ModeChoices_Param_Name, "Centered |"
"(-|"
"Multiple ",
StrID_ChooseTiling_Param_Name, "Tiling",
StrID_TilingChoices_Param_Name, "6.6.6 |"
"(-|"
"4.4.4 |"
"(-|"
"4.8.8 |"
"(-|"
"3.12.12 |"
"(-|"
"4.6.12 |",
StrID_SideLength_Param_Name, "Side Length",
StrID_NumberofSides_Param_Name, "Number of Sides",
StrID_Angle_Param_Name, "Angle (Degrees)",
StrID_ChooseDelta_Param_Name, "Delta Mode",
StrID_DeltaChoices_Param_Name, "Towards |"
"(-|"
"Away ",
StrID_Delta_Param_Name, "Delta",
StrID_HideTiling_Param_Name, "Hide Tiling",
StrID_TColorChkBox_Param_Name, "Show Tiling Background",
StrID_TBgColor_Param_Name, "Tiling Background Color",
StrID_LineColor_Param_Name, "Pattern Color",
StrID_LineWidth_Param_Name, "Pattern Weight",
};
char *GetStringPtr(int strNum)
{
return g_strs[strNum].str;
}