Kitxuuu commited on
Commit
6c78e82
·
verified ·
1 Parent(s): 2e72389

Add files using upload-large-folder tool

Browse files
Files changed (20) hide show
  1. local-test-freerdp-full-01/afc-freerdp/client/SDL/SDL3/sdl_freerdp.hpp +97 -0
  2. local-test-freerdp-full-01/afc-freerdp/client/SDL/SDL3/sdl_monitor.cpp +393 -0
  3. local-test-freerdp-full-01/afc-freerdp/client/SDL/SDL3/sdl_types.hpp +46 -0
  4. local-test-freerdp-full-01/afc-freerdp/client/iOS/Resources/BookmarkListView.xib +365 -0
  5. local-test-freerdp-full-01/afc-freerdp/client/iOS/Resources/BookmarkTableViewCell.xib +428 -0
  6. local-test-freerdp-full-01/afc-freerdp/client/iOS/Resources/EditButtonTableViewCell.xib +408 -0
  7. local-test-freerdp-full-01/afc-freerdp/client/iOS/Resources/EditFlagTableViewCell.xib +208 -0
  8. local-test-freerdp-full-01/afc-freerdp/client/iOS/Resources/EditSecretTextTableViewCell.xib +288 -0
  9. local-test-freerdp-full-01/afc-freerdp/client/iOS/Resources/EditSubEditTableViewCell.xib +179 -0
  10. local-test-freerdp-full-01/afc-freerdp/client/iOS/Resources/MainWindow.xib +36 -0
  11. local-test-freerdp-full-01/afc-freerdp/client/iOS/Resources/VerifyCertificateView.xib +386 -0
  12. local-test-freerdp-full-01/afc-freerdp/client/iOS/Resources/about_page/about.html +203 -0
  13. local-test-freerdp-full-01/afc-freerdp/client/iOS/Resources/about_page/about_phone.html +201 -0
  14. local-test-freerdp-full-01/afc-freerdp/client/iOS/Resources/en.lproj/Localizable.strings +274 -0
  15. local-test-freerdp-full-01/afc-freerdp/client/iOS/Resources/help_page/gestures.html +159 -0
  16. local-test-freerdp-full-01/afc-freerdp/client/iOS/Resources/help_page/gestures_phone.html +159 -0
  17. local-test-freerdp-full-01/afc-freerdp/client/iOS/Resources/help_page/toolbar.html +178 -0
  18. local-test-freerdp-full-01/afc-freerdp/client/iOS/Resources/help_page/toolbar_phone.html +176 -0
  19. local-test-freerdp-full-01/afc-freerdp/client/iOS/Resources/help_page/touch_pointer.html +164 -0
  20. local-test-freerdp-full-01/afc-freerdp/client/iOS/Resources/help_page/touch_pointer_phone.html +161 -0
local-test-freerdp-full-01/afc-freerdp/client/SDL/SDL3/sdl_freerdp.hpp ADDED
@@ -0,0 +1,97 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ /**
2
+ * FreeRDP: A Remote Desktop Protocol Implementation
3
+ * SDL Client
4
+ *
5
+ * Copyright 2022 Armin Novak <[email protected]>
6
+ *
7
+ * Licensed under the Apache License, Version 2.0 (the "License");
8
+ * you may not use this file except in compliance with the License.
9
+ * You may obtain a copy of the License at
10
+ *
11
+ * http://www.apache.org/licenses/LICENSE-2.0
12
+ *
13
+ * Unless required by applicable law or agreed to in writing, software
14
+ * distributed under the License is distributed on an "AS IS" BASIS,
15
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
16
+ * See the License for the specific language governing permissions and
17
+ * limitations under the License.
18
+ */
19
+
20
+ #pragma once
21
+
22
+ #include <memory>
23
+ #include <thread>
24
+ #include <map>
25
+ #include <atomic>
26
+
27
+ #include <freerdp/freerdp.h>
28
+ #include <freerdp/client/rdpei.h>
29
+ #include <freerdp/client/rail.h>
30
+ #include <freerdp/client/cliprdr.h>
31
+ #include <freerdp/client/rdpgfx.h>
32
+
33
+ #include <SDL3/SDL.h>
34
+ #include <SDL3/SDL_video.h>
35
+
36
+ #include "sdl_types.hpp"
37
+ #include "sdl_disp.hpp"
38
+ #include "sdl_kbd.hpp"
39
+ #include "sdl_clip.hpp"
40
+ #include "sdl_utils.hpp"
41
+ #include "sdl_window.hpp"
42
+ #include "dialogs/sdl_connection_dialog.hpp"
43
+
44
+ using SDLSurfacePtr = std::unique_ptr<SDL_Surface, decltype(&SDL_DestroySurface)>;
45
+
46
+ class SdlContext
47
+ {
48
+ public:
49
+ explicit SdlContext(rdpContext* context);
50
+ SdlContext(const SdlContext& other) = delete;
51
+ SdlContext(SdlContext&& other) = delete;
52
+
53
+ SdlContext& operator=(const SdlContext& other) = delete;
54
+ SdlContext& operator=(SdlContext&& other) = delete;
55
+
56
+ private:
57
+ rdpContext* _context;
58
+
59
+ public:
60
+ wLog* log;
61
+
62
+ /* SDL */
63
+ bool fullscreen = false;
64
+ bool resizeable = false;
65
+ bool grab_mouse = false;
66
+ bool grab_kbd = false;
67
+ bool grab_kbd_enabled = true;
68
+
69
+ std::map<Uint32, SdlWindow> windows;
70
+
71
+ CriticalSection critical;
72
+ std::thread thread;
73
+ WinPREvent initialize;
74
+ WinPREvent initialized;
75
+ WinPREvent update_complete;
76
+ WinPREvent windows_created;
77
+ int exit_code = -1;
78
+
79
+ sdlDispContext disp;
80
+ sdlInput input;
81
+ sdlClip clip;
82
+
83
+ SDLSurfacePtr primary;
84
+
85
+ SDL_PixelFormat sdl_pixel_format = SDL_PIXELFORMAT_UNKNOWN;
86
+
87
+ std::unique_ptr<SDLConnectionDialog> connection_dialog;
88
+
89
+ std::atomic<bool> rdp_thread_running;
90
+
91
+ BOOL update_resizeable(BOOL enable);
92
+ BOOL update_fullscreen(BOOL enter);
93
+ BOOL update_minimize();
94
+
95
+ [[nodiscard]] rdpContext* context() const;
96
+ [[nodiscard]] rdpClientContext* common() const;
97
+ };
local-test-freerdp-full-01/afc-freerdp/client/SDL/SDL3/sdl_monitor.cpp ADDED
@@ -0,0 +1,393 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ /**
2
+ * FreeRDP: A Remote Desktop Protocol Implementation
3
+ * X11 Monitor Handling
4
+ *
5
+ * Copyright 2011 Marc-Andre Moreau <[email protected]>
6
+ * Copyright 2017 David Fort <[email protected]>
7
+ * Copyright 2018 Kai Harms <[email protected]>
8
+ *
9
+ * Licensed under the Apache License, Version 2.0 (the "License");
10
+ * you may not use this file except in compliance with the License.
11
+ * You may obtain a copy of the License at
12
+ *
13
+ * http://www.apache.org/licenses/LICENSE-2.0
14
+ *
15
+ * Unless required by applicable law or agreed to in writing, software
16
+ * distributed under the License is distributed on an "AS IS" BASIS,
17
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
18
+ * See the License for the specific language governing permissions and
19
+ * limitations under the License.
20
+ */
21
+
22
+ #include <freerdp/config.h>
23
+
24
+ #include <cstdio>
25
+ #include <cstdlib>
26
+ #include <cstring>
27
+ #include <algorithm>
28
+
29
+ #include <SDL3/SDL.h>
30
+
31
+ #include <winpr/assert.h>
32
+ #include <winpr/crt.h>
33
+
34
+ #include <freerdp/log.h>
35
+
36
+ #define TAG CLIENT_TAG("sdl")
37
+
38
+ #include "sdl_monitor.hpp"
39
+ #include "sdl_freerdp.hpp"
40
+
41
+ typedef struct
42
+ {
43
+ RECTANGLE_16 area;
44
+ RECTANGLE_16 workarea;
45
+ BOOL primary;
46
+ } MONITOR_INFO;
47
+
48
+ typedef struct
49
+ {
50
+ int nmonitors;
51
+ RECTANGLE_16 area;
52
+ RECTANGLE_16 workarea;
53
+ MONITOR_INFO* monitors;
54
+ } VIRTUAL_SCREEN;
55
+
56
+ /* See MSDN Section on Multiple Display Monitors: http://msdn.microsoft.com/en-us/library/dd145071
57
+ */
58
+
59
+ int sdl_list_monitors(SdlContext* sdl)
60
+ {
61
+ SDL_Init(SDL_INIT_VIDEO);
62
+
63
+ int nmonitors = 0;
64
+ auto ids = SDL_GetDisplays(&nmonitors);
65
+
66
+ printf("listing %d monitors:\n", nmonitors);
67
+ for (int i = 0; i < nmonitors; i++)
68
+ {
69
+ SDL_Rect rect = {};
70
+ auto id = ids[i];
71
+ const auto brc = SDL_GetDisplayBounds(id, &rect);
72
+ const char* name = SDL_GetDisplayName(id);
73
+
74
+ if (!brc)
75
+ continue;
76
+ printf(" %s [%u] [%s] %dx%d\t+%d+%d\n", (i == 0) ? "*" : " ", id, name, rect.w, rect.h,
77
+ rect.x, rect.y);
78
+ }
79
+ SDL_free(ids);
80
+ SDL_Quit();
81
+ return 0;
82
+ }
83
+
84
+ static BOOL sdl_apply_max_size(SdlContext* sdl, UINT32* pMaxWidth, UINT32* pMaxHeight)
85
+ {
86
+ WINPR_ASSERT(sdl);
87
+ WINPR_ASSERT(pMaxWidth);
88
+ WINPR_ASSERT(pMaxHeight);
89
+
90
+ auto settings = sdl->context()->settings;
91
+ WINPR_ASSERT(settings);
92
+
93
+ *pMaxWidth = 0;
94
+ *pMaxHeight = 0;
95
+
96
+ for (size_t x = 0; x < freerdp_settings_get_uint32(settings, FreeRDP_MonitorCount); x++)
97
+ {
98
+ auto monitor = static_cast<const rdpMonitor*>(
99
+ freerdp_settings_get_pointer_array(settings, FreeRDP_MonitorDefArray, x));
100
+
101
+ if (freerdp_settings_get_bool(settings, FreeRDP_Fullscreen))
102
+ {
103
+ *pMaxWidth = WINPR_ASSERTING_INT_CAST(uint32_t, monitor->width);
104
+ *pMaxHeight = WINPR_ASSERTING_INT_CAST(uint32_t, monitor->height);
105
+ }
106
+ else if (freerdp_settings_get_bool(settings, FreeRDP_Workarea))
107
+ {
108
+ SDL_Rect rect = {};
109
+ SDL_GetDisplayUsableBounds(monitor->orig_screen, &rect);
110
+ *pMaxWidth = WINPR_ASSERTING_INT_CAST(uint32_t, rect.w);
111
+ *pMaxHeight = WINPR_ASSERTING_INT_CAST(uint32_t, rect.h);
112
+ }
113
+ else if (freerdp_settings_get_uint32(settings, FreeRDP_PercentScreen) > 0)
114
+ {
115
+ SDL_Rect rect = {};
116
+ SDL_GetDisplayUsableBounds(monitor->orig_screen, &rect);
117
+
118
+ *pMaxWidth = WINPR_ASSERTING_INT_CAST(uint32_t, rect.w);
119
+ *pMaxHeight = WINPR_ASSERTING_INT_CAST(uint32_t, rect.h);
120
+
121
+ if (freerdp_settings_get_bool(settings, FreeRDP_PercentScreenUseWidth))
122
+ *pMaxWidth = (WINPR_ASSERTING_INT_CAST(uint32_t, rect.w) *
123
+ freerdp_settings_get_uint32(settings, FreeRDP_PercentScreen)) /
124
+ 100;
125
+
126
+ if (freerdp_settings_get_bool(settings, FreeRDP_PercentScreenUseHeight))
127
+ *pMaxHeight = (WINPR_ASSERTING_INT_CAST(uint32_t, rect.h) *
128
+ freerdp_settings_get_uint32(settings, FreeRDP_PercentScreen)) /
129
+ 100;
130
+ }
131
+ else if (freerdp_settings_get_uint32(settings, FreeRDP_DesktopWidth) &&
132
+ freerdp_settings_get_uint32(settings, FreeRDP_DesktopHeight))
133
+ {
134
+ *pMaxWidth = freerdp_settings_get_uint32(settings, FreeRDP_DesktopWidth);
135
+ *pMaxHeight = freerdp_settings_get_uint32(settings, FreeRDP_DesktopHeight);
136
+ }
137
+ }
138
+ return TRUE;
139
+ }
140
+
141
+ static UINT32 sdl_orientaion_to_rdp(SDL_DisplayOrientation orientation)
142
+ {
143
+ switch (orientation)
144
+ {
145
+ case SDL_ORIENTATION_LANDSCAPE:
146
+ return ORIENTATION_LANDSCAPE;
147
+ case SDL_ORIENTATION_LANDSCAPE_FLIPPED:
148
+ return ORIENTATION_LANDSCAPE_FLIPPED;
149
+ case SDL_ORIENTATION_PORTRAIT_FLIPPED:
150
+ return ORIENTATION_PORTRAIT_FLIPPED;
151
+ case SDL_ORIENTATION_PORTRAIT:
152
+ default:
153
+ return ORIENTATION_PORTRAIT;
154
+ }
155
+ }
156
+
157
+ static Uint32 scale(Uint32 val, float scale)
158
+ {
159
+ const auto dval = static_cast<float>(val);
160
+ const auto sval = dval / scale;
161
+ return static_cast<Uint32>(sval);
162
+ }
163
+
164
+ static BOOL sdl_apply_display_properties(SdlContext* sdl)
165
+ {
166
+ WINPR_ASSERT(sdl);
167
+
168
+ rdpSettings* settings = sdl->context()->settings;
169
+ WINPR_ASSERT(settings);
170
+ if (!freerdp_settings_get_bool(settings, FreeRDP_Fullscreen) &&
171
+ !freerdp_settings_get_bool(settings, FreeRDP_UseMultimon))
172
+ return TRUE;
173
+
174
+ const UINT32 numIds = freerdp_settings_get_uint32(settings, FreeRDP_NumMonitorIds);
175
+ std::vector<rdpMonitor> monitors;
176
+
177
+ for (UINT32 x = 0; x < numIds; x++)
178
+ {
179
+ auto id = static_cast<const int*>(
180
+ freerdp_settings_get_pointer_array(settings, FreeRDP_MonitorIds, x));
181
+ WINPR_ASSERT(id);
182
+
183
+ float dpi = SDL_GetDisplayContentScale(WINPR_ASSERTING_INT_CAST(uint32_t, *id));
184
+ float hdpi = dpi;
185
+ float vdpi = dpi;
186
+ SDL_Rect rect = {};
187
+
188
+ if (!SDL_GetDisplayBounds(WINPR_ASSERTING_INT_CAST(uint32_t, *id), &rect))
189
+ return FALSE;
190
+
191
+ WINPR_ASSERT(rect.w > 0);
192
+ WINPR_ASSERT(rect.h > 0);
193
+
194
+ bool highDpi = dpi > 100;
195
+
196
+ if (highDpi)
197
+ {
198
+ // HighDPI is problematic with SDL: We can only get native resolution by creating a
199
+ // window. Work around this by checking the supported resolutions (and keep maximum)
200
+ // Also scale the DPI
201
+ const SDL_Rect scaleRect = rect;
202
+ int count = 0;
203
+ auto modes = SDL_GetFullscreenDisplayModes(x, &count);
204
+ for (int i = 0; i < count; i++)
205
+ {
206
+ auto mode = modes[i];
207
+ if (!mode)
208
+ break;
209
+
210
+ if (mode->w > rect.w)
211
+ {
212
+ rect.w = mode->w;
213
+ rect.h = mode->h;
214
+ }
215
+ else if (mode->w == rect.w)
216
+ {
217
+ if (mode->h > rect.h)
218
+ {
219
+ rect.w = mode->w;
220
+ rect.h = mode->h;
221
+ }
222
+ }
223
+ }
224
+ SDL_free(static_cast<void*>(modes));
225
+
226
+ const float dw = 1.0f * static_cast<float>(rect.w) / static_cast<float>(scaleRect.w);
227
+ const float dh = 1.0f * static_cast<float>(rect.h) / static_cast<float>(scaleRect.h);
228
+ hdpi /= dw;
229
+ vdpi /= dh;
230
+ }
231
+
232
+ const SDL_DisplayOrientation orientation =
233
+ SDL_GetCurrentDisplayOrientation(WINPR_ASSERTING_INT_CAST(uint32_t, *id));
234
+ const UINT32 rdp_orientation = sdl_orientaion_to_rdp(orientation);
235
+
236
+ rdpMonitor monitor = {};
237
+
238
+ /* windows uses 96 dpi as 'default' and the scale factors are in percent. */
239
+ const auto factor = dpi / 96.0f * 100.0f;
240
+ monitor.orig_screen = x;
241
+ monitor.x = rect.x;
242
+ monitor.y = rect.y;
243
+ monitor.width = rect.w;
244
+ monitor.height = rect.h;
245
+ monitor.is_primary = x == 0;
246
+ monitor.attributes.desktopScaleFactor = static_cast<UINT32>(factor);
247
+ monitor.attributes.deviceScaleFactor = 100;
248
+ monitor.attributes.orientation = rdp_orientation;
249
+ monitor.attributes.physicalWidth = scale(WINPR_ASSERTING_INT_CAST(uint32_t, rect.w), hdpi);
250
+ monitor.attributes.physicalHeight = scale(WINPR_ASSERTING_INT_CAST(uint32_t, rect.h), vdpi);
251
+ monitors.emplace_back(monitor);
252
+ }
253
+ return freerdp_settings_set_monitor_def_array_sorted(settings, monitors.data(),
254
+ monitors.size());
255
+ }
256
+
257
+ static BOOL sdl_detect_single_window(SdlContext* sdl, UINT32* pMaxWidth, UINT32* pMaxHeight)
258
+ {
259
+ WINPR_ASSERT(sdl);
260
+ WINPR_ASSERT(pMaxWidth);
261
+ WINPR_ASSERT(pMaxHeight);
262
+
263
+ rdpSettings* settings = sdl->context()->settings;
264
+ WINPR_ASSERT(settings);
265
+
266
+ if ((!freerdp_settings_get_bool(settings, FreeRDP_UseMultimon) &&
267
+ !freerdp_settings_get_bool(settings, FreeRDP_SpanMonitors)) ||
268
+ (freerdp_settings_get_bool(settings, FreeRDP_Workarea) &&
269
+ !freerdp_settings_get_bool(settings, FreeRDP_RemoteApplicationMode)))
270
+ {
271
+ /* If no monitors were specified on the command-line then set the current monitor as active
272
+ */
273
+ if (freerdp_settings_get_uint32(settings, FreeRDP_NumMonitorIds) == 0)
274
+ {
275
+ const size_t id =
276
+ (!sdl->windows.empty())
277
+ ? WINPR_ASSERTING_INT_CAST(size_t, sdl->windows.begin()->second.displayIndex())
278
+ : 0;
279
+ if (!freerdp_settings_set_pointer_len(settings, FreeRDP_MonitorIds, &id, 1))
280
+ return FALSE;
281
+ }
282
+ else
283
+ {
284
+
285
+ /* Always sets number of monitors from command-line to just 1.
286
+ * If the monitor is invalid then we will default back to current monitor
287
+ * later as a fallback. So, there is no need to validate command-line entry here.
288
+ */
289
+ if (!freerdp_settings_set_uint32(settings, FreeRDP_NumMonitorIds, 1))
290
+ return FALSE;
291
+ }
292
+
293
+ // TODO: Fill monitor struct
294
+ if (!sdl_apply_display_properties(sdl))
295
+ return FALSE;
296
+ return sdl_apply_max_size(sdl, pMaxWidth, pMaxHeight);
297
+ }
298
+ return TRUE;
299
+ }
300
+
301
+ BOOL sdl_detect_monitors(SdlContext* sdl, UINT32* pMaxWidth, UINT32* pMaxHeight)
302
+ {
303
+ WINPR_ASSERT(sdl);
304
+ WINPR_ASSERT(pMaxWidth);
305
+ WINPR_ASSERT(pMaxHeight);
306
+
307
+ rdpSettings* settings = sdl->context()->settings;
308
+ WINPR_ASSERT(settings);
309
+
310
+ std::vector<SDL_DisplayID> ids;
311
+ {
312
+ int numDisplays = 0;
313
+ auto sids = SDL_GetDisplays(&numDisplays);
314
+ if (sids && (numDisplays > 0))
315
+ ids = std::vector<SDL_DisplayID>(sids, sids + numDisplays);
316
+ SDL_free(sids);
317
+ if (numDisplays < 0)
318
+ return FALSE;
319
+ }
320
+
321
+ auto nr = freerdp_settings_get_uint32(settings, FreeRDP_NumMonitorIds);
322
+ if (nr == 0)
323
+ {
324
+ if (!freerdp_settings_set_pointer_len(settings, FreeRDP_MonitorIds, nullptr, ids.size()))
325
+ return FALSE;
326
+
327
+ for (size_t x = 0; x < ids.size(); x++)
328
+ {
329
+ auto id = ids[x];
330
+ if (!freerdp_settings_set_pointer_array(settings, FreeRDP_MonitorIds, x, &id))
331
+ return FALSE;
332
+ }
333
+ }
334
+ else
335
+ {
336
+ /* There were more IDs supplied than there are monitors */
337
+ if (nr > ids.size())
338
+ {
339
+ WLog_ERR(TAG,
340
+ "Found %" PRIu32 " monitor IDs, but only have %" PRIuz " monitors connected",
341
+ nr, ids.size());
342
+ return FALSE;
343
+ }
344
+
345
+ std::vector<UINT32> used;
346
+ for (size_t x = 0; x < nr; x++)
347
+ {
348
+ auto cur = static_cast<const UINT32*>(
349
+ freerdp_settings_get_pointer_array(settings, FreeRDP_MonitorIds, x));
350
+ WINPR_ASSERT(cur);
351
+
352
+ auto id = *cur;
353
+
354
+ /* the ID is no valid monitor index */
355
+ if (std::find(ids.begin(), ids.end(), id) == ids.end())
356
+ {
357
+ WLog_ERR(TAG, "Supplied monitor ID[%" PRIuz "]=%" PRIu32 " is invalid", x, id);
358
+ return FALSE;
359
+ }
360
+
361
+ /* The ID is already taken */
362
+ if (std::find(used.begin(), used.end(), id) != used.end())
363
+ {
364
+ WLog_ERR(TAG, "Duplicate monitor ID[%" PRIuz "]=%" PRIu32 " detected", x, id);
365
+ return FALSE;
366
+ }
367
+ used.push_back(*cur);
368
+ }
369
+ }
370
+
371
+ if (!sdl_apply_display_properties(sdl))
372
+ return FALSE;
373
+
374
+ return sdl_detect_single_window(sdl, pMaxWidth, pMaxHeight);
375
+ }
376
+
377
+ INT64 sdl_monitor_id_for_index(SdlContext* sdl, UINT32 index)
378
+ {
379
+ WINPR_ASSERT(sdl);
380
+ auto settings = sdl->context()->settings;
381
+
382
+ auto nr = freerdp_settings_get_uint32(settings, FreeRDP_NumMonitorIds);
383
+ if (nr == 0)
384
+ return index;
385
+
386
+ if (nr <= index)
387
+ return -1;
388
+
389
+ auto cur = static_cast<const UINT32*>(
390
+ freerdp_settings_get_pointer_array(settings, FreeRDP_MonitorIds, index));
391
+ WINPR_ASSERT(cur);
392
+ return *cur;
393
+ }
local-test-freerdp-full-01/afc-freerdp/client/SDL/SDL3/sdl_types.hpp ADDED
@@ -0,0 +1,46 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ /**
2
+ * FreeRDP: A Remote Desktop Protocol Implementation
3
+ * SDL Client
4
+ *
5
+ * Copyright 2022 Armin Novak <[email protected]>
6
+ *
7
+ * Licensed under the Apache License, Version 2.0 (the "License");
8
+ * you may not use this file except in compliance with the License.
9
+ * You may obtain a copy of the License at
10
+ *
11
+ * http://www.apache.org/licenses/LICENSE-2.0
12
+ *
13
+ * Unless required by applicable law or agreed to in writing, software
14
+ * distributed under the License is distributed on an "AS IS" BASIS,
15
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
16
+ * See the License for the specific language governing permissions and
17
+ * limitations under the License.
18
+ */
19
+
20
+ #pragma once
21
+
22
+ #include <freerdp/freerdp.h>
23
+
24
+ class SdlContext;
25
+
26
+ typedef struct
27
+ {
28
+ rdpClientContext common;
29
+ SdlContext* sdl;
30
+ } sdl_rdp_context;
31
+
32
+ static inline SdlContext* get_context(void* ctx)
33
+ {
34
+ if (!ctx)
35
+ return nullptr;
36
+ auto sdl = static_cast<sdl_rdp_context*>(ctx);
37
+ return sdl->sdl;
38
+ }
39
+
40
+ static inline SdlContext* get_context(rdpContext* ctx)
41
+ {
42
+ if (!ctx)
43
+ return nullptr;
44
+ auto sdl = reinterpret_cast<sdl_rdp_context*>(ctx);
45
+ return sdl->sdl;
46
+ }
local-test-freerdp-full-01/afc-freerdp/client/iOS/Resources/BookmarkListView.xib ADDED
@@ -0,0 +1,365 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <?xml version="1.0" encoding="UTF-8"?>
2
+ <archive type="com.apple.InterfaceBuilder3.CocoaTouch.XIB" version="8.00">
3
+ <data>
4
+ <int key="IBDocument.SystemTarget">1296</int>
5
+ <string key="IBDocument.SystemVersion">11D50b</string>
6
+ <string key="IBDocument.InterfaceBuilderVersion">2182</string>
7
+ <string key="IBDocument.AppKitVersion">1138.32</string>
8
+ <string key="IBDocument.HIToolboxVersion">568.00</string>
9
+ <object class="NSMutableDictionary" key="IBDocument.PluginVersions">
10
+ <string key="NS.key.0">com.apple.InterfaceBuilder.IBCocoaTouchPlugin</string>
11
+ <string key="NS.object.0">1179</string>
12
+ </object>
13
+ <array key="IBDocument.IntegratedClassDependencies">
14
+ <string>IBUITableView</string>
15
+ <string>IBUIView</string>
16
+ <string>IBUISearchBar</string>
17
+ <string>IBProxyObject</string>
18
+ </array>
19
+ <array key="IBDocument.PluginDependencies">
20
+ <string>com.apple.InterfaceBuilder.IBCocoaTouchPlugin</string>
21
+ </array>
22
+ <object class="NSMutableDictionary" key="IBDocument.Metadata">
23
+ <string key="NS.key.0">PluginDependencyRecalculationVersion</string>
24
+ <integer value="1" key="NS.object.0"/>
25
+ </object>
26
+ <array class="NSMutableArray" key="IBDocument.RootObjects" id="1000">
27
+ <object class="IBProxyObject" id="372490531">
28
+ <string key="IBProxiedObjectIdentifier">IBFilesOwner</string>
29
+ <string key="targetRuntimeIdentifier">IBCocoaTouchFramework</string>
30
+ </object>
31
+ <object class="IBProxyObject" id="975951072">
32
+ <string key="IBProxiedObjectIdentifier">IBFirstResponder</string>
33
+ <string key="targetRuntimeIdentifier">IBCocoaTouchFramework</string>
34
+ </object>
35
+ <object class="IBUIView" id="191373211">
36
+ <reference key="NSNextResponder"/>
37
+ <int key="NSvFlags">274</int>
38
+ <array class="NSMutableArray" key="NSSubviews">
39
+ <object class="IBUITableView" id="589060229">
40
+ <reference key="NSNextResponder" ref="191373211"/>
41
+ <int key="NSvFlags">274</int>
42
+ <string key="NSFrame">{{0, 44}, {320, 416}}</string>
43
+ <reference key="NSSuperview" ref="191373211"/>
44
+ <reference key="NSWindow"/>
45
+ <reference key="NSNextKeyView" ref="72664573"/>
46
+ <string key="NSReuseIdentifierKey">_NS:9</string>
47
+ <object class="NSColor" key="IBUIBackgroundColor">
48
+ <int key="NSColorSpace">10</int>
49
+ <object class="NSImage" key="NSImage">
50
+ <int key="NSImageFlags">549453824</int>
51
+ <string key="NSSize">{512, 1}</string>
52
+ <array class="NSMutableArray" key="NSReps">
53
+ <array>
54
+ <integer value="0"/>
55
+ <object class="NSBitmapImageRep">
56
+ <object class="NSData" key="NSTIFFRepresentation">
57
+ <bytes key="NS.bytes">TU0AKgAACAjFzNT/xczU/8XM1P/FzNT/xczS/8vS2P/L0tj/xczU/8XM1P/FzNT/xczU/8XM0v/L0tj/
58
+ y9LY/8XM1P/FzNT/xczU/8XM1P/FzNL/y9LY/8vS2P/FzNT/xczU/8XM1P/FzNT/xczS/8vS2P/L0tj/
59
+ xczU/8XM1P/FzNT/xczU/8XM0v/L0tj/y9LY/8XM1P/FzNT/xczU/8XM1P/FzNL/y9LY/8vS2P/FzNT/
60
+ xczU/8XM1P/FzNT/xczS/8vS2P/L0tj/xczU/8XM1P/FzNT/xczU/8XM0v/L0tj/y9LY/8XM1P/FzNT/
61
+ xczU/8XM1P/FzNL/y9LY/8vS2P/FzNT/xczU/8XM1P/FzNT/xczS/8vS2P/L0tj/xczU/8XM1P/FzNT/
62
+ xczU/8XM0v/L0tj/y9LY/8XM1P/FzNT/xczU/8XM1P/FzNL/y9LY/8vS2P/FzNT/xczU/8XM1P/FzNT/
63
+ xczS/8vS2P/L0tj/xczU/8XM1P/FzNT/xczU/8XM0v/L0tj/y9LY/8XM1P/FzNT/xczU/8XM1P/FzNL/
64
+ y9LY/8vS2P/FzNT/xczU/8XM1P/FzNT/xczS/8vS2P/L0tj/xczU/8XM1P/FzNT/xczU/8XM0v/L0tj/
65
+ y9LY/8XM1P/FzNT/xczU/8XM1P/FzNL/y9LY/8vS2P/FzNT/xczU/8XM1P/FzNT/xczS/8vS2P/L0tj/
66
+ xczU/8XM1P/FzNT/xczU/8XM0v/L0tj/y9LY/8XM1P/FzNT/xczU/8XM1P/FzNL/y9LY/8vS2P/FzNT/
67
+ xczU/8XM1P/FzNT/xczS/8vS2P/L0tj/xczU/8XM1P/FzNT/xczU/8XM0v/L0tj/y9LY/8XM1P/FzNT/
68
+ xczU/8XM1P/FzNL/y9LY/8vS2P/FzNT/xczU/8XM1P/FzNT/xczS/8vS2P/L0tj/xczU/8XM1P/FzNT/
69
+ xczU/8XM0v/L0tj/y9LY/8XM1P/FzNT/xczU/8XM1P/FzNL/y9LY/8vS2P/FzNT/xczU/8XM1P/FzNT/
70
+ xczS/8vS2P/L0tj/xczU/8XM1P/FzNT/xczU/8XM0v/L0tj/y9LY/8XM1P/FzNT/xczU/8XM1P/FzNL/
71
+ y9LY/8vS2P/FzNT/xczU/8XM1P/FzNT/xczS/8vS2P/L0tj/xczU/8XM1P/FzNT/xczU/8XM0v/L0tj/
72
+ y9LY/8XM1P/FzNT/xczU/8XM1P/FzNL/y9LY/8vS2P/FzNT/xczU/8XM1P/FzNT/xczS/8vS2P/L0tj/
73
+ xczU/8XM1P/FzNT/xczU/8XM0v/L0tj/y9LY/8XM1P/FzNT/xczU/8XM1P/FzNL/y9LY/8vS2P/FzNT/
74
+ xczU/8XM1P/FzNT/xczS/8vS2P/L0tj/xczU/8XM1P/FzNT/xczU/8XM0v/L0tj/y9LY/8XM1P/FzNT/
75
+ xczU/8XM1P/FzNL/y9LY/8vS2P/FzNT/xczU/8XM1P/FzNT/xczS/8vS2P/L0tj/xczU/8XM1P/FzNT/
76
+ xczU/8XM0v/L0tj/y9LY/8XM1P/FzNT/xczU/8XM1P/FzNL/y9LY/8vS2P/FzNT/xczU/8XM1P/FzNT/
77
+ xczS/8vS2P/L0tj/xczU/8XM1P/FzNT/xczU/8XM0v/L0tj/y9LY/8XM1P/FzNT/xczU/8XM1P/FzNL/
78
+ y9LY/8vS2P/FzNT/xczU/8XM1P/FzNT/xczS/8vS2P/L0tj/xczU/8XM1P/FzNT/xczU/8XM0v/L0tj/
79
+ y9LY/8XM1P/FzNT/xczU/8XM1P/FzNL/y9LY/8vS2P/FzNT/xczU/8XM1P/FzNT/xczS/8vS2P/L0tj/
80
+ xczU/8XM1P/FzNT/xczU/8XM0v/L0tj/y9LY/8XM1P/FzNT/xczU/8XM1P/FzNL/y9LY/8vS2P/FzNT/
81
+ xczU/8XM1P/FzNT/xczS/8vS2P/L0tj/xczU/8XM1P/FzNT/xczU/8XM0v/L0tj/y9LY/8XM1P/FzNT/
82
+ xczU/8XM1P/FzNL/y9LY/8vS2P/FzNT/xczU/8XM1P/FzNT/xczS/8vS2P/L0tj/xczU/8XM1P/FzNT/
83
+ xczU/8XM0v/L0tj/y9LY/8XM1P/FzNT/xczU/8XM1P/FzNL/y9LY/8vS2P/FzNT/xczU/8XM1P/FzNT/
84
+ xczS/8vS2P/L0tj/xczU/8XM1P/FzNT/xczU/8XM0v/L0tj/y9LY/8XM1P/FzNT/xczU/8XM1P/FzNL/
85
+ y9LY/8vS2P/FzNT/xczU/8XM1P/FzNT/xczS/8vS2P/L0tj/xczU/8XM1P/FzNT/xczU/8XM0v/L0tj/
86
+ y9LY/8XM1P/FzNT/xczU/8XM1P/FzNL/y9LY/8vS2P/FzNT/xczU/8XM1P/FzNT/xczS/8vS2P/L0tj/
87
+ xczU/8XM1P/FzNT/xczU/8XM0v/L0tj/y9LY/8XM1P/FzNT/xczU/8XM1P/FzNL/y9LY/8vS2P/FzNT/
88
+ xczU/8XM1P/FzNT/xczS/8vS2P/L0tj/xczU/8XM1P/FzNT/xczU/8XM0v/L0tj/y9LY/8XM1P/FzNT/
89
+ xczU/8XM1P/FzNL/y9LY/8vS2P/FzNT/xczU/8XM1P/FzNT/xczS/8vS2P/L0tj/xczU/8XM1P/FzNT/
90
+ xczU/8XM0v/L0tj/y9LY/8XM1P/FzNT/xczU/8XM1P/FzNL/y9LY/8vS2P/FzNT/xczU/8XM1P/FzNT/
91
+ xczS/8vS2P/L0tj/xczU/wANAQAAAwAAAAECAAAAAQEAAwAAAAEAAQAAAQIAAwAAAAQAAAiqAQMAAwAA
92
+ AAEAAQAAAQYAAwAAAAEAAgAAAREABAAAAAEAAAAIARIAAwAAAAEAAQAAARUAAwAAAAEABAAAARYAAwAA
93
+ AAEAAQAAARcABAAAAAEAAAgAARwAAwAAAAEAAQAAAVIAAwAAAAEAAQAAAVMAAwAAAAQAAAiyAAAAAAAI
94
+ AAgACAAIAAEAAQABAAE</bytes>
95
+ </object>
96
+ </object>
97
+ </array>
98
+ </array>
99
+ <object class="NSColor" key="NSColor">
100
+ <int key="NSColorSpace">3</int>
101
+ <bytes key="NSWhite">MCAwAA</bytes>
102
+ </object>
103
+ </object>
104
+ <string key="IBUIColorCocoaTouchKeyPath">groupTableViewBackgroundColor</string>
105
+ </object>
106
+ <bool key="IBUIClipsSubviews">YES</bool>
107
+ <string key="targetRuntimeIdentifier">IBCocoaTouchFramework</string>
108
+ <bool key="IBUIAlwaysBounceVertical">YES</bool>
109
+ <int key="IBUIStyle">1</int>
110
+ <int key="IBUISeparatorStyle">2</int>
111
+ <int key="IBUISectionIndexMinimumDisplayRowCount">0</int>
112
+ <bool key="IBUIShowsSelectionImmediatelyOnTouchBegin">YES</bool>
113
+ <float key="IBUIRowHeight">44</float>
114
+ <float key="IBUISectionHeaderHeight">10</float>
115
+ <float key="IBUISectionFooterHeight">10</float>
116
+ </object>
117
+ <object class="IBUISearchBar" id="72664573">
118
+ <reference key="NSNextResponder" ref="191373211"/>
119
+ <int key="NSvFlags">290</int>
120
+ <string key="NSFrameSize">{320, 44}</string>
121
+ <reference key="NSSuperview" ref="191373211"/>
122
+ <reference key="NSWindow"/>
123
+ <reference key="NSNextKeyView"/>
124
+ <string key="NSReuseIdentifierKey">_NS:9</string>
125
+ <int key="IBUIContentMode">3</int>
126
+ <string key="targetRuntimeIdentifier">IBCocoaTouchFramework</string>
127
+ <object class="IBUITextInputTraits" key="IBTextInputTraits">
128
+ <int key="IBUIAutocorrectionType">1</int>
129
+ <string key="targetRuntimeIdentifier">IBCocoaTouchFramework</string>
130
+ </object>
131
+ </object>
132
+ </array>
133
+ <string key="NSFrame">{{0, 20}, {320, 460}}</string>
134
+ <reference key="NSSuperview"/>
135
+ <reference key="NSWindow"/>
136
+ <reference key="NSNextKeyView" ref="589060229"/>
137
+ <object class="NSColor" key="IBUIBackgroundColor">
138
+ <int key="NSColorSpace">3</int>
139
+ <bytes key="NSWhite">MQA</bytes>
140
+ <object class="NSColorSpace" key="NSCustomColorSpace">
141
+ <int key="NSID">2</int>
142
+ </object>
143
+ </object>
144
+ <object class="IBUISimulatedStatusBarMetrics" key="IBUISimulatedStatusBarMetrics"/>
145
+ <string key="targetRuntimeIdentifier">IBCocoaTouchFramework</string>
146
+ </object>
147
+ </array>
148
+ <object class="IBObjectContainer" key="IBDocument.Objects">
149
+ <array class="NSMutableArray" key="connectionRecords">
150
+ <object class="IBConnectionRecord">
151
+ <object class="IBCocoaTouchOutletConnection" key="connection">
152
+ <string key="label">tableView</string>
153
+ <reference key="source" ref="372490531"/>
154
+ <reference key="destination" ref="589060229"/>
155
+ </object>
156
+ <int key="connectionID">6</int>
157
+ </object>
158
+ <object class="IBConnectionRecord">
159
+ <object class="IBCocoaTouchOutletConnection" key="connection">
160
+ <string key="label">view</string>
161
+ <reference key="source" ref="372490531"/>
162
+ <reference key="destination" ref="191373211"/>
163
+ </object>
164
+ <int key="connectionID">7</int>
165
+ </object>
166
+ <object class="IBConnectionRecord">
167
+ <object class="IBCocoaTouchOutletConnection" key="connection">
168
+ <string key="label">searchBar</string>
169
+ <reference key="source" ref="372490531"/>
170
+ <reference key="destination" ref="72664573"/>
171
+ </object>
172
+ <int key="connectionID">5</int>
173
+ </object>
174
+ <object class="IBConnectionRecord">
175
+ <object class="IBCocoaTouchOutletConnection" key="connection">
176
+ <string key="label">delegate</string>
177
+ <reference key="source" ref="589060229"/>
178
+ <reference key="destination" ref="372490531"/>
179
+ </object>
180
+ <int key="connectionID">8</int>
181
+ </object>
182
+ <object class="IBConnectionRecord">
183
+ <object class="IBCocoaTouchOutletConnection" key="connection">
184
+ <string key="label">dataSource</string>
185
+ <reference key="source" ref="589060229"/>
186
+ <reference key="destination" ref="372490531"/>
187
+ </object>
188
+ <int key="connectionID">9</int>
189
+ </object>
190
+ <object class="IBConnectionRecord">
191
+ <object class="IBCocoaTouchOutletConnection" key="connection">
192
+ <string key="label">delegate</string>
193
+ <reference key="source" ref="72664573"/>
194
+ <reference key="destination" ref="372490531"/>
195
+ </object>
196
+ <int key="connectionID">10</int>
197
+ </object>
198
+ </array>
199
+ <object class="IBMutableOrderedSet" key="objectRecords">
200
+ <array key="orderedObjects">
201
+ <object class="IBObjectRecord">
202
+ <int key="objectID">0</int>
203
+ <array key="object" id="0"/>
204
+ <reference key="children" ref="1000"/>
205
+ <nil key="parent"/>
206
+ </object>
207
+ <object class="IBObjectRecord">
208
+ <int key="objectID">1</int>
209
+ <reference key="object" ref="191373211"/>
210
+ <array class="NSMutableArray" key="children">
211
+ <reference ref="589060229"/>
212
+ <reference ref="72664573"/>
213
+ </array>
214
+ <reference key="parent" ref="0"/>
215
+ </object>
216
+ <object class="IBObjectRecord">
217
+ <int key="objectID">-1</int>
218
+ <reference key="object" ref="372490531"/>
219
+ <reference key="parent" ref="0"/>
220
+ <string key="objectName">File's Owner</string>
221
+ </object>
222
+ <object class="IBObjectRecord">
223
+ <int key="objectID">-2</int>
224
+ <reference key="object" ref="975951072"/>
225
+ <reference key="parent" ref="0"/>
226
+ </object>
227
+ <object class="IBObjectRecord">
228
+ <int key="objectID">3</int>
229
+ <reference key="object" ref="589060229"/>
230
+ <array class="NSMutableArray" key="children"/>
231
+ <reference key="parent" ref="191373211"/>
232
+ </object>
233
+ <object class="IBObjectRecord">
234
+ <int key="objectID">4</int>
235
+ <reference key="object" ref="72664573"/>
236
+ <reference key="parent" ref="191373211"/>
237
+ </object>
238
+ </array>
239
+ </object>
240
+ <dictionary class="NSMutableDictionary" key="flattenedProperties">
241
+ <string key="-1.CustomClassName">BookmarkListController</string>
242
+ <string key="-1.IBPluginDependency">com.apple.InterfaceBuilder.IBCocoaTouchPlugin</string>
243
+ <string key="-2.CustomClassName">UIResponder</string>
244
+ <string key="-2.IBPluginDependency">com.apple.InterfaceBuilder.IBCocoaTouchPlugin</string>
245
+ <string key="1.IBPluginDependency">com.apple.InterfaceBuilder.IBCocoaTouchPlugin</string>
246
+ <string key="3.IBPluginDependency">com.apple.InterfaceBuilder.IBCocoaTouchPlugin</string>
247
+ <string key="4.IBPluginDependency">com.apple.InterfaceBuilder.IBCocoaTouchPlugin</string>
248
+ </dictionary>
249
+ <dictionary class="NSMutableDictionary" key="unlocalizedProperties"/>
250
+ <nil key="activeLocalization"/>
251
+ <dictionary class="NSMutableDictionary" key="localizations"/>
252
+ <nil key="sourceID"/>
253
+ <int key="maxID">10</int>
254
+ </object>
255
+ <object class="IBClassDescriber" key="IBDocument.Classes">
256
+ <array class="NSMutableArray" key="referencedPartialClassDescriptions">
257
+ <object class="IBPartialClassDescription">
258
+ <string key="className">BookmarkListController</string>
259
+ <string key="superclassName">UIViewController</string>
260
+ <dictionary class="NSMutableDictionary" key="outlets">
261
+ <string key="bmTableCell">BookmarkTableCell</string>
262
+ <string key="searchBar">UISearchBar</string>
263
+ <string key="sessTableCell">SessionsTableCell</string>
264
+ <string key="tableView">UITableView</string>
265
+ </dictionary>
266
+ <dictionary class="NSMutableDictionary" key="toOneOutletInfosByName">
267
+ <object class="IBToOneOutletInfo" key="bmTableCell">
268
+ <string key="name">bmTableCell</string>
269
+ <string key="candidateClassName">BookmarkTableCell</string>
270
+ </object>
271
+ <object class="IBToOneOutletInfo" key="searchBar">
272
+ <string key="name">searchBar</string>
273
+ <string key="candidateClassName">UISearchBar</string>
274
+ </object>
275
+ <object class="IBToOneOutletInfo" key="sessTableCell">
276
+ <string key="name">sessTableCell</string>
277
+ <string key="candidateClassName">SessionsTableCell</string>
278
+ </object>
279
+ <object class="IBToOneOutletInfo" key="tableView">
280
+ <string key="name">tableView</string>
281
+ <string key="candidateClassName">UITableView</string>
282
+ </object>
283
+ </dictionary>
284
+ <object class="IBClassDescriptionSource" key="sourceIdentifier">
285
+ <string key="majorKey">IBProjectSource</string>
286
+ <string key="minorKey">./Classes/BookmarkListController.h</string>
287
+ </object>
288
+ </object>
289
+ <object class="IBPartialClassDescription">
290
+ <string key="className">BookmarkTableCell</string>
291
+ <string key="superclassName">UITableViewCell</string>
292
+ <dictionary class="NSMutableDictionary" key="outlets">
293
+ <string key="_connection_state_icon">UIImageView</string>
294
+ <string key="_sub_title">UILabel</string>
295
+ <string key="_title">UILabel</string>
296
+ </dictionary>
297
+ <dictionary class="NSMutableDictionary" key="toOneOutletInfosByName">
298
+ <object class="IBToOneOutletInfo" key="_connection_state_icon">
299
+ <string key="name">_connection_state_icon</string>
300
+ <string key="candidateClassName">UIImageView</string>
301
+ </object>
302
+ <object class="IBToOneOutletInfo" key="_sub_title">
303
+ <string key="name">_sub_title</string>
304
+ <string key="candidateClassName">UILabel</string>
305
+ </object>
306
+ <object class="IBToOneOutletInfo" key="_title">
307
+ <string key="name">_title</string>
308
+ <string key="candidateClassName">UILabel</string>
309
+ </object>
310
+ </dictionary>
311
+ <object class="IBClassDescriptionSource" key="sourceIdentifier">
312
+ <string key="majorKey">IBProjectSource</string>
313
+ <string key="minorKey">./Classes/BookmarkTableCell.h</string>
314
+ </object>
315
+ </object>
316
+ <object class="IBPartialClassDescription">
317
+ <string key="className">SessionsTableCell</string>
318
+ <string key="superclassName">UITableViewCell</string>
319
+ <dictionary class="NSMutableDictionary" key="outlets">
320
+ <string key="_disconnect_button">UIButton</string>
321
+ <string key="_screenshot">UIImageView</string>
322
+ <string key="_server">UILabel</string>
323
+ <string key="_title">UILabel</string>
324
+ <string key="_username">UILabel</string>
325
+ </dictionary>
326
+ <dictionary class="NSMutableDictionary" key="toOneOutletInfosByName">
327
+ <object class="IBToOneOutletInfo" key="_disconnect_button">
328
+ <string key="name">_disconnect_button</string>
329
+ <string key="candidateClassName">UIButton</string>
330
+ </object>
331
+ <object class="IBToOneOutletInfo" key="_screenshot">
332
+ <string key="name">_screenshot</string>
333
+ <string key="candidateClassName">UIImageView</string>
334
+ </object>
335
+ <object class="IBToOneOutletInfo" key="_server">
336
+ <string key="name">_server</string>
337
+ <string key="candidateClassName">UILabel</string>
338
+ </object>
339
+ <object class="IBToOneOutletInfo" key="_title">
340
+ <string key="name">_title</string>
341
+ <string key="candidateClassName">UILabel</string>
342
+ </object>
343
+ <object class="IBToOneOutletInfo" key="_username">
344
+ <string key="name">_username</string>
345
+ <string key="candidateClassName">UILabel</string>
346
+ </object>
347
+ </dictionary>
348
+ <object class="IBClassDescriptionSource" key="sourceIdentifier">
349
+ <string key="majorKey">IBProjectSource</string>
350
+ <string key="minorKey">./Classes/SessionsTableCell.h</string>
351
+ </object>
352
+ </object>
353
+ </array>
354
+ </object>
355
+ <int key="IBDocument.localizationMode">0</int>
356
+ <string key="IBDocument.TargetRuntimeIdentifier">IBCocoaTouchFramework</string>
357
+ <object class="NSMutableDictionary" key="IBDocument.PluginDeclaredDependencyDefaults">
358
+ <string key="NS.key.0">com.apple.InterfaceBuilder.CocoaTouchPlugin.iPhoneOS</string>
359
+ <real value="1296" key="NS.object.0"/>
360
+ </object>
361
+ <bool key="IBDocument.PluginDeclaredDependenciesTrackSystemTargetVersion">YES</bool>
362
+ <int key="IBDocument.defaultPropertyAccessControl">3</int>
363
+ <string key="IBCocoaTouchPluginVersion">1179</string>
364
+ </data>
365
+ </archive>
local-test-freerdp-full-01/afc-freerdp/client/iOS/Resources/BookmarkTableViewCell.xib ADDED
@@ -0,0 +1,428 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <?xml version="1.0" encoding="UTF-8"?>
2
+ <archive type="com.apple.InterfaceBuilder3.CocoaTouch.iPad.XIB" version="7.10">
3
+ <data>
4
+ <int key="IBDocument.SystemTarget">1296</int>
5
+ <string key="IBDocument.SystemVersion">11D50b</string>
6
+ <string key="IBDocument.InterfaceBuilderVersion">2182</string>
7
+ <string key="IBDocument.AppKitVersion">1138.32</string>
8
+ <string key="IBDocument.HIToolboxVersion">568.00</string>
9
+ <object class="NSMutableDictionary" key="IBDocument.PluginVersions">
10
+ <string key="NS.key.0">com.apple.InterfaceBuilder.IBCocoaTouchPlugin</string>
11
+ <string key="NS.object.0">1179</string>
12
+ </object>
13
+ <object class="NSArray" key="IBDocument.IntegratedClassDependencies">
14
+ <bool key="EncodedWithXMLCoder">YES</bool>
15
+ <string>IBProxyObject</string>
16
+ <string>IBUILabel</string>
17
+ <string>IBUITableViewCell</string>
18
+ </object>
19
+ <object class="NSArray" key="IBDocument.PluginDependencies">
20
+ <bool key="EncodedWithXMLCoder">YES</bool>
21
+ <string>com.apple.InterfaceBuilder.IBCocoaTouchPlugin</string>
22
+ </object>
23
+ <object class="NSMutableDictionary" key="IBDocument.Metadata">
24
+ <string key="NS.key.0">PluginDependencyRecalculationVersion</string>
25
+ <integer value="1" key="NS.object.0"/>
26
+ </object>
27
+ <object class="NSMutableArray" key="IBDocument.RootObjects" id="1000">
28
+ <bool key="EncodedWithXMLCoder">YES</bool>
29
+ <object class="IBProxyObject" id="372490531">
30
+ <string key="IBProxiedObjectIdentifier">IBFilesOwner</string>
31
+ <string key="targetRuntimeIdentifier">IBIPadFramework</string>
32
+ </object>
33
+ <object class="IBProxyObject" id="975951072">
34
+ <string key="IBProxiedObjectIdentifier">IBFirstResponder</string>
35
+ <string key="targetRuntimeIdentifier">IBIPadFramework</string>
36
+ </object>
37
+ <object class="IBUITableViewCell" id="581303870">
38
+ <reference key="NSNextResponder"/>
39
+ <int key="NSvFlags">292</int>
40
+ <object class="NSMutableArray" key="NSSubviews">
41
+ <bool key="EncodedWithXMLCoder">YES</bool>
42
+ <object class="IBUIView" id="806623018">
43
+ <reference key="NSNextResponder" ref="581303870"/>
44
+ <int key="NSvFlags">256</int>
45
+ <object class="NSMutableArray" key="NSSubviews">
46
+ <bool key="EncodedWithXMLCoder">YES</bool>
47
+ <object class="IBUILabel" id="915789886">
48
+ <reference key="NSNextResponder" ref="806623018"/>
49
+ <int key="NSvFlags">290</int>
50
+ <string key="NSFrame">{{20, 2}, {267, 21}}</string>
51
+ <reference key="NSSuperview" ref="806623018"/>
52
+ <reference key="NSWindow"/>
53
+ <reference key="NSNextKeyView" ref="74446343"/>
54
+ <string key="NSReuseIdentifierKey">_NS:9</string>
55
+ <bool key="IBUIOpaque">NO</bool>
56
+ <bool key="IBUIClipsSubviews">YES</bool>
57
+ <int key="IBUIContentMode">7</int>
58
+ <bool key="IBUIUserInteractionEnabled">NO</bool>
59
+ <string key="targetRuntimeIdentifier">IBIPadFramework</string>
60
+ <string key="IBUIText">Label</string>
61
+ <object class="NSColor" key="IBUITextColor" id="782525937">
62
+ <int key="NSColorSpace">1</int>
63
+ <bytes key="NSRGB">MCAwIDAAA</bytes>
64
+ </object>
65
+ <object class="NSColor" key="IBUIHighlightedColor" id="549211185">
66
+ <int key="NSColorSpace">3</int>
67
+ <bytes key="NSWhite">MQA</bytes>
68
+ </object>
69
+ <int key="IBUIBaselineAdjustment">0</int>
70
+ <float key="IBUIMinimumFontSize">10</float>
71
+ <object class="IBUIFontDescription" key="IBUIFontDescription">
72
+ <int key="type">2</int>
73
+ <double key="pointSize">18</double>
74
+ </object>
75
+ <object class="NSFont" key="IBUIFont">
76
+ <string key="NSName">Helvetica-Bold</string>
77
+ <double key="NSSize">18</double>
78
+ <int key="NSfFlags">16</int>
79
+ </object>
80
+ </object>
81
+ <object class="IBUILabel" id="74446343">
82
+ <reference key="NSNextResponder" ref="806623018"/>
83
+ <int key="NSvFlags">290</int>
84
+ <string key="NSFrame">{{20, 20}, {267, 21}}</string>
85
+ <reference key="NSSuperview" ref="806623018"/>
86
+ <reference key="NSWindow"/>
87
+ <reference key="NSNextKeyView"/>
88
+ <string key="NSReuseIdentifierKey">_NS:9</string>
89
+ <bool key="IBUIOpaque">NO</bool>
90
+ <bool key="IBUIClipsSubviews">YES</bool>
91
+ <int key="IBUIContentMode">7</int>
92
+ <bool key="IBUIUserInteractionEnabled">NO</bool>
93
+ <string key="targetRuntimeIdentifier">IBIPadFramework</string>
94
+ <string key="IBUIText">Label</string>
95
+ <reference key="IBUITextColor" ref="782525937"/>
96
+ <reference key="IBUIHighlightedColor" ref="549211185"/>
97
+ <int key="IBUIBaselineAdjustment">0</int>
98
+ <float key="IBUIMinimumFontSize">10</float>
99
+ <object class="IBUIFontDescription" key="IBUIFontDescription">
100
+ <int key="type">1</int>
101
+ <double key="pointSize">14</double>
102
+ </object>
103
+ <object class="NSFont" key="IBUIFont">
104
+ <string key="NSName">Helvetica</string>
105
+ <double key="NSSize">14</double>
106
+ <int key="NSfFlags">16</int>
107
+ </object>
108
+ </object>
109
+ </object>
110
+ <string key="NSFrameSize">{287, 43}</string>
111
+ <reference key="NSSuperview" ref="581303870"/>
112
+ <reference key="NSWindow"/>
113
+ <reference key="NSNextKeyView" ref="915789886"/>
114
+ <string key="NSReuseIdentifierKey">_NS:11</string>
115
+ <object class="NSColor" key="IBUIBackgroundColor">
116
+ <int key="NSColorSpace">3</int>
117
+ <bytes key="NSWhite">MCAwAA</bytes>
118
+ </object>
119
+ <bool key="IBUIOpaque">NO</bool>
120
+ <bool key="IBUIClipsSubviews">YES</bool>
121
+ <int key="IBUIContentMode">4</int>
122
+ <bool key="IBUIMultipleTouchEnabled">YES</bool>
123
+ <string key="targetRuntimeIdentifier">IBCocoaTouchFramework</string>
124
+ </object>
125
+ </object>
126
+ <string key="NSFrameSize">{320, 44}</string>
127
+ <reference key="NSSuperview"/>
128
+ <reference key="NSWindow"/>
129
+ <reference key="NSNextKeyView" ref="806623018"/>
130
+ <string key="NSReuseIdentifierKey">_NS:9</string>
131
+ <string key="targetRuntimeIdentifier">IBIPadFramework</string>
132
+ <int key="IBUIAccessoryType">2</int>
133
+ <reference key="IBUIContentView" ref="806623018"/>
134
+ </object>
135
+ </object>
136
+ <object class="IBObjectContainer" key="IBDocument.Objects">
137
+ <object class="NSMutableArray" key="connectionRecords">
138
+ <bool key="EncodedWithXMLCoder">YES</bool>
139
+ <object class="IBConnectionRecord">
140
+ <object class="IBCocoaTouchOutletConnection" key="connection">
141
+ <string key="label">bmTableCell</string>
142
+ <reference key="source" ref="372490531"/>
143
+ <reference key="destination" ref="581303870"/>
144
+ </object>
145
+ <int key="connectionID">23</int>
146
+ </object>
147
+ <object class="IBConnectionRecord">
148
+ <object class="IBCocoaTouchOutletConnection" key="connection">
149
+ <string key="label">_sub_title</string>
150
+ <reference key="source" ref="581303870"/>
151
+ <reference key="destination" ref="74446343"/>
152
+ </object>
153
+ <int key="connectionID">21</int>
154
+ </object>
155
+ <object class="IBConnectionRecord">
156
+ <object class="IBCocoaTouchOutletConnection" key="connection">
157
+ <string key="label">_title</string>
158
+ <reference key="source" ref="581303870"/>
159
+ <reference key="destination" ref="915789886"/>
160
+ </object>
161
+ <int key="connectionID">22</int>
162
+ </object>
163
+ </object>
164
+ <object class="IBMutableOrderedSet" key="objectRecords">
165
+ <object class="NSArray" key="orderedObjects">
166
+ <bool key="EncodedWithXMLCoder">YES</bool>
167
+ <object class="IBObjectRecord">
168
+ <int key="objectID">0</int>
169
+ <object class="NSArray" key="object" id="0">
170
+ <bool key="EncodedWithXMLCoder">YES</bool>
171
+ </object>
172
+ <reference key="children" ref="1000"/>
173
+ <nil key="parent"/>
174
+ </object>
175
+ <object class="IBObjectRecord">
176
+ <int key="objectID">-1</int>
177
+ <reference key="object" ref="372490531"/>
178
+ <reference key="parent" ref="0"/>
179
+ <string key="objectName">File's Owner</string>
180
+ </object>
181
+ <object class="IBObjectRecord">
182
+ <int key="objectID">-2</int>
183
+ <reference key="object" ref="975951072"/>
184
+ <reference key="parent" ref="0"/>
185
+ </object>
186
+ <object class="IBObjectRecord">
187
+ <int key="objectID">18</int>
188
+ <reference key="object" ref="581303870"/>
189
+ <object class="NSMutableArray" key="children">
190
+ <bool key="EncodedWithXMLCoder">YES</bool>
191
+ <reference ref="915789886"/>
192
+ <reference ref="74446343"/>
193
+ </object>
194
+ <reference key="parent" ref="0"/>
195
+ </object>
196
+ <object class="IBObjectRecord">
197
+ <int key="objectID">19</int>
198
+ <reference key="object" ref="915789886"/>
199
+ <reference key="parent" ref="581303870"/>
200
+ </object>
201
+ <object class="IBObjectRecord">
202
+ <int key="objectID">20</int>
203
+ <reference key="object" ref="74446343"/>
204
+ <reference key="parent" ref="581303870"/>
205
+ </object>
206
+ </object>
207
+ </object>
208
+ <object class="NSMutableDictionary" key="flattenedProperties">
209
+ <bool key="EncodedWithXMLCoder">YES</bool>
210
+ <object class="NSArray" key="dict.sortedKeys">
211
+ <bool key="EncodedWithXMLCoder">YES</bool>
212
+ <string>-1.CustomClassName</string>
213
+ <string>-1.IBPluginDependency</string>
214
+ <string>-2.CustomClassName</string>
215
+ <string>-2.IBPluginDependency</string>
216
+ <string>18.CustomClassName</string>
217
+ <string>18.IBPluginDependency</string>
218
+ <string>19.IBPluginDependency</string>
219
+ <string>20.IBPluginDependency</string>
220
+ </object>
221
+ <object class="NSArray" key="dict.values">
222
+ <bool key="EncodedWithXMLCoder">YES</bool>
223
+ <string>BookmarkListController</string>
224
+ <string>com.apple.InterfaceBuilder.IBCocoaTouchPlugin</string>
225
+ <string>UIResponder</string>
226
+ <string>com.apple.InterfaceBuilder.IBCocoaTouchPlugin</string>
227
+ <string>BookmarkTableCell</string>
228
+ <string>com.apple.InterfaceBuilder.IBCocoaTouchPlugin</string>
229
+ <string>com.apple.InterfaceBuilder.IBCocoaTouchPlugin</string>
230
+ <string>com.apple.InterfaceBuilder.IBCocoaTouchPlugin</string>
231
+ </object>
232
+ </object>
233
+ <object class="NSMutableDictionary" key="unlocalizedProperties">
234
+ <bool key="EncodedWithXMLCoder">YES</bool>
235
+ <reference key="dict.sortedKeys" ref="0"/>
236
+ <reference key="dict.values" ref="0"/>
237
+ </object>
238
+ <nil key="activeLocalization"/>
239
+ <object class="NSMutableDictionary" key="localizations">
240
+ <bool key="EncodedWithXMLCoder">YES</bool>
241
+ <reference key="dict.sortedKeys" ref="0"/>
242
+ <reference key="dict.values" ref="0"/>
243
+ </object>
244
+ <nil key="sourceID"/>
245
+ <int key="maxID">23</int>
246
+ </object>
247
+ <object class="IBClassDescriber" key="IBDocument.Classes">
248
+ <object class="NSMutableArray" key="referencedPartialClassDescriptions">
249
+ <bool key="EncodedWithXMLCoder">YES</bool>
250
+ <object class="IBPartialClassDescription">
251
+ <string key="className">BookmarkListController</string>
252
+ <string key="superclassName">UIViewController</string>
253
+ <object class="NSMutableDictionary" key="outlets">
254
+ <bool key="EncodedWithXMLCoder">YES</bool>
255
+ <object class="NSArray" key="dict.sortedKeys">
256
+ <bool key="EncodedWithXMLCoder">YES</bool>
257
+ <string>bmTableCell</string>
258
+ <string>searchBar</string>
259
+ <string>sessTableCell</string>
260
+ <string>tableView</string>
261
+ </object>
262
+ <object class="NSArray" key="dict.values">
263
+ <bool key="EncodedWithXMLCoder">YES</bool>
264
+ <string>BookmarkTableCell</string>
265
+ <string>UISearchBar</string>
266
+ <string>SessionTableCell</string>
267
+ <string>UITableView</string>
268
+ </object>
269
+ </object>
270
+ <object class="NSMutableDictionary" key="toOneOutletInfosByName">
271
+ <bool key="EncodedWithXMLCoder">YES</bool>
272
+ <object class="NSArray" key="dict.sortedKeys">
273
+ <bool key="EncodedWithXMLCoder">YES</bool>
274
+ <string>bmTableCell</string>
275
+ <string>searchBar</string>
276
+ <string>sessTableCell</string>
277
+ <string>tableView</string>
278
+ </object>
279
+ <object class="NSArray" key="dict.values">
280
+ <bool key="EncodedWithXMLCoder">YES</bool>
281
+ <object class="IBToOneOutletInfo">
282
+ <string key="name">bmTableCell</string>
283
+ <string key="candidateClassName">BookmarkTableCell</string>
284
+ </object>
285
+ <object class="IBToOneOutletInfo">
286
+ <string key="name">searchBar</string>
287
+ <string key="candidateClassName">UISearchBar</string>
288
+ </object>
289
+ <object class="IBToOneOutletInfo">
290
+ <string key="name">sessTableCell</string>
291
+ <string key="candidateClassName">SessionTableCell</string>
292
+ </object>
293
+ <object class="IBToOneOutletInfo">
294
+ <string key="name">tableView</string>
295
+ <string key="candidateClassName">UITableView</string>
296
+ </object>
297
+ </object>
298
+ </object>
299
+ <object class="IBClassDescriptionSource" key="sourceIdentifier">
300
+ <string key="majorKey">IBProjectSource</string>
301
+ <string key="minorKey">./Classes/BookmarkListController.h</string>
302
+ </object>
303
+ </object>
304
+ <object class="IBPartialClassDescription">
305
+ <string key="className">BookmarkTableCell</string>
306
+ <string key="superclassName">UITableViewCell</string>
307
+ <object class="NSMutableDictionary" key="outlets">
308
+ <bool key="EncodedWithXMLCoder">YES</bool>
309
+ <object class="NSArray" key="dict.sortedKeys">
310
+ <bool key="EncodedWithXMLCoder">YES</bool>
311
+ <string>_connection_state_icon</string>
312
+ <string>_sub_title</string>
313
+ <string>_title</string>
314
+ </object>
315
+ <object class="NSArray" key="dict.values">
316
+ <bool key="EncodedWithXMLCoder">YES</bool>
317
+ <string>UIImageView</string>
318
+ <string>UILabel</string>
319
+ <string>UILabel</string>
320
+ </object>
321
+ </object>
322
+ <object class="NSMutableDictionary" key="toOneOutletInfosByName">
323
+ <bool key="EncodedWithXMLCoder">YES</bool>
324
+ <object class="NSArray" key="dict.sortedKeys">
325
+ <bool key="EncodedWithXMLCoder">YES</bool>
326
+ <string>_connection_state_icon</string>
327
+ <string>_sub_title</string>
328
+ <string>_title</string>
329
+ </object>
330
+ <object class="NSArray" key="dict.values">
331
+ <bool key="EncodedWithXMLCoder">YES</bool>
332
+ <object class="IBToOneOutletInfo">
333
+ <string key="name">_connection_state_icon</string>
334
+ <string key="candidateClassName">UIImageView</string>
335
+ </object>
336
+ <object class="IBToOneOutletInfo">
337
+ <string key="name">_sub_title</string>
338
+ <string key="candidateClassName">UILabel</string>
339
+ </object>
340
+ <object class="IBToOneOutletInfo">
341
+ <string key="name">_title</string>
342
+ <string key="candidateClassName">UILabel</string>
343
+ </object>
344
+ </object>
345
+ </object>
346
+ <object class="IBClassDescriptionSource" key="sourceIdentifier">
347
+ <string key="majorKey">IBProjectSource</string>
348
+ <string key="minorKey">./Classes/BookmarkTableCell.h</string>
349
+ </object>
350
+ </object>
351
+ <object class="IBPartialClassDescription">
352
+ <string key="className">SessionTableCell</string>
353
+ <string key="superclassName">UITableViewCell</string>
354
+ <object class="NSMutableDictionary" key="outlets">
355
+ <bool key="EncodedWithXMLCoder">YES</bool>
356
+ <object class="NSArray" key="dict.sortedKeys">
357
+ <bool key="EncodedWithXMLCoder">YES</bool>
358
+ <string>_disconnect_button</string>
359
+ <string>_screenshot</string>
360
+ <string>_server</string>
361
+ <string>_title</string>
362
+ <string>_username</string>
363
+ </object>
364
+ <object class="NSArray" key="dict.values">
365
+ <bool key="EncodedWithXMLCoder">YES</bool>
366
+ <string>UIButton</string>
367
+ <string>UIImageView</string>
368
+ <string>UILabel</string>
369
+ <string>UILabel</string>
370
+ <string>UILabel</string>
371
+ </object>
372
+ </object>
373
+ <object class="NSMutableDictionary" key="toOneOutletInfosByName">
374
+ <bool key="EncodedWithXMLCoder">YES</bool>
375
+ <object class="NSArray" key="dict.sortedKeys">
376
+ <bool key="EncodedWithXMLCoder">YES</bool>
377
+ <string>_disconnect_button</string>
378
+ <string>_screenshot</string>
379
+ <string>_server</string>
380
+ <string>_title</string>
381
+ <string>_username</string>
382
+ </object>
383
+ <object class="NSArray" key="dict.values">
384
+ <bool key="EncodedWithXMLCoder">YES</bool>
385
+ <object class="IBToOneOutletInfo">
386
+ <string key="name">_disconnect_button</string>
387
+ <string key="candidateClassName">UIButton</string>
388
+ </object>
389
+ <object class="IBToOneOutletInfo">
390
+ <string key="name">_screenshot</string>
391
+ <string key="candidateClassName">UIImageView</string>
392
+ </object>
393
+ <object class="IBToOneOutletInfo">
394
+ <string key="name">_server</string>
395
+ <string key="candidateClassName">UILabel</string>
396
+ </object>
397
+ <object class="IBToOneOutletInfo">
398
+ <string key="name">_title</string>
399
+ <string key="candidateClassName">UILabel</string>
400
+ </object>
401
+ <object class="IBToOneOutletInfo">
402
+ <string key="name">_username</string>
403
+ <string key="candidateClassName">UILabel</string>
404
+ </object>
405
+ </object>
406
+ </object>
407
+ <object class="IBClassDescriptionSource" key="sourceIdentifier">
408
+ <string key="majorKey">IBProjectSource</string>
409
+ <string key="minorKey">./Classes/SessionTableCell.h</string>
410
+ </object>
411
+ </object>
412
+ </object>
413
+ </object>
414
+ <int key="IBDocument.localizationMode">0</int>
415
+ <string key="IBDocument.TargetRuntimeIdentifier">IBIPadFramework</string>
416
+ <object class="NSMutableDictionary" key="IBDocument.PluginDeclaredDependencyDefaults">
417
+ <string key="NS.key.0">com.apple.InterfaceBuilder.CocoaTouchPlugin.iPhoneOS</string>
418
+ <real value="1296" key="NS.object.0"/>
419
+ </object>
420
+ <object class="NSMutableDictionary" key="IBDocument.PluginDeclaredDevelopmentDependencies">
421
+ <string key="NS.key.0">com.apple.InterfaceBuilder.CocoaTouchPlugin.InterfaceBuilder3</string>
422
+ <integer value="3100" key="NS.object.0"/>
423
+ </object>
424
+ <bool key="IBDocument.PluginDeclaredDependenciesTrackSystemTargetVersion">YES</bool>
425
+ <int key="IBDocument.defaultPropertyAccessControl">3</int>
426
+ <string key="IBCocoaTouchPluginVersion">1179</string>
427
+ </data>
428
+ </archive>
local-test-freerdp-full-01/afc-freerdp/client/iOS/Resources/EditButtonTableViewCell.xib ADDED
@@ -0,0 +1,408 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <?xml version="1.0" encoding="UTF-8"?>
2
+ <archive type="com.apple.InterfaceBuilder3.CocoaTouch.XIB" version="8.00">
3
+ <data>
4
+ <int key="IBDocument.SystemTarget">1296</int>
5
+ <string key="IBDocument.SystemVersion">11D50b</string>
6
+ <string key="IBDocument.InterfaceBuilderVersion">2182</string>
7
+ <string key="IBDocument.AppKitVersion">1138.32</string>
8
+ <string key="IBDocument.HIToolboxVersion">568.00</string>
9
+ <object class="NSMutableDictionary" key="IBDocument.PluginVersions">
10
+ <string key="NS.key.0">com.apple.InterfaceBuilder.IBCocoaTouchPlugin</string>
11
+ <string key="NS.object.0">1179</string>
12
+ </object>
13
+ <array key="IBDocument.IntegratedClassDependencies">
14
+ <string>IBUITableViewCell</string>
15
+ <string>IBUIButton</string>
16
+ <string>IBUILabel</string>
17
+ <string>IBProxyObject</string>
18
+ </array>
19
+ <array key="IBDocument.PluginDependencies">
20
+ <string>com.apple.InterfaceBuilder.IBCocoaTouchPlugin</string>
21
+ </array>
22
+ <object class="NSMutableDictionary" key="IBDocument.Metadata">
23
+ <string key="NS.key.0">PluginDependencyRecalculationVersion</string>
24
+ <integer value="1" key="NS.object.0"/>
25
+ </object>
26
+ <array class="NSMutableArray" key="IBDocument.RootObjects" id="1000">
27
+ <object class="IBProxyObject" id="841351856">
28
+ <string key="IBProxiedObjectIdentifier">IBFilesOwner</string>
29
+ <string key="targetRuntimeIdentifier">IBCocoaTouchFramework</string>
30
+ </object>
31
+ <object class="IBProxyObject" id="371349661">
32
+ <string key="IBProxiedObjectIdentifier">IBFirstResponder</string>
33
+ <string key="targetRuntimeIdentifier">IBCocoaTouchFramework</string>
34
+ </object>
35
+ <object class="IBUITableViewCell" id="899919877">
36
+ <reference key="NSNextResponder"/>
37
+ <int key="NSvFlags">292</int>
38
+ <array class="NSMutableArray" key="NSSubviews">
39
+ <object class="IBUIView" id="209421689">
40
+ <reference key="NSNextResponder" ref="899919877"/>
41
+ <int key="NSvFlags">256</int>
42
+ <array class="NSMutableArray" key="NSSubviews">
43
+ <object class="IBUILabel" id="1032585218">
44
+ <reference key="NSNextResponder" ref="209421689"/>
45
+ <int key="NSvFlags">298</int>
46
+ <string key="NSFrame">{{12, 10}, {218, 25}}</string>
47
+ <reference key="NSSuperview" ref="209421689"/>
48
+ <reference key="NSWindow"/>
49
+ <reference key="NSNextKeyView" ref="866724112"/>
50
+ <string key="NSReuseIdentifierKey">_NS:9</string>
51
+ <bool key="IBUIOpaque">NO</bool>
52
+ <bool key="IBUIClipsSubviews">YES</bool>
53
+ <int key="IBUIContentMode">7</int>
54
+ <bool key="IBUIUserInteractionEnabled">NO</bool>
55
+ <string key="targetRuntimeIdentifier">IBCocoaTouchFramework</string>
56
+ <string key="IBUIText">Label</string>
57
+ <object class="NSColor" key="IBUITextColor">
58
+ <int key="NSColorSpace">1</int>
59
+ <bytes key="NSRGB">MCAwIDAAA</bytes>
60
+ </object>
61
+ <object class="NSColor" key="IBUIHighlightedColor" id="729087361">
62
+ <int key="NSColorSpace">3</int>
63
+ <bytes key="NSWhite">MQA</bytes>
64
+ </object>
65
+ <int key="IBUIBaselineAdjustment">0</int>
66
+ <float key="IBUIMinimumFontSize">10</float>
67
+ <object class="IBUIFontDescription" key="IBUIFontDescription">
68
+ <int key="type">2</int>
69
+ <double key="pointSize">17</double>
70
+ </object>
71
+ <object class="NSFont" key="IBUIFont">
72
+ <string key="NSName">Helvetica-Bold</string>
73
+ <double key="NSSize">17</double>
74
+ <int key="NSfFlags">16</int>
75
+ </object>
76
+ <bool key="IBUIAdjustsFontSizeToFit">NO</bool>
77
+ </object>
78
+ <object class="IBUIButton" id="866724112">
79
+ <reference key="NSNextResponder" ref="209421689"/>
80
+ <int key="NSvFlags">297</int>
81
+ <string key="NSFrame">{{252, 6}, {58, 31}}</string>
82
+ <reference key="NSSuperview" ref="209421689"/>
83
+ <reference key="NSWindow"/>
84
+ <string key="NSReuseIdentifierKey">_NS:9</string>
85
+ <bool key="IBUIOpaque">NO</bool>
86
+ <string key="targetRuntimeIdentifier">IBCocoaTouchFramework</string>
87
+ <int key="IBUIContentHorizontalAlignment">0</int>
88
+ <int key="IBUIContentVerticalAlignment">0</int>
89
+ <int key="IBUIButtonType">1</int>
90
+ <reference key="IBUIHighlightedTitleColor" ref="729087361"/>
91
+ <object class="NSColor" key="IBUINormalTitleColor">
92
+ <int key="NSColorSpace">1</int>
93
+ <bytes key="NSRGB">MC4xOTYwNzg0MzE0IDAuMzA5ODAzOTIxNiAwLjUyMTU2ODYyNzUAA</bytes>
94
+ </object>
95
+ <object class="NSColor" key="IBUINormalTitleShadowColor">
96
+ <int key="NSColorSpace">3</int>
97
+ <bytes key="NSWhite">MC41AA</bytes>
98
+ </object>
99
+ <object class="IBUIFontDescription" key="IBUIFontDescription">
100
+ <int key="type">1</int>
101
+ <double key="pointSize">15</double>
102
+ </object>
103
+ <object class="NSFont" key="IBUIFont">
104
+ <string key="NSName">Helvetica</string>
105
+ <double key="NSSize">15</double>
106
+ <int key="NSfFlags">16</int>
107
+ </object>
108
+ </object>
109
+ </array>
110
+ <string key="NSFrameSize">{320, 43}</string>
111
+ <reference key="NSSuperview" ref="899919877"/>
112
+ <reference key="NSWindow"/>
113
+ <reference key="NSNextKeyView" ref="1032585218"/>
114
+ <string key="NSReuseIdentifierKey">_NS:11</string>
115
+ <object class="NSColor" key="IBUIBackgroundColor">
116
+ <int key="NSColorSpace">3</int>
117
+ <bytes key="NSWhite">MCAwAA</bytes>
118
+ </object>
119
+ <bool key="IBUIOpaque">NO</bool>
120
+ <bool key="IBUIClipsSubviews">YES</bool>
121
+ <int key="IBUIContentMode">4</int>
122
+ <bool key="IBUIMultipleTouchEnabled">YES</bool>
123
+ <string key="targetRuntimeIdentifier">IBCocoaTouchFramework</string>
124
+ </object>
125
+ </array>
126
+ <string key="NSFrameSize">{320, 44}</string>
127
+ <reference key="NSSuperview"/>
128
+ <reference key="NSWindow"/>
129
+ <reference key="NSNextKeyView" ref="209421689"/>
130
+ <string key="NSReuseIdentifierKey">_NS:9</string>
131
+ <string key="targetRuntimeIdentifier">IBCocoaTouchFramework</string>
132
+ <reference key="IBUIContentView" ref="209421689"/>
133
+ </object>
134
+ </array>
135
+ <object class="IBObjectContainer" key="IBDocument.Objects">
136
+ <array class="NSMutableArray" key="connectionRecords">
137
+ <object class="IBConnectionRecord">
138
+ <object class="IBCocoaTouchOutletConnection" key="connection">
139
+ <string key="label">_buttonTableViewCell</string>
140
+ <reference key="source" ref="841351856"/>
141
+ <reference key="destination" ref="899919877"/>
142
+ </object>
143
+ <int key="connectionID">7</int>
144
+ </object>
145
+ <object class="IBConnectionRecord">
146
+ <object class="IBCocoaTouchOutletConnection" key="connection">
147
+ <string key="label">_button</string>
148
+ <reference key="source" ref="899919877"/>
149
+ <reference key="destination" ref="866724112"/>
150
+ </object>
151
+ <int key="connectionID">5</int>
152
+ </object>
153
+ <object class="IBConnectionRecord">
154
+ <object class="IBCocoaTouchOutletConnection" key="connection">
155
+ <string key="label">_label</string>
156
+ <reference key="source" ref="899919877"/>
157
+ <reference key="destination" ref="1032585218"/>
158
+ </object>
159
+ <int key="connectionID">6</int>
160
+ </object>
161
+ </array>
162
+ <object class="IBMutableOrderedSet" key="objectRecords">
163
+ <array key="orderedObjects">
164
+ <object class="IBObjectRecord">
165
+ <int key="objectID">0</int>
166
+ <array key="object" id="0"/>
167
+ <reference key="children" ref="1000"/>
168
+ <nil key="parent"/>
169
+ </object>
170
+ <object class="IBObjectRecord">
171
+ <int key="objectID">-1</int>
172
+ <reference key="object" ref="841351856"/>
173
+ <reference key="parent" ref="0"/>
174
+ <string key="objectName">File's Owner</string>
175
+ </object>
176
+ <object class="IBObjectRecord">
177
+ <int key="objectID">-2</int>
178
+ <reference key="object" ref="371349661"/>
179
+ <reference key="parent" ref="0"/>
180
+ </object>
181
+ <object class="IBObjectRecord">
182
+ <int key="objectID">2</int>
183
+ <reference key="object" ref="899919877"/>
184
+ <array class="NSMutableArray" key="children">
185
+ <reference ref="1032585218"/>
186
+ <reference ref="866724112"/>
187
+ </array>
188
+ <reference key="parent" ref="0"/>
189
+ </object>
190
+ <object class="IBObjectRecord">
191
+ <int key="objectID">3</int>
192
+ <reference key="object" ref="1032585218"/>
193
+ <reference key="parent" ref="899919877"/>
194
+ </object>
195
+ <object class="IBObjectRecord">
196
+ <int key="objectID">4</int>
197
+ <reference key="object" ref="866724112"/>
198
+ <reference key="parent" ref="899919877"/>
199
+ </object>
200
+ </array>
201
+ </object>
202
+ <dictionary class="NSMutableDictionary" key="flattenedProperties">
203
+ <string key="-1.CustomClassName">EditorBaseController</string>
204
+ <string key="-1.IBPluginDependency">com.apple.InterfaceBuilder.IBCocoaTouchPlugin</string>
205
+ <string key="-2.CustomClassName">UIResponder</string>
206
+ <string key="-2.IBPluginDependency">com.apple.InterfaceBuilder.IBCocoaTouchPlugin</string>
207
+ <string key="2.CustomClassName">EditButtonTableViewCell</string>
208
+ <string key="2.IBPluginDependency">com.apple.InterfaceBuilder.IBCocoaTouchPlugin</string>
209
+ <string key="3.IBPluginDependency">com.apple.InterfaceBuilder.IBCocoaTouchPlugin</string>
210
+ <string key="4.IBPluginDependency">com.apple.InterfaceBuilder.IBCocoaTouchPlugin</string>
211
+ </dictionary>
212
+ <dictionary class="NSMutableDictionary" key="unlocalizedProperties"/>
213
+ <nil key="activeLocalization"/>
214
+ <dictionary class="NSMutableDictionary" key="localizations"/>
215
+ <nil key="sourceID"/>
216
+ <int key="maxID">7</int>
217
+ </object>
218
+ <object class="IBClassDescriber" key="IBDocument.Classes">
219
+ <array class="NSMutableArray" key="referencedPartialClassDescriptions">
220
+ <object class="IBPartialClassDescription">
221
+ <string key="className">EditButtonTableViewCell</string>
222
+ <string key="superclassName">UITableViewCell</string>
223
+ <dictionary class="NSMutableDictionary" key="outlets">
224
+ <string key="_button">UIButton</string>
225
+ <string key="_label">UILabel</string>
226
+ </dictionary>
227
+ <dictionary class="NSMutableDictionary" key="toOneOutletInfosByName">
228
+ <object class="IBToOneOutletInfo" key="_button">
229
+ <string key="name">_button</string>
230
+ <string key="candidateClassName">UIButton</string>
231
+ </object>
232
+ <object class="IBToOneOutletInfo" key="_label">
233
+ <string key="name">_label</string>
234
+ <string key="candidateClassName">UILabel</string>
235
+ </object>
236
+ </dictionary>
237
+ <object class="IBClassDescriptionSource" key="sourceIdentifier">
238
+ <string key="majorKey">IBProjectSource</string>
239
+ <string key="minorKey">./Classes/EditButtonTableViewCell.h</string>
240
+ </object>
241
+ </object>
242
+ <object class="IBPartialClassDescription">
243
+ <string key="className">EditFlagTableViewCell</string>
244
+ <string key="superclassName">UITableViewCell</string>
245
+ <dictionary class="NSMutableDictionary" key="outlets">
246
+ <string key="_label">UILabel</string>
247
+ <string key="_toggle">UISwitch</string>
248
+ </dictionary>
249
+ <dictionary class="NSMutableDictionary" key="toOneOutletInfosByName">
250
+ <object class="IBToOneOutletInfo" key="_label">
251
+ <string key="name">_label</string>
252
+ <string key="candidateClassName">UILabel</string>
253
+ </object>
254
+ <object class="IBToOneOutletInfo" key="_toggle">
255
+ <string key="name">_toggle</string>
256
+ <string key="candidateClassName">UISwitch</string>
257
+ </object>
258
+ </dictionary>
259
+ <object class="IBClassDescriptionSource" key="sourceIdentifier">
260
+ <string key="majorKey">IBProjectSource</string>
261
+ <string key="minorKey">./Classes/EditFlagTableViewCell.h</string>
262
+ </object>
263
+ </object>
264
+ <object class="IBPartialClassDescription">
265
+ <string key="className">EditSecretTextTableViewCell</string>
266
+ <string key="superclassName">UITableViewCell</string>
267
+ <dictionary class="NSMutableDictionary" key="outlets">
268
+ <string key="_label">UILabel</string>
269
+ <string key="_textfield">UITextField</string>
270
+ <string key="_unhide_button">UIButton</string>
271
+ </dictionary>
272
+ <dictionary class="NSMutableDictionary" key="toOneOutletInfosByName">
273
+ <object class="IBToOneOutletInfo" key="_label">
274
+ <string key="name">_label</string>
275
+ <string key="candidateClassName">UILabel</string>
276
+ </object>
277
+ <object class="IBToOneOutletInfo" key="_textfield">
278
+ <string key="name">_textfield</string>
279
+ <string key="candidateClassName">UITextField</string>
280
+ </object>
281
+ <object class="IBToOneOutletInfo" key="_unhide_button">
282
+ <string key="name">_unhide_button</string>
283
+ <string key="candidateClassName">UIButton</string>
284
+ </object>
285
+ </dictionary>
286
+ <object class="IBClassDescriptionSource" key="sourceIdentifier">
287
+ <string key="majorKey">IBProjectSource</string>
288
+ <string key="minorKey">./Classes/EditSecretTextTableViewCell.h</string>
289
+ </object>
290
+ </object>
291
+ <object class="IBPartialClassDescription">
292
+ <string key="className">EditSelectionTableViewCell</string>
293
+ <string key="superclassName">UITableViewCell</string>
294
+ <dictionary class="NSMutableDictionary" key="outlets">
295
+ <string key="_label">UILabel</string>
296
+ <string key="_selection">UILabel</string>
297
+ </dictionary>
298
+ <dictionary class="NSMutableDictionary" key="toOneOutletInfosByName">
299
+ <object class="IBToOneOutletInfo" key="_label">
300
+ <string key="name">_label</string>
301
+ <string key="candidateClassName">UILabel</string>
302
+ </object>
303
+ <object class="IBToOneOutletInfo" key="_selection">
304
+ <string key="name">_selection</string>
305
+ <string key="candidateClassName">UILabel</string>
306
+ </object>
307
+ </dictionary>
308
+ <object class="IBClassDescriptionSource" key="sourceIdentifier">
309
+ <string key="majorKey">IBProjectSource</string>
310
+ <string key="minorKey">./Classes/EditSelectionTableViewCell.h</string>
311
+ </object>
312
+ </object>
313
+ <object class="IBPartialClassDescription">
314
+ <string key="className">EditSubEditTableViewCell</string>
315
+ <string key="superclassName">UITableViewCell</string>
316
+ <object class="NSMutableDictionary" key="outlets">
317
+ <string key="NS.key.0">_label</string>
318
+ <string key="NS.object.0">UILabel</string>
319
+ </object>
320
+ <object class="NSMutableDictionary" key="toOneOutletInfosByName">
321
+ <string key="NS.key.0">_label</string>
322
+ <object class="IBToOneOutletInfo" key="NS.object.0">
323
+ <string key="name">_label</string>
324
+ <string key="candidateClassName">UILabel</string>
325
+ </object>
326
+ </object>
327
+ <object class="IBClassDescriptionSource" key="sourceIdentifier">
328
+ <string key="majorKey">IBProjectSource</string>
329
+ <string key="minorKey">./Classes/EditSubEditTableViewCell.h</string>
330
+ </object>
331
+ </object>
332
+ <object class="IBPartialClassDescription">
333
+ <string key="className">EditTextTableViewCell</string>
334
+ <string key="superclassName">UITableViewCell</string>
335
+ <dictionary class="NSMutableDictionary" key="outlets">
336
+ <string key="_label">UILabel</string>
337
+ <string key="_textfield">UITextField</string>
338
+ </dictionary>
339
+ <dictionary class="NSMutableDictionary" key="toOneOutletInfosByName">
340
+ <object class="IBToOneOutletInfo" key="_label">
341
+ <string key="name">_label</string>
342
+ <string key="candidateClassName">UILabel</string>
343
+ </object>
344
+ <object class="IBToOneOutletInfo" key="_textfield">
345
+ <string key="name">_textfield</string>
346
+ <string key="candidateClassName">UITextField</string>
347
+ </object>
348
+ </dictionary>
349
+ <object class="IBClassDescriptionSource" key="sourceIdentifier">
350
+ <string key="majorKey">IBProjectSource</string>
351
+ <string key="minorKey">./Classes/EditTextTableViewCell.h</string>
352
+ </object>
353
+ </object>
354
+ <object class="IBPartialClassDescription">
355
+ <string key="className">EditorBaseController</string>
356
+ <string key="superclassName">UITableViewController</string>
357
+ <dictionary class="NSMutableDictionary" key="outlets">
358
+ <string key="_buttonTableViewCell">EditButtonTableViewCell</string>
359
+ <string key="_flagTableViewCell">EditFlagTableViewCell</string>
360
+ <string key="_secretTextTableViewCell">EditSecretTextTableViewCell</string>
361
+ <string key="_selectionTableViewCell">EditSelectionTableViewCell</string>
362
+ <string key="_subEditTableViewCell">EditSubEditTableViewCell</string>
363
+ <string key="_textTableViewCell">EditTextTableViewCell</string>
364
+ </dictionary>
365
+ <dictionary class="NSMutableDictionary" key="toOneOutletInfosByName">
366
+ <object class="IBToOneOutletInfo" key="_buttonTableViewCell">
367
+ <string key="name">_buttonTableViewCell</string>
368
+ <string key="candidateClassName">EditButtonTableViewCell</string>
369
+ </object>
370
+ <object class="IBToOneOutletInfo" key="_flagTableViewCell">
371
+ <string key="name">_flagTableViewCell</string>
372
+ <string key="candidateClassName">EditFlagTableViewCell</string>
373
+ </object>
374
+ <object class="IBToOneOutletInfo" key="_secretTextTableViewCell">
375
+ <string key="name">_secretTextTableViewCell</string>
376
+ <string key="candidateClassName">EditSecretTextTableViewCell</string>
377
+ </object>
378
+ <object class="IBToOneOutletInfo" key="_selectionTableViewCell">
379
+ <string key="name">_selectionTableViewCell</string>
380
+ <string key="candidateClassName">EditSelectionTableViewCell</string>
381
+ </object>
382
+ <object class="IBToOneOutletInfo" key="_subEditTableViewCell">
383
+ <string key="name">_subEditTableViewCell</string>
384
+ <string key="candidateClassName">EditSubEditTableViewCell</string>
385
+ </object>
386
+ <object class="IBToOneOutletInfo" key="_textTableViewCell">
387
+ <string key="name">_textTableViewCell</string>
388
+ <string key="candidateClassName">EditTextTableViewCell</string>
389
+ </object>
390
+ </dictionary>
391
+ <object class="IBClassDescriptionSource" key="sourceIdentifier">
392
+ <string key="majorKey">IBProjectSource</string>
393
+ <string key="minorKey">./Classes/EditorBaseController.h</string>
394
+ </object>
395
+ </object>
396
+ </array>
397
+ </object>
398
+ <int key="IBDocument.localizationMode">0</int>
399
+ <string key="IBDocument.TargetRuntimeIdentifier">IBCocoaTouchFramework</string>
400
+ <object class="NSMutableDictionary" key="IBDocument.PluginDeclaredDependencyDefaults">
401
+ <string key="NS.key.0">com.apple.InterfaceBuilder.CocoaTouchPlugin.iPhoneOS</string>
402
+ <real value="1296" key="NS.object.0"/>
403
+ </object>
404
+ <bool key="IBDocument.PluginDeclaredDependenciesTrackSystemTargetVersion">YES</bool>
405
+ <int key="IBDocument.defaultPropertyAccessControl">3</int>
406
+ <string key="IBCocoaTouchPluginVersion">1179</string>
407
+ </data>
408
+ </archive>
local-test-freerdp-full-01/afc-freerdp/client/iOS/Resources/EditFlagTableViewCell.xib ADDED
@@ -0,0 +1,208 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <?xml version="1.0" encoding="UTF-8"?>
2
+ <archive type="com.apple.InterfaceBuilder3.CocoaTouch.XIB" version="8.00">
3
+ <data>
4
+ <int key="IBDocument.SystemTarget">1296</int>
5
+ <string key="IBDocument.SystemVersion">11D50b</string>
6
+ <string key="IBDocument.InterfaceBuilderVersion">2182</string>
7
+ <string key="IBDocument.AppKitVersion">1138.32</string>
8
+ <string key="IBDocument.HIToolboxVersion">568.00</string>
9
+ <object class="NSMutableDictionary" key="IBDocument.PluginVersions">
10
+ <string key="NS.key.0">com.apple.InterfaceBuilder.IBCocoaTouchPlugin</string>
11
+ <string key="NS.object.0">1179</string>
12
+ </object>
13
+ <array key="IBDocument.IntegratedClassDependencies">
14
+ <string>IBUITableViewCell</string>
15
+ <string>IBUISwitch</string>
16
+ <string>IBUILabel</string>
17
+ <string>IBProxyObject</string>
18
+ </array>
19
+ <array key="IBDocument.PluginDependencies">
20
+ <string>com.apple.InterfaceBuilder.IBCocoaTouchPlugin</string>
21
+ </array>
22
+ <object class="NSMutableDictionary" key="IBDocument.Metadata">
23
+ <string key="NS.key.0">PluginDependencyRecalculationVersion</string>
24
+ <integer value="1" key="NS.object.0"/>
25
+ </object>
26
+ <array class="NSMutableArray" key="IBDocument.RootObjects" id="1000">
27
+ <object class="IBProxyObject" id="841351856">
28
+ <string key="IBProxiedObjectIdentifier">IBFilesOwner</string>
29
+ <string key="targetRuntimeIdentifier">IBCocoaTouchFramework</string>
30
+ </object>
31
+ <object class="IBProxyObject" id="371349661">
32
+ <string key="IBProxiedObjectIdentifier">IBFirstResponder</string>
33
+ <string key="targetRuntimeIdentifier">IBCocoaTouchFramework</string>
34
+ </object>
35
+ <object class="IBUITableViewCell" id="310994250">
36
+ <reference key="NSNextResponder"/>
37
+ <int key="NSvFlags">292</int>
38
+ <array class="NSMutableArray" key="NSSubviews">
39
+ <object class="IBUIView" id="672481111">
40
+ <reference key="NSNextResponder" ref="310994250"/>
41
+ <int key="NSvFlags">256</int>
42
+ <array class="NSMutableArray" key="NSSubviews">
43
+ <object class="IBUILabel" id="165861018">
44
+ <reference key="NSNextResponder" ref="672481111"/>
45
+ <int key="NSvFlags">298</int>
46
+ <string key="NSFrame">{{10, 10}, {214, 25}}</string>
47
+ <reference key="NSSuperview" ref="672481111"/>
48
+ <reference key="NSNextKeyView" ref="801003579"/>
49
+ <string key="NSReuseIdentifierKey">_NS:9</string>
50
+ <bool key="IBUIOpaque">NO</bool>
51
+ <bool key="IBUIClipsSubviews">YES</bool>
52
+ <int key="IBUIContentMode">7</int>
53
+ <bool key="IBUIUserInteractionEnabled">NO</bool>
54
+ <string key="targetRuntimeIdentifier">IBCocoaTouchFramework</string>
55
+ <string key="IBUIText">Label</string>
56
+ <object class="NSColor" key="IBUITextColor">
57
+ <int key="NSColorSpace">1</int>
58
+ <bytes key="NSRGB">MCAwIDAAA</bytes>
59
+ </object>
60
+ <object class="NSColor" key="IBUIHighlightedColor">
61
+ <int key="NSColorSpace">3</int>
62
+ <bytes key="NSWhite">MQA</bytes>
63
+ </object>
64
+ <int key="IBUIBaselineAdjustment">0</int>
65
+ <float key="IBUIMinimumFontSize">10</float>
66
+ <object class="IBUIFontDescription" key="IBUIFontDescription">
67
+ <int key="type">2</int>
68
+ <double key="pointSize">17</double>
69
+ </object>
70
+ <object class="NSFont" key="IBUIFont">
71
+ <string key="NSName">Helvetica-Bold</string>
72
+ <double key="NSSize">17</double>
73
+ <int key="NSfFlags">16</int>
74
+ </object>
75
+ <bool key="IBUIAdjustsFontSizeToFit">NO</bool>
76
+ </object>
77
+ <object class="IBUISwitch" id="801003579">
78
+ <reference key="NSNextResponder" ref="672481111"/>
79
+ <int key="NSvFlags">297</int>
80
+ <string key="NSFrame">{{217, 8}, {94, 27}}</string>
81
+ <reference key="NSSuperview" ref="672481111"/>
82
+ <string key="NSReuseIdentifierKey">_NS:9</string>
83
+ <bool key="IBUIOpaque">NO</bool>
84
+ <string key="targetRuntimeIdentifier">IBCocoaTouchFramework</string>
85
+ <int key="IBUIContentHorizontalAlignment">0</int>
86
+ <int key="IBUIContentVerticalAlignment">0</int>
87
+ <bool key="IBUIOn">YES</bool>
88
+ </object>
89
+ </array>
90
+ <string key="NSFrameSize">{320, 43}</string>
91
+ <reference key="NSSuperview" ref="310994250"/>
92
+ <reference key="NSNextKeyView" ref="165861018"/>
93
+ <string key="NSReuseIdentifierKey">_NS:11</string>
94
+ <object class="NSColor" key="IBUIBackgroundColor">
95
+ <int key="NSColorSpace">3</int>
96
+ <bytes key="NSWhite">MCAwAA</bytes>
97
+ </object>
98
+ <bool key="IBUIOpaque">NO</bool>
99
+ <bool key="IBUIClipsSubviews">YES</bool>
100
+ <int key="IBUIContentMode">4</int>
101
+ <bool key="IBUIMultipleTouchEnabled">YES</bool>
102
+ <string key="targetRuntimeIdentifier">IBCocoaTouchFramework</string>
103
+ </object>
104
+ </array>
105
+ <string key="NSFrameSize">{320, 44}</string>
106
+ <reference key="NSSuperview"/>
107
+ <reference key="NSNextKeyView" ref="672481111"/>
108
+ <string key="NSReuseIdentifierKey">_NS:9</string>
109
+ <string key="targetRuntimeIdentifier">IBCocoaTouchFramework</string>
110
+ <int key="IBUISelectionStyle">0</int>
111
+ <reference key="IBUIContentView" ref="672481111"/>
112
+ </object>
113
+ </array>
114
+ <object class="IBObjectContainer" key="IBDocument.Objects">
115
+ <array class="NSMutableArray" key="connectionRecords">
116
+ <object class="IBConnectionRecord">
117
+ <object class="IBCocoaTouchOutletConnection" key="connection">
118
+ <string key="label">_flagTableViewCell</string>
119
+ <reference key="source" ref="841351856"/>
120
+ <reference key="destination" ref="310994250"/>
121
+ </object>
122
+ <int key="connectionID">7</int>
123
+ </object>
124
+ <object class="IBConnectionRecord">
125
+ <object class="IBCocoaTouchOutletConnection" key="connection">
126
+ <string key="label">_label</string>
127
+ <reference key="source" ref="310994250"/>
128
+ <reference key="destination" ref="165861018"/>
129
+ </object>
130
+ <int key="connectionID">5</int>
131
+ </object>
132
+ <object class="IBConnectionRecord">
133
+ <object class="IBCocoaTouchOutletConnection" key="connection">
134
+ <string key="label">_toggle</string>
135
+ <reference key="source" ref="310994250"/>
136
+ <reference key="destination" ref="801003579"/>
137
+ </object>
138
+ <int key="connectionID">6</int>
139
+ </object>
140
+ </array>
141
+ <object class="IBMutableOrderedSet" key="objectRecords">
142
+ <array key="orderedObjects">
143
+ <object class="IBObjectRecord">
144
+ <int key="objectID">0</int>
145
+ <array key="object" id="0"/>
146
+ <reference key="children" ref="1000"/>
147
+ <nil key="parent"/>
148
+ </object>
149
+ <object class="IBObjectRecord">
150
+ <int key="objectID">-1</int>
151
+ <reference key="object" ref="841351856"/>
152
+ <reference key="parent" ref="0"/>
153
+ <string key="objectName">File's Owner</string>
154
+ </object>
155
+ <object class="IBObjectRecord">
156
+ <int key="objectID">-2</int>
157
+ <reference key="object" ref="371349661"/>
158
+ <reference key="parent" ref="0"/>
159
+ </object>
160
+ <object class="IBObjectRecord">
161
+ <int key="objectID">2</int>
162
+ <reference key="object" ref="310994250"/>
163
+ <array class="NSMutableArray" key="children">
164
+ <reference ref="801003579"/>
165
+ <reference ref="165861018"/>
166
+ </array>
167
+ <reference key="parent" ref="0"/>
168
+ </object>
169
+ <object class="IBObjectRecord">
170
+ <int key="objectID">3</int>
171
+ <reference key="object" ref="165861018"/>
172
+ <reference key="parent" ref="310994250"/>
173
+ </object>
174
+ <object class="IBObjectRecord">
175
+ <int key="objectID">4</int>
176
+ <reference key="object" ref="801003579"/>
177
+ <reference key="parent" ref="310994250"/>
178
+ </object>
179
+ </array>
180
+ </object>
181
+ <dictionary class="NSMutableDictionary" key="flattenedProperties">
182
+ <string key="-1.CustomClassName">EditorBaseController</string>
183
+ <string key="-1.IBPluginDependency">com.apple.InterfaceBuilder.IBCocoaTouchPlugin</string>
184
+ <string key="-2.CustomClassName">UIResponder</string>
185
+ <string key="-2.IBPluginDependency">com.apple.InterfaceBuilder.IBCocoaTouchPlugin</string>
186
+ <string key="2.CustomClassName">EditFlagTableViewCell</string>
187
+ <string key="2.IBPluginDependency">com.apple.InterfaceBuilder.IBCocoaTouchPlugin</string>
188
+ <string key="3.IBPluginDependency">com.apple.InterfaceBuilder.IBCocoaTouchPlugin</string>
189
+ <string key="4.IBPluginDependency">com.apple.InterfaceBuilder.IBCocoaTouchPlugin</string>
190
+ </dictionary>
191
+ <dictionary class="NSMutableDictionary" key="unlocalizedProperties"/>
192
+ <nil key="activeLocalization"/>
193
+ <dictionary class="NSMutableDictionary" key="localizations"/>
194
+ <nil key="sourceID"/>
195
+ <int key="maxID">7</int>
196
+ </object>
197
+ <object class="IBClassDescriber" key="IBDocument.Classes"/>
198
+ <int key="IBDocument.localizationMode">0</int>
199
+ <string key="IBDocument.TargetRuntimeIdentifier">IBCocoaTouchFramework</string>
200
+ <object class="NSMutableDictionary" key="IBDocument.PluginDeclaredDependencyDefaults">
201
+ <string key="NS.key.0">com.apple.InterfaceBuilder.CocoaTouchPlugin.iPhoneOS</string>
202
+ <real value="1296" key="NS.object.0"/>
203
+ </object>
204
+ <bool key="IBDocument.PluginDeclaredDependenciesTrackSystemTargetVersion">YES</bool>
205
+ <int key="IBDocument.defaultPropertyAccessControl">3</int>
206
+ <string key="IBCocoaTouchPluginVersion">1179</string>
207
+ </data>
208
+ </archive>
local-test-freerdp-full-01/afc-freerdp/client/iOS/Resources/EditSecretTextTableViewCell.xib ADDED
@@ -0,0 +1,288 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <?xml version="1.0" encoding="UTF-8"?>
2
+ <archive type="com.apple.InterfaceBuilder3.CocoaTouch.XIB" version="8.00">
3
+ <data>
4
+ <int key="IBDocument.SystemTarget">1296</int>
5
+ <string key="IBDocument.SystemVersion">11D50b</string>
6
+ <string key="IBDocument.InterfaceBuilderVersion">2182</string>
7
+ <string key="IBDocument.AppKitVersion">1138.32</string>
8
+ <string key="IBDocument.HIToolboxVersion">568.00</string>
9
+ <object class="NSMutableDictionary" key="IBDocument.PluginVersions">
10
+ <string key="NS.key.0">com.apple.InterfaceBuilder.IBCocoaTouchPlugin</string>
11
+ <string key="NS.object.0">1179</string>
12
+ </object>
13
+ <array key="IBDocument.IntegratedClassDependencies">
14
+ <string>IBUITableViewCell</string>
15
+ <string>IBUIButton</string>
16
+ <string>IBUILabel</string>
17
+ <string>IBUITextField</string>
18
+ <string>IBProxyObject</string>
19
+ </array>
20
+ <array key="IBDocument.PluginDependencies">
21
+ <string>com.apple.InterfaceBuilder.IBCocoaTouchPlugin</string>
22
+ </array>
23
+ <object class="NSMutableDictionary" key="IBDocument.Metadata">
24
+ <string key="NS.key.0">PluginDependencyRecalculationVersion</string>
25
+ <integer value="1" key="NS.object.0"/>
26
+ </object>
27
+ <array class="NSMutableArray" key="IBDocument.RootObjects" id="1000">
28
+ <object class="IBProxyObject" id="841351856">
29
+ <string key="IBProxiedObjectIdentifier">IBFilesOwner</string>
30
+ <string key="targetRuntimeIdentifier">IBCocoaTouchFramework</string>
31
+ </object>
32
+ <object class="IBProxyObject" id="371349661">
33
+ <string key="IBProxiedObjectIdentifier">IBFirstResponder</string>
34
+ <string key="targetRuntimeIdentifier">IBCocoaTouchFramework</string>
35
+ </object>
36
+ <object class="IBUITableViewCell" id="955840644">
37
+ <reference key="NSNextResponder"/>
38
+ <int key="NSvFlags">292</int>
39
+ <array class="NSMutableArray" key="NSSubviews">
40
+ <object class="IBUIView" id="667249610">
41
+ <reference key="NSNextResponder" ref="955840644"/>
42
+ <int key="NSvFlags">256</int>
43
+ <array class="NSMutableArray" key="NSSubviews">
44
+ <object class="IBUILabel" id="788635611">
45
+ <reference key="NSNextResponder" ref="667249610"/>
46
+ <int key="NSvFlags">300</int>
47
+ <string key="NSFrame">{{10, 10}, {100, 25}}</string>
48
+ <reference key="NSSuperview" ref="667249610"/>
49
+ <reference key="NSNextKeyView" ref="739180901"/>
50
+ <string key="NSReuseIdentifierKey">_NS:9</string>
51
+ <bool key="IBUIOpaque">NO</bool>
52
+ <bool key="IBUIClipsSubviews">YES</bool>
53
+ <int key="IBUIContentMode">7</int>
54
+ <bool key="IBUIUserInteractionEnabled">NO</bool>
55
+ <string key="targetRuntimeIdentifier">IBCocoaTouchFramework</string>
56
+ <string key="IBUIText">Label</string>
57
+ <object class="NSColor" key="IBUITextColor">
58
+ <int key="NSColorSpace">1</int>
59
+ <bytes key="NSRGB">MCAwIDAAA</bytes>
60
+ </object>
61
+ <object class="NSColor" key="IBUIHighlightedColor" id="507782670">
62
+ <int key="NSColorSpace">3</int>
63
+ <bytes key="NSWhite">MQA</bytes>
64
+ </object>
65
+ <int key="IBUIBaselineAdjustment">0</int>
66
+ <float key="IBUIMinimumFontSize">10</float>
67
+ <object class="IBUIFontDescription" key="IBUIFontDescription">
68
+ <int key="type">2</int>
69
+ <double key="pointSize">17</double>
70
+ </object>
71
+ <object class="NSFont" key="IBUIFont">
72
+ <string key="NSName">Helvetica-Bold</string>
73
+ <double key="NSSize">17</double>
74
+ <int key="NSfFlags">16</int>
75
+ </object>
76
+ <bool key="IBUIAdjustsFontSizeToFit">NO</bool>
77
+ </object>
78
+ <object class="IBUITextField" id="739180901">
79
+ <reference key="NSNextResponder" ref="667249610"/>
80
+ <int key="NSvFlags">298</int>
81
+ <string key="NSFrame">{{120, 10}, {150, 25}}</string>
82
+ <reference key="NSSuperview" ref="667249610"/>
83
+ <reference key="NSNextKeyView" ref="932654538"/>
84
+ <string key="NSReuseIdentifierKey">_NS:9</string>
85
+ <bool key="IBUIOpaque">NO</bool>
86
+ <bool key="IBUIClipsSubviews">YES</bool>
87
+ <string key="targetRuntimeIdentifier">IBCocoaTouchFramework</string>
88
+ <int key="IBUIContentVerticalAlignment">0</int>
89
+ <string key="IBUIText">Test</string>
90
+ <object class="NSColor" key="IBUITextColor">
91
+ <int key="NSColorSpace">3</int>
92
+ <bytes key="NSWhite">MAA</bytes>
93
+ <object class="NSColorSpace" key="NSCustomColorSpace">
94
+ <int key="NSID">2</int>
95
+ </object>
96
+ </object>
97
+ <bool key="IBUIAdjustsFontSizeToFit">YES</bool>
98
+ <float key="IBUIMinimumFontSize">17</float>
99
+ <object class="IBUITextInputTraits" key="IBUITextInputTraits">
100
+ <int key="IBUIAutocorrectionType">1</int>
101
+ <bool key="IBUISecureTextEntry">YES</bool>
102
+ <string key="targetRuntimeIdentifier">IBCocoaTouchFramework</string>
103
+ </object>
104
+ <int key="IBUIClearButtonMode">3</int>
105
+ <object class="IBUIFontDescription" key="IBUIFontDescription">
106
+ <int key="type">1</int>
107
+ <double key="pointSize">17</double>
108
+ </object>
109
+ <object class="NSFont" key="IBUIFont">
110
+ <string key="NSName">Helvetica</string>
111
+ <double key="NSSize">17</double>
112
+ <int key="NSfFlags">16</int>
113
+ </object>
114
+ </object>
115
+ <object class="IBUIButton" id="932654538">
116
+ <reference key="NSNextResponder" ref="667249610"/>
117
+ <int key="NSvFlags">297</int>
118
+ <string key="NSFrame">{{270, 10}, {50, 25}}</string>
119
+ <reference key="NSSuperview" ref="667249610"/>
120
+ <reference key="NSNextKeyView"/>
121
+ <string key="NSReuseIdentifierKey">_NS:9</string>
122
+ <bool key="IBUIOpaque">NO</bool>
123
+ <string key="targetRuntimeIdentifier">IBCocoaTouchFramework</string>
124
+ <int key="IBUIContentHorizontalAlignment">0</int>
125
+ <int key="IBUIContentVerticalAlignment">0</int>
126
+ <string key="IBUINormalTitle">Unhide</string>
127
+ <reference key="IBUIHighlightedTitleColor" ref="507782670"/>
128
+ <object class="NSColor" key="IBUINormalTitleColor">
129
+ <int key="NSColorSpace">1</int>
130
+ <bytes key="NSRGB">MC4xOTYwNzg0MzE0IDAuMzA5ODAzOTIxNiAwLjUyMTU2ODYyNzUAA</bytes>
131
+ </object>
132
+ <object class="NSColor" key="IBUINormalTitleShadowColor">
133
+ <int key="NSColorSpace">3</int>
134
+ <bytes key="NSWhite">MC41AA</bytes>
135
+ </object>
136
+ <object class="IBUIFontDescription" key="IBUIFontDescription">
137
+ <int key="type">1</int>
138
+ <double key="pointSize">15</double>
139
+ </object>
140
+ <object class="NSFont" key="IBUIFont">
141
+ <string key="NSName">Helvetica</string>
142
+ <double key="NSSize">15</double>
143
+ <int key="NSfFlags">16</int>
144
+ </object>
145
+ </object>
146
+ </array>
147
+ <string key="NSFrameSize">{320, 43}</string>
148
+ <reference key="NSSuperview" ref="955840644"/>
149
+ <reference key="NSNextKeyView" ref="788635611"/>
150
+ <string key="NSReuseIdentifierKey">_NS:11</string>
151
+ <object class="NSColor" key="IBUIBackgroundColor">
152
+ <int key="NSColorSpace">3</int>
153
+ <bytes key="NSWhite">MCAwAA</bytes>
154
+ </object>
155
+ <bool key="IBUIOpaque">NO</bool>
156
+ <bool key="IBUIClipsSubviews">YES</bool>
157
+ <int key="IBUIContentMode">4</int>
158
+ <bool key="IBUIMultipleTouchEnabled">YES</bool>
159
+ <string key="targetRuntimeIdentifier">IBCocoaTouchFramework</string>
160
+ </object>
161
+ </array>
162
+ <string key="NSFrameSize">{320, 44}</string>
163
+ <reference key="NSSuperview"/>
164
+ <reference key="NSNextKeyView" ref="667249610"/>
165
+ <string key="NSReuseIdentifierKey">_NS:9</string>
166
+ <string key="targetRuntimeIdentifier">IBCocoaTouchFramework</string>
167
+ <int key="IBUISelectionStyle">0</int>
168
+ <reference key="IBUIContentView" ref="667249610"/>
169
+ </object>
170
+ </array>
171
+ <object class="IBObjectContainer" key="IBDocument.Objects">
172
+ <array class="NSMutableArray" key="connectionRecords">
173
+ <object class="IBConnectionRecord">
174
+ <object class="IBCocoaTouchOutletConnection" key="connection">
175
+ <string key="label">_secretTextTableViewCell</string>
176
+ <reference key="source" ref="841351856"/>
177
+ <reference key="destination" ref="955840644"/>
178
+ </object>
179
+ <int key="connectionID">9</int>
180
+ </object>
181
+ <object class="IBConnectionRecord">
182
+ <object class="IBCocoaTouchOutletConnection" key="connection">
183
+ <string key="label">_label</string>
184
+ <reference key="source" ref="955840644"/>
185
+ <reference key="destination" ref="788635611"/>
186
+ </object>
187
+ <int key="connectionID">6</int>
188
+ </object>
189
+ <object class="IBConnectionRecord">
190
+ <object class="IBCocoaTouchOutletConnection" key="connection">
191
+ <string key="label">_textfield</string>
192
+ <reference key="source" ref="955840644"/>
193
+ <reference key="destination" ref="739180901"/>
194
+ </object>
195
+ <int key="connectionID">7</int>
196
+ </object>
197
+ <object class="IBConnectionRecord">
198
+ <object class="IBCocoaTouchOutletConnection" key="connection">
199
+ <string key="label">_unhide_button</string>
200
+ <reference key="source" ref="955840644"/>
201
+ <reference key="destination" ref="932654538"/>
202
+ </object>
203
+ <int key="connectionID">11</int>
204
+ </object>
205
+ <object class="IBConnectionRecord">
206
+ <object class="IBCocoaTouchOutletConnection" key="connection">
207
+ <string key="label">delegate</string>
208
+ <reference key="source" ref="739180901"/>
209
+ <reference key="destination" ref="841351856"/>
210
+ </object>
211
+ <int key="connectionID">12</int>
212
+ </object>
213
+ </array>
214
+ <object class="IBMutableOrderedSet" key="objectRecords">
215
+ <array key="orderedObjects">
216
+ <object class="IBObjectRecord">
217
+ <int key="objectID">0</int>
218
+ <array key="object" id="0"/>
219
+ <reference key="children" ref="1000"/>
220
+ <nil key="parent"/>
221
+ </object>
222
+ <object class="IBObjectRecord">
223
+ <int key="objectID">-1</int>
224
+ <reference key="object" ref="841351856"/>
225
+ <reference key="parent" ref="0"/>
226
+ <string key="objectName">File's Owner</string>
227
+ </object>
228
+ <object class="IBObjectRecord">
229
+ <int key="objectID">-2</int>
230
+ <reference key="object" ref="371349661"/>
231
+ <reference key="parent" ref="0"/>
232
+ </object>
233
+ <object class="IBObjectRecord">
234
+ <int key="objectID">2</int>
235
+ <reference key="object" ref="955840644"/>
236
+ <array class="NSMutableArray" key="children">
237
+ <reference ref="739180901"/>
238
+ <reference ref="788635611"/>
239
+ <reference ref="932654538"/>
240
+ </array>
241
+ <reference key="parent" ref="0"/>
242
+ </object>
243
+ <object class="IBObjectRecord">
244
+ <int key="objectID">3</int>
245
+ <reference key="object" ref="739180901"/>
246
+ <reference key="parent" ref="955840644"/>
247
+ </object>
248
+ <object class="IBObjectRecord">
249
+ <int key="objectID">4</int>
250
+ <reference key="object" ref="788635611"/>
251
+ <reference key="parent" ref="955840644"/>
252
+ </object>
253
+ <object class="IBObjectRecord">
254
+ <int key="objectID">10</int>
255
+ <reference key="object" ref="932654538"/>
256
+ <reference key="parent" ref="955840644"/>
257
+ </object>
258
+ </array>
259
+ </object>
260
+ <dictionary class="NSMutableDictionary" key="flattenedProperties">
261
+ <string key="-1.CustomClassName">EditorBaseController</string>
262
+ <string key="-1.IBPluginDependency">com.apple.InterfaceBuilder.IBCocoaTouchPlugin</string>
263
+ <string key="-2.CustomClassName">UIResponder</string>
264
+ <string key="-2.IBPluginDependency">com.apple.InterfaceBuilder.IBCocoaTouchPlugin</string>
265
+ <string key="10.IBPluginDependency">com.apple.InterfaceBuilder.IBCocoaTouchPlugin</string>
266
+ <string key="2.CustomClassName">EditSecretTextTableViewCell</string>
267
+ <string key="2.IBPluginDependency">com.apple.InterfaceBuilder.IBCocoaTouchPlugin</string>
268
+ <string key="3.IBPluginDependency">com.apple.InterfaceBuilder.IBCocoaTouchPlugin</string>
269
+ <string key="4.IBPluginDependency">com.apple.InterfaceBuilder.IBCocoaTouchPlugin</string>
270
+ </dictionary>
271
+ <dictionary class="NSMutableDictionary" key="unlocalizedProperties"/>
272
+ <nil key="activeLocalization"/>
273
+ <dictionary class="NSMutableDictionary" key="localizations"/>
274
+ <nil key="sourceID"/>
275
+ <int key="maxID">12</int>
276
+ </object>
277
+ <object class="IBClassDescriber" key="IBDocument.Classes"/>
278
+ <int key="IBDocument.localizationMode">0</int>
279
+ <string key="IBDocument.TargetRuntimeIdentifier">IBCocoaTouchFramework</string>
280
+ <object class="NSMutableDictionary" key="IBDocument.PluginDeclaredDependencyDefaults">
281
+ <string key="NS.key.0">com.apple.InterfaceBuilder.CocoaTouchPlugin.iPhoneOS</string>
282
+ <real value="1296" key="NS.object.0"/>
283
+ </object>
284
+ <bool key="IBDocument.PluginDeclaredDependenciesTrackSystemTargetVersion">YES</bool>
285
+ <int key="IBDocument.defaultPropertyAccessControl">3</int>
286
+ <string key="IBCocoaTouchPluginVersion">1179</string>
287
+ </data>
288
+ </archive>
local-test-freerdp-full-01/afc-freerdp/client/iOS/Resources/EditSubEditTableViewCell.xib ADDED
@@ -0,0 +1,179 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <?xml version="1.0" encoding="UTF-8"?>
2
+ <archive type="com.apple.InterfaceBuilder3.CocoaTouch.XIB" version="8.00">
3
+ <data>
4
+ <int key="IBDocument.SystemTarget">1296</int>
5
+ <string key="IBDocument.SystemVersion">11D50b</string>
6
+ <string key="IBDocument.InterfaceBuilderVersion">2182</string>
7
+ <string key="IBDocument.AppKitVersion">1138.32</string>
8
+ <string key="IBDocument.HIToolboxVersion">568.00</string>
9
+ <object class="NSMutableDictionary" key="IBDocument.PluginVersions">
10
+ <string key="NS.key.0">com.apple.InterfaceBuilder.IBCocoaTouchPlugin</string>
11
+ <string key="NS.object.0">1179</string>
12
+ </object>
13
+ <array key="IBDocument.IntegratedClassDependencies">
14
+ <string>IBProxyObject</string>
15
+ <string>IBUILabel</string>
16
+ <string>IBUITableViewCell</string>
17
+ </array>
18
+ <array key="IBDocument.PluginDependencies">
19
+ <string>com.apple.InterfaceBuilder.IBCocoaTouchPlugin</string>
20
+ </array>
21
+ <object class="NSMutableDictionary" key="IBDocument.Metadata">
22
+ <string key="NS.key.0">PluginDependencyRecalculationVersion</string>
23
+ <integer value="1" key="NS.object.0"/>
24
+ </object>
25
+ <array class="NSMutableArray" key="IBDocument.RootObjects" id="1000">
26
+ <object class="IBProxyObject" id="841351856">
27
+ <string key="IBProxiedObjectIdentifier">IBFilesOwner</string>
28
+ <string key="targetRuntimeIdentifier">IBCocoaTouchFramework</string>
29
+ </object>
30
+ <object class="IBProxyObject" id="371349661">
31
+ <string key="IBProxiedObjectIdentifier">IBFirstResponder</string>
32
+ <string key="targetRuntimeIdentifier">IBCocoaTouchFramework</string>
33
+ </object>
34
+ <object class="IBUITableViewCell" id="330133912">
35
+ <reference key="NSNextResponder"/>
36
+ <int key="NSvFlags">292</int>
37
+ <array class="NSMutableArray" key="NSSubviews">
38
+ <object class="IBUIView" id="747305151">
39
+ <reference key="NSNextResponder" ref="330133912"/>
40
+ <int key="NSvFlags">256</int>
41
+ <array class="NSMutableArray" key="NSSubviews">
42
+ <object class="IBUILabel" id="800335451">
43
+ <reference key="NSNextResponder" ref="747305151"/>
44
+ <int key="NSvFlags">298</int>
45
+ <string key="NSFrame">{{10, 10}, {270, 25}}</string>
46
+ <reference key="NSSuperview" ref="747305151"/>
47
+ <string key="NSReuseIdentifierKey">_NS:9</string>
48
+ <bool key="IBUIOpaque">NO</bool>
49
+ <bool key="IBUIClipsSubviews">YES</bool>
50
+ <int key="IBUIContentMode">7</int>
51
+ <bool key="IBUIUserInteractionEnabled">NO</bool>
52
+ <string key="targetRuntimeIdentifier">IBCocoaTouchFramework</string>
53
+ <string key="IBUIText">Label</string>
54
+ <object class="NSColor" key="IBUITextColor">
55
+ <int key="NSColorSpace">1</int>
56
+ <bytes key="NSRGB">MCAwIDAAA</bytes>
57
+ </object>
58
+ <object class="NSColor" key="IBUIHighlightedColor">
59
+ <int key="NSColorSpace">3</int>
60
+ <bytes key="NSWhite">MQA</bytes>
61
+ </object>
62
+ <int key="IBUIBaselineAdjustment">0</int>
63
+ <float key="IBUIMinimumFontSize">10</float>
64
+ <object class="IBUIFontDescription" key="IBUIFontDescription">
65
+ <int key="type">2</int>
66
+ <double key="pointSize">17</double>
67
+ </object>
68
+ <object class="NSFont" key="IBUIFont">
69
+ <string key="NSName">Helvetica-Bold</string>
70
+ <double key="NSSize">17</double>
71
+ <int key="NSfFlags">16</int>
72
+ </object>
73
+ <bool key="IBUIAdjustsFontSizeToFit">NO</bool>
74
+ </object>
75
+ </array>
76
+ <string key="NSFrameSize">{300, 43}</string>
77
+ <reference key="NSSuperview" ref="330133912"/>
78
+ <reference key="NSNextKeyView" ref="800335451"/>
79
+ <string key="NSReuseIdentifierKey">_NS:11</string>
80
+ <object class="NSColor" key="IBUIBackgroundColor">
81
+ <int key="NSColorSpace">3</int>
82
+ <bytes key="NSWhite">MCAwAA</bytes>
83
+ </object>
84
+ <bool key="IBUIOpaque">NO</bool>
85
+ <bool key="IBUIClipsSubviews">YES</bool>
86
+ <int key="IBUIContentMode">4</int>
87
+ <bool key="IBUIMultipleTouchEnabled">YES</bool>
88
+ <string key="targetRuntimeIdentifier">IBCocoaTouchFramework</string>
89
+ </object>
90
+ </array>
91
+ <string key="NSFrameSize">{320, 44}</string>
92
+ <reference key="NSSuperview"/>
93
+ <reference key="NSNextKeyView" ref="747305151"/>
94
+ <string key="NSReuseIdentifierKey">_NS:9</string>
95
+ <string key="targetRuntimeIdentifier">IBCocoaTouchFramework</string>
96
+ <int key="IBUIAccessoryType">1</int>
97
+ <reference key="IBUIContentView" ref="747305151"/>
98
+ </object>
99
+ </array>
100
+ <object class="IBObjectContainer" key="IBDocument.Objects">
101
+ <array class="NSMutableArray" key="connectionRecords">
102
+ <object class="IBConnectionRecord">
103
+ <object class="IBCocoaTouchOutletConnection" key="connection">
104
+ <string key="label">_subEditTableViewCell</string>
105
+ <reference key="source" ref="841351856"/>
106
+ <reference key="destination" ref="330133912"/>
107
+ </object>
108
+ <int key="connectionID">5</int>
109
+ </object>
110
+ <object class="IBConnectionRecord">
111
+ <object class="IBCocoaTouchOutletConnection" key="connection">
112
+ <string key="label">_label</string>
113
+ <reference key="source" ref="330133912"/>
114
+ <reference key="destination" ref="800335451"/>
115
+ </object>
116
+ <int key="connectionID">4</int>
117
+ </object>
118
+ </array>
119
+ <object class="IBMutableOrderedSet" key="objectRecords">
120
+ <array key="orderedObjects">
121
+ <object class="IBObjectRecord">
122
+ <int key="objectID">0</int>
123
+ <array key="object" id="0"/>
124
+ <reference key="children" ref="1000"/>
125
+ <nil key="parent"/>
126
+ </object>
127
+ <object class="IBObjectRecord">
128
+ <int key="objectID">-1</int>
129
+ <reference key="object" ref="841351856"/>
130
+ <reference key="parent" ref="0"/>
131
+ <string key="objectName">File's Owner</string>
132
+ </object>
133
+ <object class="IBObjectRecord">
134
+ <int key="objectID">-2</int>
135
+ <reference key="object" ref="371349661"/>
136
+ <reference key="parent" ref="0"/>
137
+ </object>
138
+ <object class="IBObjectRecord">
139
+ <int key="objectID">2</int>
140
+ <reference key="object" ref="330133912"/>
141
+ <array class="NSMutableArray" key="children">
142
+ <reference ref="800335451"/>
143
+ </array>
144
+ <reference key="parent" ref="0"/>
145
+ </object>
146
+ <object class="IBObjectRecord">
147
+ <int key="objectID">3</int>
148
+ <reference key="object" ref="800335451"/>
149
+ <reference key="parent" ref="330133912"/>
150
+ </object>
151
+ </array>
152
+ </object>
153
+ <dictionary class="NSMutableDictionary" key="flattenedProperties">
154
+ <string key="-1.CustomClassName">EditorBaseController</string>
155
+ <string key="-1.IBPluginDependency">com.apple.InterfaceBuilder.IBCocoaTouchPlugin</string>
156
+ <string key="-2.CustomClassName">UIResponder</string>
157
+ <string key="-2.IBPluginDependency">com.apple.InterfaceBuilder.IBCocoaTouchPlugin</string>
158
+ <string key="2.CustomClassName">EditSubEditTableViewCell</string>
159
+ <string key="2.IBPluginDependency">com.apple.InterfaceBuilder.IBCocoaTouchPlugin</string>
160
+ <string key="3.IBPluginDependency">com.apple.InterfaceBuilder.IBCocoaTouchPlugin</string>
161
+ </dictionary>
162
+ <dictionary class="NSMutableDictionary" key="unlocalizedProperties"/>
163
+ <nil key="activeLocalization"/>
164
+ <dictionary class="NSMutableDictionary" key="localizations"/>
165
+ <nil key="sourceID"/>
166
+ <int key="maxID">5</int>
167
+ </object>
168
+ <object class="IBClassDescriber" key="IBDocument.Classes"/>
169
+ <int key="IBDocument.localizationMode">0</int>
170
+ <string key="IBDocument.TargetRuntimeIdentifier">IBCocoaTouchFramework</string>
171
+ <object class="NSMutableDictionary" key="IBDocument.PluginDeclaredDependencyDefaults">
172
+ <string key="NS.key.0">com.apple.InterfaceBuilder.CocoaTouchPlugin.iPhoneOS</string>
173
+ <real value="1296" key="NS.object.0"/>
174
+ </object>
175
+ <bool key="IBDocument.PluginDeclaredDependenciesTrackSystemTargetVersion">YES</bool>
176
+ <int key="IBDocument.defaultPropertyAccessControl">3</int>
177
+ <string key="IBCocoaTouchPluginVersion">1179</string>
178
+ </data>
179
+ </archive>
local-test-freerdp-full-01/afc-freerdp/client/iOS/Resources/MainWindow.xib ADDED
@@ -0,0 +1,36 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <?xml version="1.0" encoding="UTF-8" standalone="no"?>
2
+ <document type="com.apple.InterfaceBuilder3.CocoaTouch.XIB" version="3.0" toolsVersion="10116" systemVersion="15G31" targetRuntime="iOS.CocoaTouch" propertyAccessControl="none">
3
+ <dependencies>
4
+ <deployment version="2352" identifier="iOS"/>
5
+ <plugIn identifier="com.apple.InterfaceBuilder.IBCocoaTouchPlugin" version="10085"/>
6
+ </dependencies>
7
+ <objects>
8
+ <placeholder placeholderIdentifier="IBFilesOwner" id="-1" userLabel="File's Owner" customClass="UIApplication">
9
+ <connections>
10
+ <outlet property="delegate" destination="11" id="12"/>
11
+ </connections>
12
+ </placeholder>
13
+ <placeholder placeholderIdentifier="IBFirstResponder" id="-2" customClass="UIResponder"/>
14
+ <customObject id="11" userLabel="AppDelegate" customClass="AppDelegate">
15
+ <connections>
16
+ <outlet property="tabBarController" destination="4" id="14"/>
17
+ <outlet property="window" destination="2" id="13"/>
18
+ </connections>
19
+ </customObject>
20
+ <window opaque="NO" clearsContextBeforeDrawing="NO" contentMode="scaleToFill" id="2">
21
+ <rect key="frame" x="0.0" y="0.0" width="320" height="480"/>
22
+ <autoresizingMask key="autoresizingMask" flexibleMaxX="YES" flexibleMaxY="YES"/>
23
+ <color key="backgroundColor" red="1" green="1" blue="1" alpha="1" colorSpace="calibratedRGB"/>
24
+ <freeformSimulatedSizeMetrics key="simulatedDestinationMetrics"/>
25
+ </window>
26
+ <tabBarController definesPresentationContext="YES" id="4" customClass="MainTabBarController">
27
+ <extendedEdge key="edgesForExtendedLayout"/>
28
+ <simulatedTabBarMetrics key="simulatedBottomBarMetrics"/>
29
+ <tabBar key="tabBar" contentMode="scaleToFill" id="5">
30
+ <rect key="frame" x="0.0" y="431" width="320" height="49"/>
31
+ <autoresizingMask key="autoresizingMask" widthSizable="YES" flexibleMinY="YES"/>
32
+ <color key="backgroundColor" white="0.0" alpha="0.0" colorSpace="calibratedWhite"/>
33
+ </tabBar>
34
+ </tabBarController>
35
+ </objects>
36
+ </document>
local-test-freerdp-full-01/afc-freerdp/client/iOS/Resources/VerifyCertificateView.xib ADDED
@@ -0,0 +1,386 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <?xml version="1.0" encoding="UTF-8"?>
2
+ <archive type="com.apple.InterfaceBuilder3.CocoaTouch.XIB" version="8.00">
3
+ <data>
4
+ <int key="IBDocument.SystemTarget">1296</int>
5
+ <string key="IBDocument.SystemVersion">11D50b</string>
6
+ <string key="IBDocument.InterfaceBuilderVersion">2182</string>
7
+ <string key="IBDocument.AppKitVersion">1138.32</string>
8
+ <string key="IBDocument.HIToolboxVersion">568.00</string>
9
+ <object class="NSMutableDictionary" key="IBDocument.PluginVersions">
10
+ <string key="NS.key.0">com.apple.InterfaceBuilder.IBCocoaTouchPlugin</string>
11
+ <string key="NS.object.0">1179</string>
12
+ </object>
13
+ <array key="IBDocument.IntegratedClassDependencies">
14
+ <string>IBUIButton</string>
15
+ <string>IBUIView</string>
16
+ <string>IBUILabel</string>
17
+ <string>IBProxyObject</string>
18
+ </array>
19
+ <array key="IBDocument.PluginDependencies">
20
+ <string>com.apple.InterfaceBuilder.IBCocoaTouchPlugin</string>
21
+ </array>
22
+ <object class="NSMutableDictionary" key="IBDocument.Metadata">
23
+ <string key="NS.key.0">PluginDependencyRecalculationVersion</string>
24
+ <integer value="1" key="NS.object.0"/>
25
+ </object>
26
+ <array class="NSMutableArray" key="IBDocument.RootObjects" id="1000">
27
+ <object class="IBProxyObject" id="372490531">
28
+ <string key="IBProxiedObjectIdentifier">IBFilesOwner</string>
29
+ <string key="targetRuntimeIdentifier">IBCocoaTouchFramework</string>
30
+ </object>
31
+ <object class="IBProxyObject" id="975951072">
32
+ <string key="IBProxiedObjectIdentifier">IBFirstResponder</string>
33
+ <string key="targetRuntimeIdentifier">IBCocoaTouchFramework</string>
34
+ </object>
35
+ <object class="IBUIView" id="191373211">
36
+ <reference key="NSNextResponder"/>
37
+ <int key="NSvFlags">319</int>
38
+ <array class="NSMutableArray" key="NSSubviews">
39
+ <object class="IBUIButton" id="683207246">
40
+ <reference key="NSNextResponder" ref="191373211"/>
41
+ <int key="NSvFlags">291</int>
42
+ <string key="NSFrame">{{152, 237}, {95, 37}}</string>
43
+ <reference key="NSSuperview" ref="191373211"/>
44
+ <reference key="NSWindow"/>
45
+ <bool key="IBUIOpaque">NO</bool>
46
+ <string key="targetRuntimeIdentifier">IBCocoaTouchFramework</string>
47
+ <int key="IBUIContentHorizontalAlignment">0</int>
48
+ <int key="IBUIContentVerticalAlignment">0</int>
49
+ <int key="IBUIButtonType">1</int>
50
+ <string key="IBUINormalTitle">No</string>
51
+ <object class="NSColor" key="IBUIHighlightedTitleColor" id="1032157260">
52
+ <int key="NSColorSpace">3</int>
53
+ <bytes key="NSWhite">MQA</bytes>
54
+ </object>
55
+ <object class="NSColor" key="IBUINormalTitleColor">
56
+ <int key="NSColorSpace">1</int>
57
+ <bytes key="NSRGB">MC4xOTYwNzg0MzQ2IDAuMzA5ODAzOTMyOSAwLjUyMTU2ODY1NgA</bytes>
58
+ </object>
59
+ <object class="NSColor" key="IBUINormalTitleShadowColor" id="417359316">
60
+ <int key="NSColorSpace">3</int>
61
+ <bytes key="NSWhite">MC41AA</bytes>
62
+ </object>
63
+ <object class="IBUIFontDescription" key="IBUIFontDescription" id="733176724">
64
+ <string key="name">Helvetica-Bold</string>
65
+ <string key="family">Helvetica</string>
66
+ <int key="traits">2</int>
67
+ <double key="pointSize">15</double>
68
+ </object>
69
+ <object class="NSFont" key="IBUIFont" id="197322835">
70
+ <string key="NSName">Helvetica-Bold</string>
71
+ <double key="NSSize">15</double>
72
+ <int key="NSfFlags">16</int>
73
+ </object>
74
+ </object>
75
+ <object class="IBUIButton" id="985957052">
76
+ <reference key="NSNextResponder" ref="191373211"/>
77
+ <int key="NSvFlags">294</int>
78
+ <string key="NSFrame">{{20, 237}, {95, 37}}</string>
79
+ <reference key="NSSuperview" ref="191373211"/>
80
+ <reference key="NSWindow"/>
81
+ <reference key="NSNextKeyView" ref="683207246"/>
82
+ <bool key="IBUIOpaque">NO</bool>
83
+ <string key="targetRuntimeIdentifier">IBCocoaTouchFramework</string>
84
+ <int key="IBUIContentHorizontalAlignment">0</int>
85
+ <int key="IBUIContentVerticalAlignment">0</int>
86
+ <int key="IBUIButtonType">1</int>
87
+ <string key="IBUINormalTitle">Yes</string>
88
+ <reference key="IBUIHighlightedTitleColor" ref="1032157260"/>
89
+ <object class="NSColor" key="IBUINormalTitleColor">
90
+ <int key="NSColorSpace">1</int>
91
+ <bytes key="NSRGB">MC4xOTYwNzg0MzQ2IDAuMzA5ODAzOTMyOSAwLjUyMTU2ODY1NgA</bytes>
92
+ </object>
93
+ <reference key="IBUINormalTitleShadowColor" ref="417359316"/>
94
+ <reference key="IBUIFontDescription" ref="733176724"/>
95
+ <reference key="IBUIFont" ref="197322835"/>
96
+ </object>
97
+ <object class="IBUILabel" id="830896437">
98
+ <reference key="NSNextResponder" ref="191373211"/>
99
+ <int key="NSvFlags">290</int>
100
+ <string key="NSFrame">{{20, 20}, {227, 94}}</string>
101
+ <reference key="NSSuperview" ref="191373211"/>
102
+ <reference key="NSWindow"/>
103
+ <reference key="NSNextKeyView" ref="485908522"/>
104
+ <bool key="IBUIOpaque">NO</bool>
105
+ <bool key="IBUIClipsSubviews">YES</bool>
106
+ <int key="IBUIContentMode">7</int>
107
+ <bool key="IBUIUserInteractionEnabled">NO</bool>
108
+ <string key="targetRuntimeIdentifier">IBCocoaTouchFramework</string>
109
+ <string key="IBUIText">The identity of the remote computer cannot be verified. Do you want to connect anyway?</string>
110
+ <object class="NSColor" key="IBUITextColor" id="232026869">
111
+ <int key="NSColorSpace">1</int>
112
+ <bytes key="NSRGB">MCAwIDAAA</bytes>
113
+ </object>
114
+ <nil key="IBUIHighlightedColor"/>
115
+ <int key="IBUIBaselineAdjustment">1</int>
116
+ <float key="IBUIMinimumFontSize">10</float>
117
+ <int key="IBUINumberOfLines">4</int>
118
+ <int key="IBUILineBreakMode">0</int>
119
+ <object class="IBUIFontDescription" key="IBUIFontDescription" id="820193683">
120
+ <int key="type">1</int>
121
+ <double key="pointSize">17</double>
122
+ </object>
123
+ <object class="NSFont" key="IBUIFont" id="784496446">
124
+ <string key="NSName">Helvetica</string>
125
+ <double key="NSSize">17</double>
126
+ <int key="NSfFlags">16</int>
127
+ </object>
128
+ </object>
129
+ <object class="IBUILabel" id="485908522">
130
+ <reference key="NSNextResponder" ref="191373211"/>
131
+ <int key="NSvFlags">294</int>
132
+ <string key="NSFrame">{{20, 136}, {59, 21}}</string>
133
+ <reference key="NSSuperview" ref="191373211"/>
134
+ <reference key="NSWindow"/>
135
+ <reference key="NSNextKeyView" ref="23899749"/>
136
+ <string key="NSReuseIdentifierKey">_NS:9</string>
137
+ <bool key="IBUIOpaque">NO</bool>
138
+ <bool key="IBUIClipsSubviews">YES</bool>
139
+ <int key="IBUIContentMode">7</int>
140
+ <bool key="IBUIUserInteractionEnabled">NO</bool>
141
+ <string key="targetRuntimeIdentifier">IBCocoaTouchFramework</string>
142
+ <string key="IBUIText">Issuer:</string>
143
+ <reference key="IBUITextColor" ref="232026869"/>
144
+ <nil key="IBUIHighlightedColor"/>
145
+ <int key="IBUIBaselineAdjustment">0</int>
146
+ <float key="IBUIMinimumFontSize">10</float>
147
+ <reference key="IBUIFontDescription" ref="820193683"/>
148
+ <reference key="IBUIFont" ref="784496446"/>
149
+ </object>
150
+ <object class="IBUILabel" id="23899749">
151
+ <reference key="NSNextResponder" ref="191373211"/>
152
+ <int key="NSvFlags">291</int>
153
+ <string key="NSFrame">{{87, 136}, {160, 21}}</string>
154
+ <reference key="NSSuperview" ref="191373211"/>
155
+ <reference key="NSWindow"/>
156
+ <reference key="NSNextKeyView" ref="985957052"/>
157
+ <string key="NSReuseIdentifierKey">_NS:9</string>
158
+ <bool key="IBUIOpaque">NO</bool>
159
+ <bool key="IBUIClipsSubviews">YES</bool>
160
+ <int key="IBUIContentMode">7</int>
161
+ <bool key="IBUIUserInteractionEnabled">NO</bool>
162
+ <string key="targetRuntimeIdentifier">IBCocoaTouchFramework</string>
163
+ <string key="IBUIText">Label</string>
164
+ <reference key="IBUITextColor" ref="232026869"/>
165
+ <nil key="IBUIHighlightedColor"/>
166
+ <int key="IBUIBaselineAdjustment">0</int>
167
+ <float key="IBUIMinimumFontSize">10</float>
168
+ <reference key="IBUIFontDescription" ref="820193683"/>
169
+ <reference key="IBUIFont" ref="784496446"/>
170
+ </object>
171
+ </array>
172
+ <string key="NSFrameSize">{267, 294}</string>
173
+ <reference key="NSSuperview"/>
174
+ <reference key="NSWindow"/>
175
+ <reference key="NSNextKeyView" ref="830896437"/>
176
+ <object class="NSColor" key="IBUIBackgroundColor">
177
+ <int key="NSColorSpace">3</int>
178
+ <bytes key="NSWhite">MQA</bytes>
179
+ <object class="NSColorSpace" key="NSCustomColorSpace">
180
+ <int key="NSID">2</int>
181
+ </object>
182
+ </object>
183
+ <object class="IBUISimulatedSizeMetrics" key="IBUISimulatedDestinationMetrics">
184
+ <string key="IBUISimulatedSizeMetricsClass">IBUISimulatedFreeformSizeMetricsSentinel</string>
185
+ <string key="IBUIDisplayName">Freeform</string>
186
+ </object>
187
+ <string key="targetRuntimeIdentifier">IBCocoaTouchFramework</string>
188
+ </object>
189
+ </array>
190
+ <object class="IBObjectContainer" key="IBDocument.Objects">
191
+ <array class="NSMutableArray" key="connectionRecords">
192
+ <object class="IBConnectionRecord">
193
+ <object class="IBCocoaTouchOutletConnection" key="connection">
194
+ <string key="label">view</string>
195
+ <reference key="source" ref="372490531"/>
196
+ <reference key="destination" ref="191373211"/>
197
+ </object>
198
+ <int key="connectionID">8</int>
199
+ </object>
200
+ <object class="IBConnectionRecord">
201
+ <object class="IBCocoaTouchOutletConnection" key="connection">
202
+ <string key="label">_btn_accept</string>
203
+ <reference key="source" ref="372490531"/>
204
+ <reference key="destination" ref="985957052"/>
205
+ </object>
206
+ <int key="connectionID">9</int>
207
+ </object>
208
+ <object class="IBConnectionRecord">
209
+ <object class="IBCocoaTouchOutletConnection" key="connection">
210
+ <string key="label">_btn_decline</string>
211
+ <reference key="source" ref="372490531"/>
212
+ <reference key="destination" ref="683207246"/>
213
+ </object>
214
+ <int key="connectionID">10</int>
215
+ </object>
216
+ <object class="IBConnectionRecord">
217
+ <object class="IBCocoaTouchOutletConnection" key="connection">
218
+ <string key="label">_label_issuer</string>
219
+ <reference key="source" ref="372490531"/>
220
+ <reference key="destination" ref="23899749"/>
221
+ </object>
222
+ <int key="connectionID">11</int>
223
+ </object>
224
+ <object class="IBConnectionRecord">
225
+ <object class="IBCocoaTouchOutletConnection" key="connection">
226
+ <string key="label">_label_message</string>
227
+ <reference key="source" ref="372490531"/>
228
+ <reference key="destination" ref="830896437"/>
229
+ </object>
230
+ <int key="connectionID">14</int>
231
+ </object>
232
+ <object class="IBConnectionRecord">
233
+ <object class="IBCocoaTouchOutletConnection" key="connection">
234
+ <string key="label">_label_for_issuer</string>
235
+ <reference key="source" ref="372490531"/>
236
+ <reference key="destination" ref="485908522"/>
237
+ </object>
238
+ <int key="connectionID">16</int>
239
+ </object>
240
+ <object class="IBConnectionRecord">
241
+ <object class="IBCocoaTouchEventConnection" key="connection">
242
+ <string key="label">declinePressed:</string>
243
+ <reference key="source" ref="683207246"/>
244
+ <reference key="destination" ref="372490531"/>
245
+ <int key="IBEventType">7</int>
246
+ </object>
247
+ <int key="connectionID">13</int>
248
+ </object>
249
+ <object class="IBConnectionRecord">
250
+ <object class="IBCocoaTouchEventConnection" key="connection">
251
+ <string key="label">acceptPressed:</string>
252
+ <reference key="source" ref="985957052"/>
253
+ <reference key="destination" ref="372490531"/>
254
+ <int key="IBEventType">7</int>
255
+ </object>
256
+ <int key="connectionID">12</int>
257
+ </object>
258
+ </array>
259
+ <object class="IBMutableOrderedSet" key="objectRecords">
260
+ <array key="orderedObjects">
261
+ <object class="IBObjectRecord">
262
+ <int key="objectID">0</int>
263
+ <array key="object" id="0"/>
264
+ <reference key="children" ref="1000"/>
265
+ <nil key="parent"/>
266
+ </object>
267
+ <object class="IBObjectRecord">
268
+ <int key="objectID">1</int>
269
+ <reference key="object" ref="191373211"/>
270
+ <array class="NSMutableArray" key="children">
271
+ <reference ref="830896437"/>
272
+ <reference ref="485908522"/>
273
+ <reference ref="23899749"/>
274
+ <reference ref="985957052"/>
275
+ <reference ref="683207246"/>
276
+ </array>
277
+ <reference key="parent" ref="0"/>
278
+ </object>
279
+ <object class="IBObjectRecord">
280
+ <int key="objectID">-1</int>
281
+ <reference key="object" ref="372490531"/>
282
+ <reference key="parent" ref="0"/>
283
+ <string key="objectName">File's Owner</string>
284
+ </object>
285
+ <object class="IBObjectRecord">
286
+ <int key="objectID">-2</int>
287
+ <reference key="object" ref="975951072"/>
288
+ <reference key="parent" ref="0"/>
289
+ </object>
290
+ <object class="IBObjectRecord">
291
+ <int key="objectID">3</int>
292
+ <reference key="object" ref="683207246"/>
293
+ <reference key="parent" ref="191373211"/>
294
+ </object>
295
+ <object class="IBObjectRecord">
296
+ <int key="objectID">4</int>
297
+ <reference key="object" ref="985957052"/>
298
+ <reference key="parent" ref="191373211"/>
299
+ </object>
300
+ <object class="IBObjectRecord">
301
+ <int key="objectID">5</int>
302
+ <reference key="object" ref="830896437"/>
303
+ <reference key="parent" ref="191373211"/>
304
+ </object>
305
+ <object class="IBObjectRecord">
306
+ <int key="objectID">6</int>
307
+ <reference key="object" ref="485908522"/>
308
+ <reference key="parent" ref="191373211"/>
309
+ </object>
310
+ <object class="IBObjectRecord">
311
+ <int key="objectID">7</int>
312
+ <reference key="object" ref="23899749"/>
313
+ <reference key="parent" ref="191373211"/>
314
+ </object>
315
+ </array>
316
+ </object>
317
+ <dictionary class="NSMutableDictionary" key="flattenedProperties">
318
+ <string key="-1.CustomClassName">VerifyCertificateController</string>
319
+ <string key="-1.IBPluginDependency">com.apple.InterfaceBuilder.IBCocoaTouchPlugin</string>
320
+ <string key="-2.CustomClassName">UIResponder</string>
321
+ <string key="-2.IBPluginDependency">com.apple.InterfaceBuilder.IBCocoaTouchPlugin</string>
322
+ <string key="1.IBPluginDependency">com.apple.InterfaceBuilder.IBCocoaTouchPlugin</string>
323
+ <string key="3.IBPluginDependency">com.apple.InterfaceBuilder.IBCocoaTouchPlugin</string>
324
+ <string key="4.IBPluginDependency">com.apple.InterfaceBuilder.IBCocoaTouchPlugin</string>
325
+ <string key="5.IBPluginDependency">com.apple.InterfaceBuilder.IBCocoaTouchPlugin</string>
326
+ <string key="6.IBPluginDependency">com.apple.InterfaceBuilder.IBCocoaTouchPlugin</string>
327
+ <string key="7.IBPluginDependency">com.apple.InterfaceBuilder.IBCocoaTouchPlugin</string>
328
+ </dictionary>
329
+ <dictionary class="NSMutableDictionary" key="unlocalizedProperties"/>
330
+ <nil key="activeLocalization"/>
331
+ <dictionary class="NSMutableDictionary" key="localizations"/>
332
+ <nil key="sourceID"/>
333
+ <int key="maxID">16</int>
334
+ </object>
335
+ <object class="IBClassDescriber" key="IBDocument.Classes">
336
+ <array class="NSMutableArray" key="referencedPartialClassDescriptions">
337
+ <object class="IBPartialClassDescription">
338
+ <string key="className">VerifyCertificateController</string>
339
+ <string key="superclassName">UIViewController</string>
340
+ <dictionary class="NSMutableDictionary" key="outlets">
341
+ <string key="_btn_accept">UIButton</string>
342
+ <string key="_btn_decline">UIButton</string>
343
+ <string key="_label_for_issuer">UILabel</string>
344
+ <string key="_label_issuer">UILabel</string>
345
+ <string key="_label_message">UILabel</string>
346
+ </dictionary>
347
+ <dictionary class="NSMutableDictionary" key="toOneOutletInfosByName">
348
+ <object class="IBToOneOutletInfo" key="_btn_accept">
349
+ <string key="name">_btn_accept</string>
350
+ <string key="candidateClassName">UIButton</string>
351
+ </object>
352
+ <object class="IBToOneOutletInfo" key="_btn_decline">
353
+ <string key="name">_btn_decline</string>
354
+ <string key="candidateClassName">UIButton</string>
355
+ </object>
356
+ <object class="IBToOneOutletInfo" key="_label_for_issuer">
357
+ <string key="name">_label_for_issuer</string>
358
+ <string key="candidateClassName">UILabel</string>
359
+ </object>
360
+ <object class="IBToOneOutletInfo" key="_label_issuer">
361
+ <string key="name">_label_issuer</string>
362
+ <string key="candidateClassName">UILabel</string>
363
+ </object>
364
+ <object class="IBToOneOutletInfo" key="_label_message">
365
+ <string key="name">_label_message</string>
366
+ <string key="candidateClassName">UILabel</string>
367
+ </object>
368
+ </dictionary>
369
+ <object class="IBClassDescriptionSource" key="sourceIdentifier">
370
+ <string key="majorKey">IBProjectSource</string>
371
+ <string key="minorKey">./Classes/VerifyCertificateController.h</string>
372
+ </object>
373
+ </object>
374
+ </array>
375
+ </object>
376
+ <int key="IBDocument.localizationMode">0</int>
377
+ <string key="IBDocument.TargetRuntimeIdentifier">IBCocoaTouchFramework</string>
378
+ <object class="NSMutableDictionary" key="IBDocument.PluginDeclaredDependencyDefaults">
379
+ <string key="NS.key.0">com.apple.InterfaceBuilder.CocoaTouchPlugin.iPhoneOS</string>
380
+ <real value="1296" key="NS.object.0"/>
381
+ </object>
382
+ <bool key="IBDocument.PluginDeclaredDependenciesTrackSystemTargetVersion">YES</bool>
383
+ <int key="IBDocument.defaultPropertyAccessControl">3</int>
384
+ <string key="IBCocoaTouchPluginVersion">1179</string>
385
+ </data>
386
+ </archive>
local-test-freerdp-full-01/afc-freerdp/client/iOS/Resources/about_page/about.html ADDED
@@ -0,0 +1,203 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <html>
2
+ <head>
3
+ <meta name='viewport' content='width=device-width; initial-scale=1.0; maximum-scale=1.0;' />
4
+
5
+ <script language="javascript">
6
+ function toggle() {
7
+ var ele = document.getElementById("toggleText");
8
+ var text = document.getElementById("displayText");
9
+ if(ele.style.display == "block") {
10
+ ele.style.display = "none";
11
+ text.innerHTML = "show";
12
+ }
13
+ else {
14
+ ele.style.display = "block";
15
+ text.innerHTML = "<b>hide</b>";
16
+ }
17
+ }
18
+ </script>
19
+
20
+ <style type="text/css">
21
+ @charset "utf-8";
22
+ body {
23
+ font: 100%%/1.4 Helvetica;
24
+ background-color:#E9EBF8;
25
+ height: 100%%; width: 100%%; margin: 0;
26
+ background-image:url(back.jpg);
27
+ background-position:center;
28
+
29
+ text-align:center;
30
+ }
31
+
32
+ .centered-table {
33
+ margin-left: auto;
34
+ margin-right: auto;
35
+ }
36
+
37
+ #headline{
38
+
39
+ background-color:#353639;
40
+ opacity:0.9;
41
+
42
+ color:FFF;
43
+ text-align:center;
44
+
45
+
46
+ }
47
+
48
+ #footer{
49
+ padding-top:10px;
50
+ }
51
+
52
+ #footer img{
53
+ padding top:10 px;
54
+ }
55
+ #article{
56
+
57
+
58
+ background-color:#FFFFFF;
59
+ opacity: 0.8;
60
+ z-index:0;
61
+ margin-bottom:3%%;
62
+ padding-bottom:0.1%%;
63
+ border-radius: 15px;
64
+ border-top-left-radius:0px;
65
+ border-top-right-radius:0px;
66
+ color:#000;
67
+ margin: 10px auto;
68
+ position:relative;
69
+
70
+ }
71
+
72
+
73
+ #introduction_headline{
74
+ width:inherit;
75
+ background-color:#353639;
76
+ opacity:0.9;
77
+ color:FFF;
78
+ text-align:center;
79
+ border-bottom-left-radius:15px;
80
+ border-bottom-right-radius:15px;
81
+
82
+
83
+ }
84
+
85
+ #introduction{
86
+
87
+
88
+ background-color:#FFFFFF;
89
+ opacity: 0.8;
90
+ z-index:0;
91
+ margin-bottom:3%%;
92
+ padding-bottom:0.1%%;
93
+ border-radius: 10px;
94
+ color:#000;
95
+ }
96
+
97
+ #container
98
+ {
99
+ margin-left: auto;
100
+ margin-right: auto;
101
+ width: 50em;
102
+ width:420px;
103
+ }
104
+ /* ~~ Element/tag selectors ~~ */
105
+ ul, ol, dl { /* Due to variations between browsers, it's best practices to zero padding and margin on lists. For consistency, you can either specify the amounts you want here, or on the list items (LI, DT, DD) they contain. Remember that what you do here will cascade to the .nav list unless you write a more specific selector. */
106
+ padding: 0;
107
+ margin: 0;
108
+ }
109
+ h1, h2, h3, h4, h5, h6, p {
110
+ margin-top: 0; /* removing the top margin gets around an issue where margins can escape from their containing div. The remaining bottom margin will hold it away from any elements that follow. */
111
+ padding-right: 1px;
112
+ padding-left: 1px; /* adding the padding to the sides of the elements within the divs, instead of the divs themselves, gets rid of any box model math. A nested div with side padding can also be used as an alternate method. */
113
+ }
114
+ a img { /* this selector removes the default blue border displayed in some browsers around an image when it is surrounded by a link */
115
+ border: none;
116
+ alignment: right;}
117
+ }
118
+
119
+ /* ~~ Styling for your site's links must remain in this order - including the group of selectors that create the hover effect. ~~ */
120
+ /*a:link {
121
+ color:#414958;
122
+ text-decoration: underline; unless you style your links to look extremely unique, it's best to provide underlines for quick visual identification */
123
+
124
+
125
+ a:hover, a:active, a:focus { /* this group of selectors will give a keyboard navigator the same hover experience as the person using a mouse. */
126
+ text-decoration: none;}
127
+
128
+
129
+
130
+
131
+ a:link { color:#0000FF; }
132
+
133
+
134
+
135
+ * {
136
+ -webkit-touch-callout: none;
137
+ -webkit-user-select: none; /* Disable selection/Copy of UIWebView */
138
+ }
139
+
140
+
141
+
142
+ </style>
143
+ </head>
144
+ <body>
145
+
146
+
147
+
148
+
149
+ <div id="container">
150
+
151
+
152
+ <div id="introduction_headline">
153
+ <h2>iFreeRDP </br>Remote Desktop Client</h2>
154
+ </div>
155
+ <p>
156
+ <img src="FreeRDP_Logo.png" width="30%%"></p>
157
+ <div id="introduction">
158
+
159
+ iFreeRDP is an open source client
160
+ capable of natively using Remote Desktop Protocol (RDP) in order to remotely access your Windows desktop.</div>
161
+
162
+
163
+ <div id="article">
164
+ <div id="headline"><h3>Version Information</h3></div>
165
+ <p>
166
+ <table class="centered-table" border=0 cellspacing=1 cellpadding=3 >
167
+ <tr>
168
+ <td>iFreeRDP Version</td> <td>%@</td> </tr>
169
+ <tr> <td>System Name</td> <td>%@</td> </tr>
170
+ <tr> <td>System Version</td> <td>%@</td> </tr>
171
+ <tr> <td>Model</td> <td>%@</td> </tr>
172
+ </table>
173
+ </p>
174
+ </div>
175
+ <div id="article">
176
+
177
+ <div id="headline">
178
+ <h3>Credits</h3>
179
+ </div>
180
+
181
+ iFreeRDP is a part of <a href="http://www.freerdp.com/">FreeRDP</a>
182
+
183
+ </div>
184
+
185
+ <div id="article">
186
+ <div id="headline">
187
+ <h3>License</h3>
188
+ </div>
189
+
190
+ This program is free software; you can redistribute it and/or modify it under the terms of the Mozilla Public License, v. 2.0.
191
+ You can obtain an online version of the License from <a href="http://mozilla.org/MPL/2.0/">http://mozilla.org/MPL/2.0/</a>.
192
+ </p>
193
+ <p>
194
+ This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of
195
+ MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
196
+ </p>
197
+ <p>
198
+ A copy of the product's source code can be obtained from the FreeRDP GitHub repository at <a
199
+ href="https://github.com/FreeRDP/FreeRDP">https://github.com/FreeRDP/FreeRDP</a>.<br />
200
+ </p>
201
+ <br></div>
202
+ </body>
203
+ </html>
local-test-freerdp-full-01/afc-freerdp/client/iOS/Resources/about_page/about_phone.html ADDED
@@ -0,0 +1,201 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <html>
2
+ <head>
3
+ <meta name='viewport' content='width=device-width; initial-scale=1.0; maximum-scale=1.0;' />
4
+
5
+ <script language="javascript">
6
+ function toggle() {
7
+ var ele = document.getElementById("toggleText");
8
+ var text = document.getElementById("displayText");
9
+ if(ele.style.display == "block") {
10
+ ele.style.display = "none";
11
+ text.innerHTML = "show";
12
+ }
13
+ else {
14
+ ele.style.display = "block";
15
+ text.innerHTML = "<b>hide</b>";
16
+ }
17
+ }
18
+ </script>
19
+
20
+ <style type="text/css">
21
+ @charset "utf-8";
22
+ body {
23
+ font: 100%%/1 Helvetica;
24
+ background-color:#E9EBF8;
25
+ height: 100%%; width: 100%%; margin: 0;
26
+ background-image:url(back.jpg);
27
+ background-position:center;
28
+
29
+ text-align:center;
30
+ }
31
+
32
+ .centered-table {
33
+ margin-left: auto;
34
+ margin-right: auto;
35
+ }
36
+
37
+ #headline{
38
+
39
+ background-color:#353639;
40
+ opacity:0.9;
41
+
42
+ color:FFF;
43
+ text-align:center;
44
+
45
+
46
+ }
47
+
48
+ #footer{
49
+ padding-top:10px;
50
+ }
51
+
52
+ #footer img{
53
+ padding top:10 px;
54
+ }
55
+ #article{
56
+
57
+
58
+ background-color:#FFFFFF;
59
+ opacity: 0.8;
60
+ z-index:0;
61
+ margin-bottom:3%%;
62
+ padding-bottom:0.1%%;
63
+ border-radius: 15px;
64
+ border-top-left-radius:0px;
65
+ border-top-right-radius:0px;
66
+ color:#000;
67
+ margin: 10px auto;
68
+ position:relative;
69
+
70
+ }
71
+
72
+
73
+ #introduction_headline{
74
+ width:inherit;
75
+ background-color:#353639;
76
+ opacity:0.9;
77
+ color:FFF;
78
+ text-align:center;
79
+ border-bottom-left-radius:15px;
80
+ border-bottom-right-radius:15px;
81
+
82
+
83
+ }
84
+
85
+ #introduction{
86
+
87
+
88
+ background-color:#FFFFFF;
89
+ opacity: 0.8;
90
+ z-index:0;
91
+ margin-bottom:3%%;
92
+ padding-bottom:0.1%%;
93
+ border-radius: 10px;
94
+ color:#000;
95
+ }
96
+
97
+ #container
98
+ {
99
+ margin-left: auto;
100
+ margin-right: auto;
101
+
102
+ width:300px;
103
+ }
104
+ /* ~~ Element/tag selectors ~~ */
105
+ ul, ol, dl { /* Due to variations between browsers, it's best practices to zero padding and margin on lists. For consistency, you can either specify the amounts you want here, or on the list items (LI, DT, DD) they contain. Remember that what you do here will cascade to the .nav list unless you write a more specific selector. */
106
+ padding: 0;
107
+ margin: 0;
108
+ }
109
+ h1, h2, h3, h4, h5, h6, p {
110
+ margin-top: 0; /* removing the top margin gets around an issue where margins can escape from their containing div. The remaining bottom margin will hold it away from any elements that follow. */
111
+ padding-right: 1px;
112
+ padding-left: 1px; /* adding the padding to the sides of the elements within the divs, instead of the divs themselves, gets rid of any box model math. A nested div with side padding can also be used as an alternate method. */
113
+ }
114
+ a img { /* this selector removes the default blue border displayed in some browsers around an image when it is surrounded by a link */
115
+ border: none;
116
+ alignment: right;}
117
+ }
118
+
119
+ /* ~~ Styling for your site's links must remain in this order - including the group of selectors that create the hover effect. ~~ */
120
+ /*a:link {
121
+ color:#414958;
122
+ text-decoration: underline; unless you style your links to look extremely unique, it's best to provide underlines for quick visual identification */
123
+
124
+
125
+ a:hover, a:active, a:focus { /* this group of selectors will give a keyboard navigator the same hover experience as the person using a mouse. */
126
+ text-decoration: none;}
127
+
128
+
129
+
130
+
131
+ a:link { color:#0000FF; }
132
+
133
+
134
+
135
+ * {
136
+ -webkit-touch-callout: none;
137
+ -webkit-user-select: none; /* Disable selection/Copy of UIWebView */
138
+ }
139
+
140
+
141
+
142
+ }
143
+
144
+ </style>
145
+ </head>
146
+ <body>
147
+
148
+
149
+
150
+
151
+ <div id="container">
152
+
153
+
154
+ <div id="introduction_headline">
155
+ <h2>iFreeRDP</br>Remote Desktop Client</h2>
156
+ </div>
157
+ <p>
158
+ <img src="FreeRDP_Logo.png" width="25%%"></p>
159
+ <div id="introduction">
160
+
161
+ <b>iFreeRDP</b> is an open source client for Windows Remote Services using Remote Desktop Protocol (RDP) in order to remotely access your Windows desktop.</div>
162
+
163
+
164
+ <div id="article">
165
+ <div id="headline"><h3>Version Information</h3></div>
166
+ <p>
167
+ <table class="centered-table" border=0 cellspacing=1 cellpadding=3 >
168
+ <tr>
169
+ <td>iFreerdp Version</td> <td>%@</td> </tr>
170
+ <tr> <td>System Name</td> <td>%@</td> </tr>
171
+ <tr> <td>System Version</td> <td>%@</td> </tr>
172
+ <tr> <td>Model</td> <td>%@</td> </tr>
173
+ </table>
174
+ </p>
175
+ </div>
176
+ <div id="article">
177
+
178
+ <div id="headline">
179
+ <h3>Credits</h3>
180
+ </div>
181
+ iFreeRDP is part of <a href="http://www.freerdp.com/">FreeRDP</a>
182
+ </div>
183
+ <div id="article">
184
+ <div id="headline">
185
+ <h3>License</h3>
186
+ </div>
187
+
188
+ This program is free software; you can redistribute it and/or modify it under the terms of the Mozilla Public License, v. 2.0.
189
+ You can obtain an online version of the License from <a href="http://mozilla.org/MPL/2.0/">http://mozilla.org/MPL/2.0/</a>.
190
+ </p>
191
+ <p>
192
+ This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of
193
+ MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
194
+ </p>
195
+ <p>
196
+ A copy of the product's source code can be obtained from the FreeRDP GitHub repository at <a
197
+ href="https://github.com/FreeRDP/FreeRDP">https://github.com/FreeRDP/FreeRDP</a>.<br />
198
+ </p> </div>
199
+ </div>
200
+ </body>
201
+ </html>
local-test-freerdp-full-01/afc-freerdp/client/iOS/Resources/en.lproj/Localizable.strings ADDED
@@ -0,0 +1,274 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ /* 8 bit color selection */
2
+ "256 Colors" = "256 Colors";
3
+
4
+ /* '3G Performance': Bookmark 3G Performance Settings */
5
+ "3G Performance" = "3G Performance";
6
+
7
+ /* '3G Screen': Bookmark 3G Screen settings */
8
+ "3G Screen" = "3G Screen";
9
+
10
+ /* '3G Settings': Bookmark enable 3G settings */
11
+ "3G Settings" = "3G Settings";
12
+
13
+ /* About Controller title
14
+ Tabbar item about */
15
+ "About" = "About";
16
+
17
+ /* Accept All Certificates setting */
18
+ "Accept all Certificates" = "Accept all Certificates";
19
+
20
+ /* 'Add Bookmark': button label
21
+ Add Bookmark title */
22
+ "Add Bookmark" = "Add Bookmark";
23
+
24
+ /* 'Advanced': advanced settings header
25
+ 'Advanced': Bookmark Advanced Settings */
26
+ "Advanced" = "Advanced";
27
+
28
+ /* Advanced Settings title */
29
+ "Advanced Settings" = "Advanced Settings";
30
+
31
+ /* Automatic protocol security selection
32
+ Screen resolution selector: Automatic resolution (full screen on iPad, reasonable size on iPhone) */
33
+ "Automatic" = "Automatic";
34
+
35
+ /* Bookmark data validation: label blank title. */
36
+ "Bookmark labels cannot be blank" = "Bookmark labels cannot be blank";
37
+
38
+ /* 'Bookmarks': controller title */
39
+ "Bookmarks" = "Bookmarks";
40
+
41
+ /* Cancel Button */
42
+ "Cancel" = "Cancel";
43
+
44
+ /* Incomplete bookmark error title */
45
+ "Cancel without saving?" = "Cancel without saving?";
46
+
47
+ /* TSX Connect error bookmark offline */
48
+ "Cannot connect to TSX Connect bookmark because it is currently offline!" = "Cannot connect to TSX Connect bookmark because it is currently offline!";
49
+
50
+ /* Clear Certificate cache success message */
51
+ "Certificate Cache cleared!" = "Certificate Cache cleared!";
52
+
53
+ /* Connecting progress view - label */
54
+ "Connecting" = "Connecting";
55
+
56
+ /* 'Console Mode': Bookmark console mode settings */
57
+ "Console Mode" = "Console Mode";
58
+
59
+ /* Continue Button */
60
+ "Continue" = "Continue";
61
+
62
+ /* 'Credentials': Bookmark credentials
63
+ 'Credentials': credentials settings header
64
+ Credentials title */
65
+ "Credentials" = "Credentials";
66
+
67
+ /* Screen resolution selector: Custom */
68
+ "Custom" = "Custom";
69
+
70
+ /* Desktop background performance setting */
71
+ "Desktop Background" = "Desktop Background";
72
+
73
+ /* Desktop composition performance setting */
74
+ "Desktop Composition" = "Desktop Composition";
75
+
76
+ /* 'Domain': Bookmark domain
77
+ Credentials Input Domain hint */
78
+ "Domain" = "Domain";
79
+
80
+ /* Button title 'Done' */
81
+ "Done" = "Done";
82
+
83
+ /* Edit Bookmark title */
84
+ "Edit Bookmark" = "Edit Bookmark";
85
+
86
+ /* Erase certificate cache button */
87
+ "Erase Certificate Cache" = "Erase Certificate Cache";
88
+
89
+ /* Clear Certificate cache failed message */
90
+ "Error clearing the Certificate Cache!" = "Could not clear the certificate cache!";
91
+
92
+ /* External Link Alert Title */
93
+ "External Link" = "External Link";
94
+
95
+ /* Failed to connect error message */
96
+ "Failed to connect to session!" = "Could not connect connect to session.";
97
+
98
+ /* Font smoothing performance setting */
99
+ "Font Smoothing" = "Font Smoothing";
100
+
101
+ /* Custom Screen Height */
102
+ "Height" = "Height";
103
+
104
+ /* Help Controller title
105
+ Tabbar item help */
106
+ "Help" = "Help";
107
+
108
+ /* Button title 'Hide' */
109
+ "Hide" = "Hide";
110
+
111
+ /* Show/Hide Phone Status Bar setting */
112
+ "Hide Status Bar" = "Hide Status Bar";
113
+
114
+ /* 15 bit color selection */
115
+ "High Color (15 Bit)" = "High Color (15 Bit)";
116
+
117
+ /* 16 bit color selection */
118
+ "High Color (16 Bit)" = "High Color (16 Bit)";
119
+
120
+ /* 32 bit color selection */
121
+ "Highest Quality (32 Bit)" = "Highest Quality (32 Bit)";
122
+
123
+ /* 'Host': Bookmark hostname
124
+ 'Host': host settings header */
125
+ "Host" = "Host";
126
+
127
+ /* Invert Scrolling UI setting */
128
+ "Invert Scrolling" = "Invert Scrolling";
129
+
130
+ /* Verify certificate view issuer label */
131
+ "Issuer:" = "Issuer:";
132
+
133
+ /* 'Label': Bookmark label */
134
+ "Label" = "Label";
135
+
136
+ /* Login Button
137
+ TSX Connect login button */
138
+ "Login" = "Login";
139
+
140
+ /* TSX Connect logout button */
141
+ "Logout" = "Logout";
142
+
143
+ /* Menu Animations performance setting */
144
+ "Menu Animation" = "Menu Animation";
145
+
146
+ /* 'My Computers': section manual bookmarks header */
147
+ "My Computers" = "My Computers";
148
+
149
+ /* 'My Session': section sessions header */
150
+ "My Sessions" = "My Sessions";
151
+
152
+ /* No Button */
153
+ "No" = "No";
154
+
155
+ /* TSXConnect Offline */
156
+ "Offline" = "Offline";
157
+
158
+ /* OK Button */
159
+ "OK" = "OK";
160
+
161
+ /* TSXConnect Online */
162
+ "Online" = "Online";
163
+
164
+ /* Open link in browser (with link as parameter) */
165
+ "Open [%@] in Browser?" = "Open [%@] in Browser?";
166
+
167
+ /* 'Password': Bookmark password
168
+ Credentials Input Password hint
169
+ TSX Connect Password setting */
170
+ "Password" = "Password";
171
+
172
+ /* TSX Connect password placeholder */
173
+ "password" = "password";
174
+
175
+ /* 'Performance': Bookmark Performance Settings */
176
+ "Performance" = "Performance";
177
+
178
+ /* 'Performance Settings': performance settings header */
179
+ "Performance Settings" = "Performance Settings";
180
+
181
+ /* Bookmark data validation: label blank message. */
182
+ "Please enter the short description of this bookmark that will appear in the bookmark list." = "Please enter the short description of this bookmark that will appear in the bookmark list.";
183
+
184
+ /* Credentials input view message */
185
+ "Please provide the missing user information in order to proceed and login." = "Please provide the missing user information in order to proceed and login.";
186
+
187
+ /* TSXConnect description footer */
188
+ "Please provide your Google Account data to enable TSX Connect." = "Please provide your Google Account data to enable TSX Connect.";
189
+
190
+ /* 'Port': Bookmark port */
191
+ "Port" = "Port";
192
+
193
+ /* Incomplete bookmark error message */
194
+ "Press 'Cancel' to abort!\nPress 'Continue' to specify the required fields!" = "Press 'Cancel' to abort!\nPress 'Continue' to specify the required fields!";
195
+
196
+ /* 'Remote Program': Bookmark remote program settings */
197
+ "Remote Program" = "Remote Program";
198
+
199
+ /* RemoteFX performance setting */
200
+ "RemoteFX" = "RemoteFX";
201
+
202
+ /* Save connection settings title */
203
+ "Save connection settings?" = "Save connection settings?";
204
+
205
+ /* 'Screen': Bookmark Screen settings */
206
+ "Screen" = "Screen";
207
+
208
+ /* 'Security': Bookmark protocol security settings */
209
+ "Security" = "Security";
210
+
211
+ /* Server Certificate Handling section title */
212
+ "Server Certificate Handling" = "Server Certificate Handling";
213
+
214
+ /* 'Session Settings': session settings header
215
+ App Settings title
216
+ Tabbar item settings */
217
+ "Settings" = "Settings";
218
+
219
+ /* Swap Mouse Button UI setting */
220
+ "Swap Mouse Buttons" = "Swap Mouse Buttons";
221
+
222
+ /* Verify certificate view message */
223
+ "The identity of the remote computer cannot be verified. Do you want to connect anyway?" = "The identity of the remote computer cannot be verified. Do you want to connect anyway?";
224
+
225
+ /* Screen settings not supported message with width, height and colors parameter */
226
+ "The server changed the screen settings to %dx%dx%d" = "The server changed the screen settings to %1$dx%2$dx%3$d";
227
+
228
+ /* 24 bit color selection */
229
+ "True Color (24 Bit)" = "True Color (24 Bit)";
230
+
231
+ /* 'TSX Connect': section tsx connect bookmarks header */
232
+ "TSX Connect" = "TSX Connect";
233
+
234
+ /* TSX Connect Settings section title */
235
+ "TSX Connect Settings" = "TSX Connect Settings";
236
+
237
+ /* Button title 'Unhide' */
238
+ "Unhide" = "Unhide";
239
+
240
+ /* UI settings section title */
241
+ "User Interface" = "User Interface";
242
+
243
+ /* TSX Connect username placeholder */
244
245
+
246
+ /* 'Username': Bookmark username
247
+ Credentials Input Username hint
248
+ TSX Connect Username setting */
249
+ "Username" = "Username";
250
+
251
+ /* Use Themes performance setting */
252
+ "Visual Styles" = "Visual Styles";
253
+
254
+ /* Custom Screen Width */
255
+ "Width" = "Width";
256
+
257
+ /* Window Dragging performance setting */
258
+ "Window contents while dragging" = "Window contents while dragging";
259
+
260
+ /* 'Working Directory': Bookmark working directory settings */
261
+ "Working Directory" = "Working Directory";
262
+
263
+ /* Yes Button */
264
+ "Yes" = "Yes";
265
+
266
+ /* TSX Connect login success message */
267
+ "You have successfully logged on to TSXConnect. In order to connect to a computer you need to install TSXConnect on that computer first!" = "You have logged on to TSXConnect. In order to connect to a computer you need to install TSXConnect on that computer first!";
268
+
269
+ /* TSX Connect Incomplete params error message */
270
+ "You have to specify your GMail Account and password in order to use TSX Connect." = "You have to specify your Gmail account and password in order to use TSX Connect.";
271
+
272
+ /* Save connection settings message */
273
+ "Your connection settings have not been saved. Do you want to save them to a new bookmark?" = "Your connection settings have not been saved. Do you want to save them to a new bookmark?";
274
+
local-test-freerdp-full-01/afc-freerdp/client/iOS/Resources/help_page/gestures.html ADDED
@@ -0,0 +1,159 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN">
2
+
3
+ <html>
4
+
5
+ <head>
6
+ <meta charset="utf-8">
7
+ <meta name="viewport" content="width=device-width; initial-scale=1.0; maximum-scale=1.0;" />
8
+ <title>Help</title>
9
+
10
+ <style type="text/css">
11
+
12
+ @charset "utf-8";
13
+
14
+
15
+ #container{
16
+
17
+ text-align:center;
18
+ }
19
+
20
+ body{
21
+ margin:0;
22
+ padding:<length> 0 0 0;
23
+ font: 100%/1.4 Helvetica;
24
+ background-image:url(back.jpg);
25
+ background-position:center;
26
+ color:#000;
27
+
28
+
29
+ }
30
+
31
+ #headline{
32
+
33
+ background-color:#353639;
34
+ opacity:0.9;
35
+
36
+ color:#000;
37
+ text-align:center;
38
+
39
+
40
+ }
41
+
42
+ #article{
43
+
44
+
45
+ background-color:#FFFFFF;
46
+ opacity: 0.8;
47
+ z-index:0;
48
+ margin-bottom:3%;
49
+ padding-bottom:0.1%;
50
+ border-radius: 15px;
51
+ border-top-left-radius:0px;
52
+ border-top-right-radius:0px;
53
+ color:#000;
54
+ margin: 10px auto;
55
+ position:relative;
56
+
57
+
58
+ }
59
+
60
+ #header{
61
+
62
+ height:auto;
63
+ width:100%;
64
+ background-color:#353639;
65
+ padding-bottom:5px;
66
+ padding-left:5px;
67
+ padding-right:5px;
68
+ padding-top:10px;
69
+ position: fixed;
70
+ top: 0;
71
+ left: 0;
72
+ height:40px;
73
+ overflow:visible;
74
+ min-width:400px;
75
+ z-index:20;
76
+
77
+
78
+ }
79
+
80
+
81
+
82
+
83
+ #content{
84
+ padding-top:70px;
85
+ z-index:-20;
86
+ max-width:420px;
87
+
88
+ }
89
+
90
+
91
+
92
+ /* ~~ Element/tag selectors ~~ */
93
+ ul, ol, dl { /* Due to variations between browsers, it's best practices to zero padding and margin on lists. For consistency, you can either specify the amounts you want here, or on the list items (LI, DT, DD) they contain. Remember that what you do here will cascade to the .nav list unless you write a more specific selector. */
94
+ padding: 0;
95
+ margin: 0;
96
+ }
97
+
98
+ h1, h2, h3, h4, h5, h6, p {
99
+ margin-top: 0; /* removing the top margin gets around an issue where margins can escape from their containing div. The remaining bottom margin will hold it away from any elements that follow. */
100
+ padding-right: 1px;
101
+ padding-left: 1px; /* adding the padding to the sides of the elements within the divs, instead of the divs themselves, gets rid of any box model math. A nested div with side padding can also be used as an alternate method.
102
+ */
103
+ color:#000;
104
+
105
+ }
106
+
107
+ a img { /* this selector removes the default blue border displayed in some browsers around an image when it is surrounded by a link */
108
+ border: none;
109
+
110
+ }
111
+
112
+ /* ~~ Styling for your site's links must remain in this order - including the group of selectors that create the hover effect. ~~ */
113
+ /*a:link {
114
+ color:#414958;
115
+ text-decoration: underline; unless you style your links to look extremely unique, it's best to provide underlines for quick visual identification */
116
+
117
+
118
+ a:hover, a:active, a:focus { /* this group of selectors will give a keyboard navigator the same hover experience as the person using a mouse. */
119
+ text-decoration: none;}
120
+
121
+
122
+ * {
123
+ -webkit-touch-callout: none;
124
+ -webkit-user-select: none; /* Disable selection/Copy of UIWebView */
125
+ }
126
+
127
+
128
+
129
+
130
+
131
+
132
+ </style>
133
+
134
+
135
+
136
+ </head>
137
+
138
+ <body>
139
+ <div id="container">
140
+ <center>
141
+ <div id="header">
142
+ <a href="gestures.html"><img src="nav_gestures.png"></a>
143
+ <a href="toolbar.html"><img src="nav_toolbar.png"></a>
144
+ <a href="touch_pointer.html"><img src="nav_touch_pointer.png"></a>
145
+
146
+ </div>
147
+
148
+ <div id="content">
149
+ <h1>Gestures</h1>
150
+ <p>
151
+ iFreeRDP is designed for touch sensitive devices.
152
+ These gestures let you do the most usual operations with your fingers.</p>
153
+ <p> <img src="gestures.png"></p>
154
+
155
+ </div>
156
+ </div>
157
+
158
+ </body>
159
+ </html>
local-test-freerdp-full-01/afc-freerdp/client/iOS/Resources/help_page/gestures_phone.html ADDED
@@ -0,0 +1,159 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN">
2
+
3
+ <html>
4
+
5
+ <head>
6
+ <meta charset="utf-8">
7
+ <meta name="viewport" content="width=device-width; initial-scale=1.0; maximum-scale=1.0;" />
8
+ <title>Help</title>
9
+
10
+ <style type="text/css">
11
+
12
+ @charset "utf-8";
13
+
14
+
15
+ #container{
16
+
17
+ text-align:center;
18
+ color:#000;}
19
+
20
+ body{
21
+ margin:0;
22
+ padding:<length> 0 0 0;
23
+ font: 100% Helvetica;
24
+ background-image:url(back.jpg);
25
+ background-position:center;
26
+
27
+
28
+ }
29
+
30
+ #headline{
31
+
32
+ background-color:#353639;
33
+ opacity:0.9;
34
+
35
+ color:FFF;
36
+ text-align:center;
37
+
38
+
39
+ }
40
+
41
+ #article{
42
+
43
+
44
+ background-color:#FFFFFF;
45
+ opacity: 0.8;
46
+ z-index:0;
47
+ margin-bottom:3%;
48
+ padding-bottom:0.1%;
49
+ border-radius: 15px;
50
+ border-top-left-radius:0px;
51
+ border-top-right-radius:0px;
52
+ color:#000;
53
+ margin: 10px auto;
54
+ position:relative;
55
+
56
+
57
+ }
58
+
59
+ #header{
60
+
61
+
62
+ width:100%;
63
+ background-color:#353639;
64
+ padding-bottom:1px;
65
+ padding-left:5px;
66
+ padding-right:5px;
67
+ padding-top:5px;
68
+ position: fixed;
69
+ top: 0;
70
+ left: 0;
71
+ height:30px;
72
+
73
+ min-width:250px;
74
+ z-index:20;
75
+
76
+
77
+ }
78
+
79
+
80
+
81
+
82
+ #content{
83
+ padding-top:40px;
84
+ z-index:-20;
85
+ max-width:300px;
86
+
87
+ }
88
+
89
+ /* ~~ Element/tag selectors ~~ */
90
+ ul, ol, dl { /* Due to variations between browsers, it's best practices to zero padding and margin on lists. For consistency, you can either specify the amounts you want here, or on the list items (LI, DT, DD) they contain. Remember that what you do here will cascade to the .nav list unless you write a more specific selector. */
91
+ padding: 0;
92
+ margin: 0;
93
+ }
94
+
95
+ h1, h2, h3, h4, h5, h6, p {
96
+ margin-top: 0; /* removing the top margin gets around an issue where margins can escape from their containing div. The remaining bottom margin will hold it away from any elements that follow. */
97
+ padding-right: 1px;
98
+ padding-left: 1px; /* adding the padding to the sides of the elements within the divs, instead of the divs themselves, gets rid of any box model math. A nested div with side padding can also be used as an alternate method.
99
+ */
100
+ color:#000;
101
+
102
+ }
103
+
104
+ a img { /* this selector removes the default blue border displayed in some browsers around an image when it is surrounded by a link */
105
+ border: none;
106
+
107
+ }
108
+
109
+ /* ~~ Styling for your site's links must remain in this order - including the group of selectors that create the hover effect. ~~ */
110
+ /*a:link {
111
+ color:#414958;
112
+ text-decoration: underline; unless you style your links to look extremely unique, it's best to provide underlines for quick visual identification */
113
+
114
+
115
+ a:hover, a:active, a:focus { /* this group of selectors will give a keyboard navigator the same hover experience as the person using a mouse. */
116
+ text-decoration: none;}
117
+
118
+
119
+ * {
120
+ -webkit-touch-callout: none;
121
+ -webkit-user-select: none; /* Disable selection/Copy of UIWebView */
122
+ }
123
+
124
+
125
+
126
+
127
+ </style>
128
+
129
+
130
+
131
+ </head>
132
+
133
+
134
+
135
+
136
+ <body>
137
+ <div id="container">
138
+ <center>
139
+ <div id="header">
140
+
141
+ <a href="gestures_phone.html"><img src="nav_gestures.png" height="90%"></a>
142
+ <a href="toolbar_phone.html"><img src="nav_toolbar.png" height="90%"></a>
143
+ <a href="touch_pointer_phone.html"><img src="nav_touch_pointer.png" height="90%""></a>
144
+
145
+ </div>
146
+
147
+ <div id="content">
148
+ <h2> Gestures</h2>
149
+ <p>
150
+ iFreeRDP is designed for touch sensitive devices.
151
+ These gestures let you do the most usual operations with your fingers.</p>
152
+ <p> <img src="gestures_phone.png"></p>
153
+
154
+
155
+ </div>
156
+ </div>
157
+
158
+ </body>
159
+ </html>
local-test-freerdp-full-01/afc-freerdp/client/iOS/Resources/help_page/toolbar.html ADDED
@@ -0,0 +1,178 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN">
2
+
3
+ <html>
4
+
5
+ <head>
6
+ <meta charset="utf-8">
7
+ <meta name="viewport" content="width=device-width; initial-scale=1.0; maximum-scale=1.0;" />
8
+ <title>Help</title>
9
+
10
+ <style type="text/css">
11
+
12
+ @charset "utf-8";
13
+
14
+
15
+ #container{
16
+
17
+ text-align:center;
18
+ color:#FFFFFF;}
19
+
20
+ body{
21
+ margin:0;
22
+ padding:<length> 0 0 0;
23
+ font: 100%/1.4 Helvetica;
24
+ background-image:url(back.jpg);
25
+ background-position:center;
26
+
27
+
28
+ }
29
+
30
+ #headline{
31
+
32
+ background-color:#353639;
33
+
34
+
35
+ color:#FFF;
36
+ text-align:center;
37
+
38
+
39
+ }
40
+
41
+ #article{
42
+
43
+
44
+ background-color:#FFFFFF;
45
+ opacity: 0.8;
46
+ z-index:0;
47
+ margin-bottom:3%;
48
+ padding-bottom:0.1%;
49
+ border-radius: 15px;
50
+ border-top-left-radius:0px;
51
+ border-top-right-radius:0px;
52
+ color:#000;
53
+ margin: 10px auto;
54
+ position:relative;
55
+
56
+
57
+ }
58
+
59
+ #header{
60
+
61
+ height:auto;
62
+ width:100%;
63
+ background-color:#353639;
64
+ padding-bottom:5px;
65
+ padding-left:5px;
66
+ padding-right:5px;
67
+ padding-top:10px;
68
+ position: fixed;
69
+ top: 0;
70
+ left: 0;
71
+ height:40px;
72
+ overflow:visible;
73
+ min-width:400px;
74
+ z-index:20;
75
+
76
+
77
+ }
78
+
79
+
80
+
81
+
82
+ #content{
83
+ padding-top:70px;
84
+ z-index:-20;
85
+ max-width:420px;
86
+
87
+ }
88
+
89
+
90
+ /* ~~ Element/tag selectors ~~ */
91
+ ul, ol, dl { /* Due to variations between browsers, it's best practices to zero padding and margin on lists. For consistency, you can either specify the amounts you want here, or on the list items (LI, DT, DD) they contain. Remember that what you do here will cascade to the .nav list unless you write a more specific selector. */
92
+ padding: 0;
93
+ margin: 0;
94
+ }
95
+
96
+ h1, h2, h3, h4, h5, h6, p {
97
+ margin-top: 0; /* removing the top margin gets around an issue where margins can escape from their containing div. The remaining bottom margin will hold it away from any elements that follow. */
98
+ padding-right: 1px;
99
+ padding-left: 1px; /* adding the padding to the sides of the elements within the divs, instead of the divs themselves, gets rid of any box model math. A nested div with side padding can also be used as an alternate method.
100
+ */
101
+ color:#000;
102
+
103
+ }
104
+
105
+ a img { /* this selector removes the default blue border displayed in some browsers around an image when it is surrounded by a link */
106
+ border: none;
107
+
108
+ }
109
+
110
+ /* ~~ Styling for your site's links must remain in this order - including the group of selectors that create the hover effect. ~~ */
111
+ /*a:link {
112
+ color:#414958;
113
+ text-decoration: underline; unless you style your links to look extremely unique, it's best to provide underlines for quick visual identification */
114
+
115
+
116
+ a:hover, a:active, a:focus { /* this group of selectors will give a keyboard navigator the same hover experience as the person using a mouse. */
117
+ text-decoration: none;}
118
+
119
+
120
+ * {
121
+ -webkit-touch-callout: none;
122
+ -webkit-user-select: none; /* Disable selection/Copy of UIWebView */
123
+ }
124
+
125
+
126
+
127
+
128
+
129
+
130
+ </style>
131
+
132
+
133
+
134
+ </head>
135
+
136
+
137
+
138
+
139
+ <body>
140
+ <div id="container">
141
+
142
+
143
+ <center>
144
+
145
+
146
+ <div id="header">
147
+
148
+ <a href="gestures.html"><img src="nav_gestures.png"></a>
149
+ <a href="toolbar.html"><img src="nav_toolbar.png"></a>
150
+ <a href="touch_pointer.html"><img src="nav_touch_pointer.png"></a>
151
+
152
+ </div>
153
+
154
+ <div id="content">
155
+
156
+ <h1>Toolbar</h1>
157
+ <p>
158
+ With the toolbar you'll be able to display and hide the main tools in your session. This allows together with the touch pointer and the gestures an intuitiv workflow for remote computing on touch sensitive screens.
159
+ </p>
160
+ <p><img src="toolbar.png"></p>
161
+
162
+ <div id="article">
163
+ <div id="headline">
164
+ <h3><span style="color:white">Keyboards</span></h3></div>
165
+ Display/hide the default keyboard as well as an extended keyboard with function keys</div>
166
+ <div id="article">
167
+ <div id="headline"><h3><span style="color:white">Touch Pointer</span></h3></div>
168
+ Display/hide the gesture controlled cursor</div>
169
+ <div id="article">
170
+ <div id="headline"><h3><span style="color:white">Disconnect</span></h3></div>
171
+ Disconnect your current session. Please be aware that a disconnect is not the same as a log out.</div>
172
+
173
+ </div>
174
+
175
+
176
+ </div></center>
177
+ </body>
178
+ </html>
local-test-freerdp-full-01/afc-freerdp/client/iOS/Resources/help_page/toolbar_phone.html ADDED
@@ -0,0 +1,176 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN">
2
+
3
+ <html>
4
+
5
+ <head>
6
+ <meta charset="utf-8">
7
+ <meta name="viewport" content="width=device-width; initial-scale=1.0; maximum-scale=1.0;" />
8
+ <title>Help</title>
9
+
10
+ <style type="text/css">
11
+
12
+ @charset "utf-8";
13
+
14
+
15
+ #container{
16
+
17
+ text-align:center;
18
+ color:#FFFFFF;}
19
+
20
+ body{
21
+ margin:0;
22
+ padding:<length> 0 0 0;
23
+ font: 100% Helvetica;
24
+ background-image:url(back.jpg);
25
+ background-position:center;
26
+
27
+
28
+ }
29
+
30
+ #headline{
31
+
32
+ background-color:#353639;
33
+ opacity:0.9;
34
+
35
+ color:FFF;
36
+ text-align:center;
37
+
38
+
39
+ }
40
+
41
+ #article{
42
+
43
+
44
+ background-color:#FFFFFF;
45
+ opacity: 0.8;
46
+ z-index:0;
47
+ margin-bottom:3%;
48
+ padding-bottom:0.1%;
49
+ border-radius: 15px;
50
+ border-top-left-radius:0px;
51
+ border-top-right-radius:0px;
52
+ color:#000;
53
+ margin: 10px auto;
54
+ position:relative;
55
+
56
+
57
+ }
58
+
59
+ #header{
60
+
61
+
62
+ width:100%;
63
+ background-color:#353639;
64
+ padding-bottom:1px;
65
+ padding-left:5px;
66
+ padding-right:5px;
67
+ padding-top:5px;
68
+ position: fixed;
69
+ top: 0;
70
+ left: 0;
71
+ height:30px;
72
+
73
+ min-width:250px;
74
+ z-index:20;
75
+
76
+
77
+ }
78
+
79
+
80
+
81
+
82
+ #content{
83
+ padding-top:40px;
84
+ z-index:-20;
85
+ max-width:300px;
86
+
87
+ }
88
+
89
+
90
+ /* ~~ Element/tag selectors ~~ */
91
+ ul, ol, dl { /* Due to variations between browsers, it's best practices to zero padding and margin on lists. For consistency, you can either specify the amounts you want here, or on the list items (LI, DT, DD) they contain. Remember that what you do here will cascade to the .nav list unless you write a more specific selector. */
92
+ padding: 0;
93
+ margin: 0;
94
+ }
95
+
96
+ h1, h2, h3, h4, h5, h6, p {
97
+ margin-top: 0; /* removing the top margin gets around an issue where margins can escape from their containing div. The remaining bottom margin will hold it away from any elements that follow. */
98
+ padding-right: 1px;
99
+ padding-left: 1px; /* adding the padding to the sides of the elements within the divs, instead of the divs themselves, gets rid of any box model math. A nested div with side padding can also be used as an alternate method.
100
+ */
101
+ color:#000;
102
+
103
+ }
104
+
105
+ a img { /* this selector removes the default blue border displayed in some browsers around an image when it is surrounded by a link */
106
+ border: none;
107
+
108
+ }
109
+
110
+ /* ~~ Styling for your site's links must remain in this order - including the group of selectors that create the hover effect. ~~ */
111
+ /*a:link {
112
+ color:#414958;
113
+ text-decoration: underline; unless you style your links to look extremely unique, it's best to provide underlines for quick visual identification */
114
+
115
+
116
+ a:hover, a:active, a:focus { /* this group of selectors will give a keyboard navigator the same hover experience as the person using a mouse. */
117
+ text-decoration: none;}
118
+
119
+
120
+ * {
121
+ -webkit-touch-callout: none;
122
+ -webkit-user-select: none; /* Disable selection/Copy of UIWebView */
123
+ }
124
+
125
+
126
+
127
+
128
+ </style>
129
+
130
+
131
+
132
+ </head>
133
+
134
+
135
+
136
+
137
+ <body>
138
+ <div id="container">
139
+
140
+
141
+ <center>
142
+
143
+
144
+ <div id="header">
145
+
146
+ <a href="gestures_phone.html"><img src="nav_gestures.png" height="90%"></a>
147
+ <a href="toolbar_phone.html"><img src="nav_toolbar.png" height="90%"></a>
148
+ <a href="touch_pointer_phone.html"><img src="nav_touch_pointer.png" height="90%""></a>
149
+
150
+ </div>
151
+
152
+ <div id="content">
153
+
154
+ <h2>Toolbar</h2>
155
+ <p>
156
+ With the toolbar you'll be able to display and hide the main tools in your session. This allows together with the touch pointer and the gestures an intuitiv workflow for remote computing on touch sensitive screens.
157
+ </p>
158
+ <p><img src="toolbar_phone.png"></p>
159
+
160
+ <div id="article">
161
+ <div id="headline">
162
+ <h4><span style="color:white">Keyboards</h4></span></div>
163
+ Display/hide the default keyboard as well as an extended keyboard with function keys</div>
164
+ <div id="article">
165
+ <div id="headline"><h4><span style="color:white">Touch Pointer</h4></div>
166
+ Display/hide the gesture controlled cursor</div></span>
167
+ <div id="article">
168
+ <div id="headline"><h4><span style="color:white">Disconnect</span></h4></div>
169
+ Disconnect your current session. Please be aware that a disconnect is not the same as a log out.</div>
170
+
171
+ </div>
172
+
173
+
174
+ </div></center>
175
+ </body>
176
+ </html>
local-test-freerdp-full-01/afc-freerdp/client/iOS/Resources/help_page/touch_pointer.html ADDED
@@ -0,0 +1,164 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN">
2
+
3
+ <html>
4
+
5
+ <head>
6
+ <meta charset="utf-8">
7
+ <meta name="viewport" content="width=device-width; initial-scale=1.0; maximum-scale=1.0;" />
8
+ <title>Help</title>
9
+
10
+ <style type="text/css">
11
+
12
+ @charset "utf-8";
13
+
14
+
15
+ #container{
16
+
17
+ text-align:center;
18
+ color:#FFFFFF;}
19
+
20
+ body{
21
+ margin:0;
22
+ padding:<length> 0 0 0;
23
+ font: 100%/1.4 Helvetica;
24
+ background-image:url(back.jpg);
25
+ background-position:center;
26
+
27
+
28
+ }
29
+
30
+ #headline{
31
+
32
+ background-color:#353639;
33
+ opacity:0.9;
34
+
35
+ color:FFF;
36
+ text-align:center;
37
+
38
+
39
+ }
40
+
41
+ #article{
42
+
43
+
44
+ background-color:#FFFFFF;
45
+ opacity: 0.8;
46
+ z-index:0;
47
+ margin-bottom:3%;
48
+ padding-bottom:0.1%;
49
+ border-radius: 15px;
50
+ border-top-left-radius:0px;
51
+ border-top-right-radius:0px;
52
+ color:#000;
53
+ margin: 10px auto;
54
+ position:relative;
55
+
56
+
57
+ }
58
+
59
+ #header{
60
+
61
+ height:auto;
62
+ width:100%;
63
+ background-color:#353639;
64
+ padding-bottom:5px;
65
+ padding-left:5px;
66
+ padding-right:5px;
67
+ padding-top:10px;
68
+ position: fixed;
69
+ top: 0;
70
+ left: 0;
71
+ height:40px;
72
+ overflow:visible;
73
+ min-width:400px;
74
+ z-index:20;
75
+
76
+
77
+ }
78
+
79
+
80
+
81
+
82
+ #content{
83
+ padding-top:70px;
84
+ z-index:-20;
85
+ max-width:420px;
86
+
87
+ }
88
+
89
+
90
+ /* ~~ Element/tag selectors ~~ */
91
+ ul, ol, dl { /* Due to variations between browsers, it's best practices to zero padding and margin on lists. For consistency, you can either specify the amounts you want here, or on the list items (LI, DT, DD) they contain. Remember that what you do here will cascade to the .nav list unless you write a more specific selector. */
92
+ padding: 0;
93
+ margin: 0;
94
+ }
95
+
96
+ h1, h2, h3, h4, h5, h6, p {
97
+ margin-top: 0; /* removing the top margin gets around an issue where margins can escape from their containing div. The remaining bottom margin will hold it away from any elements that follow. */
98
+ padding-right: 1px;
99
+ padding-left: 1px; /* adding the padding to the sides of the elements within the divs, instead of the divs themselves, gets rid of any box model math. A nested div with side padding can also be used as an alternate method.
100
+ */
101
+ color:#000;
102
+
103
+ }
104
+
105
+ a img { /* this selector removes the default blue border displayed in some browsers around an image when it is surrounded by a link */
106
+ border: none;
107
+
108
+ }
109
+
110
+ /* ~~ Styling for your site's links must remain in this order - including the group of selectors that create the hover effect. ~~ */
111
+ /*a:link {
112
+ color:#414958;
113
+ text-decoration: underline; unless you style your links to look extremely unique, it's best to provide underlines for quick visual identification */
114
+
115
+
116
+ a:hover, a:active, a:focus { /* this group of selectors will give a keyboard navigator the same hover experience as the person using a mouse. */
117
+ text-decoration: none;}
118
+
119
+
120
+ * {
121
+ -webkit-touch-callout: none;
122
+ -webkit-user-select: none; /* Disable selection/Copy of UIWebView */
123
+ }
124
+
125
+
126
+
127
+
128
+
129
+
130
+ </style>
131
+
132
+
133
+
134
+ </head>
135
+
136
+
137
+
138
+
139
+ <body>
140
+ <div id="container">
141
+
142
+
143
+ <center>
144
+
145
+
146
+ <div id="header">
147
+
148
+ <a href="gestures.html"><img src="nav_gestures.png"></a>
149
+ <a href="toolbar.html"><img src="nav_toolbar.png"></a>
150
+ <a href="touch_pointer.html"><img src="nav_touch_pointer.png"></a>
151
+
152
+ </div>
153
+
154
+ <div id="content">
155
+
156
+ <h1>Touch Pointer</h1>
157
+ <p><img src="touch_pointer.png">
158
+ </div>
159
+
160
+ </center>
161
+ </div>
162
+
163
+ </body>
164
+ </html>
local-test-freerdp-full-01/afc-freerdp/client/iOS/Resources/help_page/touch_pointer_phone.html ADDED
@@ -0,0 +1,161 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN">
2
+
3
+ <html>
4
+
5
+ <head>
6
+ <meta charset="utf-8">
7
+ <meta name="viewport" content="width=device-width; initial-scale=1.0; maximum-scale=1.0;" />
8
+ <title>Help</title>
9
+
10
+ <style type="text/css">
11
+
12
+ @charset "utf-8";
13
+
14
+
15
+ #container{
16
+
17
+ text-align:center;
18
+ color:#FFFFFF;}
19
+
20
+ body{
21
+ margin:0;
22
+ padding:<length> 0 0 0;
23
+ font: 100% Helvetica;
24
+ background-image:url(back.jpg);
25
+ background-position:center;
26
+
27
+
28
+ }
29
+
30
+ #headline{
31
+
32
+ background-color:#353639;
33
+ opacity:0.9;
34
+
35
+ color:FFF;
36
+ text-align:center;
37
+
38
+
39
+ }
40
+
41
+ #article{
42
+
43
+
44
+ background-color:#FFFFFF;
45
+ opacity: 0.8;
46
+ z-index:0;
47
+ margin-bottom:3%;
48
+ padding-bottom:0.1%;
49
+ border-radius: 15px;
50
+ border-top-left-radius:0px;
51
+ border-top-right-radius:0px;
52
+ color:#000;
53
+ margin: 10px auto;
54
+ position:relative;
55
+
56
+
57
+ }
58
+
59
+ #header{
60
+
61
+
62
+ width:100%;
63
+ background-color:#353639;
64
+ padding-bottom:1px;
65
+ padding-left:5px;
66
+ padding-right:5px;
67
+ padding-top:5px;
68
+ position: fixed;
69
+ top: 0;
70
+ left: 0;
71
+ height:30px;
72
+
73
+ min-width:250px;
74
+ z-index:20;
75
+
76
+
77
+ }
78
+
79
+
80
+ #content{
81
+ padding-top:40px;
82
+ z-index:-20;
83
+ max-width:300px;
84
+
85
+ }
86
+
87
+
88
+ /* ~~ Element/tag selectors ~~ */
89
+ ul, ol, dl { /* Due to variations between browsers, it's best practices to zero padding and margin on lists. For consistency, you can either specify the amounts you want here, or on the list items (LI, DT, DD) they contain. Remember that what you do here will cascade to the .nav list unless you write a more specific selector. */
90
+ padding: 0;
91
+ margin: 0;
92
+ }
93
+
94
+ h1, h2, h3, h4, h5, h6, p {
95
+ margin-top: 0; /* removing the top margin gets around an issue where margins can escape from their containing div. The remaining bottom margin will hold it away from any elements that follow. */
96
+ padding-right: 1px;
97
+ padding-left: 1px; /* adding the padding to the sides of the elements within the divs, instead of the divs themselves, gets rid of any box model math. A nested div with side padding can also be used as an alternate method.
98
+ */
99
+ color:#000;
100
+
101
+ }
102
+
103
+ a img { /* this selector removes the default blue border displayed in some browsers around an image when it is surrounded by a link */
104
+ border: none;
105
+
106
+ }
107
+
108
+ /* ~~ Styling for your site's links must remain in this order - including the group of selectors that create the hover effect. ~~ */
109
+ /*a:link {
110
+ color:#414958;
111
+ text-decoration: underline; unless you style your links to look extremely unique, it's best to provide underlines for quick visual identification */
112
+
113
+
114
+ a:hover, a:active, a:focus { /* this group of selectors will give a keyboard navigator the same hover experience as the person using a mouse. */
115
+ text-decoration: none;}
116
+
117
+
118
+ * {
119
+ -webkit-touch-callout: none;
120
+ -webkit-user-select: none; /* Disable selection/Copy of UIWebView */
121
+ }
122
+
123
+
124
+
125
+
126
+ </style>
127
+
128
+
129
+
130
+ </head>
131
+
132
+
133
+
134
+
135
+ <body>
136
+ <div id="container">
137
+
138
+
139
+ <center>
140
+
141
+
142
+ <div id="header">
143
+
144
+ <a href="gestures_phone.html"><img src="nav_gestures.png" height="90%"></a>
145
+ <a href="toolbar_phone.html"><img src="nav_toolbar.png" height="90%"></a>
146
+ <a href="touch_pointer_phone.html"><img src="nav_touch_pointer.png" height="90%""></a>
147
+
148
+ </div>
149
+
150
+ <div id="content">
151
+
152
+ <h2>Touch Pointer</h2>
153
+ <p><img src="touch_pointer_phone.png">
154
+ </p>
155
+ </div>
156
+
157
+ </center>
158
+ </div>
159
+
160
+ </body>
161
+ </html>