This repository has been archived by the owner on Feb 10, 2021. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 34
/
Copy pathSettingBase.cs
172 lines (142 loc) · 5.36 KB
/
SettingBase.cs
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
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
using System;
using System.Collections.Generic;
using System.Web.UI.WebControls;
using DNNConnect.CKEditorProvider.Constants;
namespace DNNConnect.CKEditorProvider.Objects
{
/// <summary>
/// The Settings Base
/// </summary>
[Obsolete("This class is phasing out please use EditorProviderSettings Class instead")]
public class SettingBase : object
{
#region Properties
/// <summary>
/// Gets or sets How many Items to Show per Page on the File List.
/// </summary>
/// <value>
/// How many Items to Show per Page on the File List.
/// </value>
public int FileListPageSize { get; set; }
/// <summary>
/// Gets or sets the file list view mode.
/// </summary>
/// <value>
/// The file list view mode.
/// </value>
public FileListView FileListViewMode { get; set; }
/// <summary>
/// Gets or sets a value indicating whether [auto create file thumb nails].
/// </summary>
/// <value>
/// <c>true</c> if [auto create file thumb nails]; otherwise, <c>false</c>.
/// </value>
public bool AutoCreateFileThumbNails { get; set; }
/// <summary>
/// Gets or sets a value indicating whether [use anchor selector].
/// </summary>
/// <value>
/// <c>true</c> if [use anchor selector]; otherwise, <c>false</c>.
/// </value>
public bool UseAnchorSelector { get; set; }
/// <summary>
/// Gets or sets a value indicating whether [show page links tab first].
/// </summary>
/// <value>
/// <c>true</c> if [show page links tab first]; otherwise, <c>false</c>.
/// </value>
public bool ShowPageLinksTabFirst { get; set; }
/// <summary>
/// Gets or sets a value indicating whether Use Subdirs for Users.
/// </summary>
public bool bSubDirs { get; set; }
/// <summary>
/// Gets or sets a value indicating whether Use jQuery Adapter
/// </summary>
public bool bUseJquery { get; set; }
/// <summary>
/// Gets or sets a value indicating whether Inject the Syntax Jquery Js
/// </summary>
public bool injectSyntaxJs { get; set; }
/// <summary>
/// Gets or sets a value indicating whether The Browser Root Dir Id
/// </summary>
public int BrowserRootDirId { get; set; }
/// <summary>
/// Gets or sets a value indicating whether The Upload Dir Folder Id
/// </summary>
public int UploadDirId { get; set; }
/// <summary>
/// Gets or sets a value indicating whether Default Resize Image Height
/// </summary>
public int iResizeHeight { get; set; }
/// <summary>
/// Gets or sets a value indicating whether Default Resize Image Width
/// </summary>
public int iResizeWidth { get; set; }
/// <summary>
/// Gets or sets a value indicating whether Toolbar Roles
/// </summary>
public List<ToolbarRoles> listToolbRoles { get; set; }
/// <summary>
/// Gets or sets a value indicating whether Blank Initialtext
/// </summary>
public string sBlankText { get; set; }
/// <summary>
/// Gets or sets the browser.
/// </summary>
/// <value>
/// The browser.
/// </value>
public BrowserType browser { get; set; }
/// <summary>
/// Gets or sets a value indicating whether Editor File Browser
/// </summary>
public string sBrowser { get; set; }
/// <summary>
/// Gets or sets a value indicating whether Allowed Browser Roles
/// </summary>
public string sBrowserRoles { get; set; }
/// <summary>
/// Gets or sets a value indicating whether Custom Config file
/// </summary>
public string sConfig { get; set; }
/// <summary>
/// Gets or sets a value indicating whether Css File
/// </summary>
public string sCss { get; set; }
/// <summary>
/// Gets or sets a value indicating whether Editor Skin
/// </summary>
public string sSkin { get; set; }
/// <summary>
/// Gets or sets a value indicating whether Styles File
/// </summary>
public string sStyles { get; set; }
/// <summary>
/// Gets or sets a value indicating whether Templates File
/// </summary>
public string sTemplates { get; set; }
/// <summary>
/// Gets or sets a value indicating whether Current Setting Mode
/// </summary>
public SettingsMode settingMode { get; set; }
/// <summary>
/// Gets or sets a value indicating whether Browser Height
/// </summary>
public Unit uHeight { get; set; }
/// <summary>
/// Gets or sets a value indicating whether Browser Width
/// </summary>
public Unit uWidth { get; set; }
/// <summary>
/// Gets or sets a value indicating whether Browser Height
/// </summary>
public string BrowserHeight { get; set; }
/// <summary>
/// Gets or sets a value indicating whether Browser Width
/// </summary>
public string BrowserWidth { get; set; }
#endregion
}
}