-
Notifications
You must be signed in to change notification settings - Fork 204
/
Copy pathConfiguration.cs
557 lines (497 loc) · 19.5 KB
/
Configuration.cs
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
#region Copyright Syncfusion Inc. 2001-2016.
// Copyright Syncfusion Inc. 2001-2016. All rights reserved.
// Use of this code is subject to the terms of our license.
// A copy of the current license can be obtained at any time by e-mailing
// [email protected]. Any infringement will be prosecuted under
// applicable laws.
#endregion
using System;
using Android.Content;
using Android.Views;
using Android.Widget;
using Com.Syncfusion.Sfrangeslider;
using System.Collections.Generic;
using Java.Util;
using Android.Graphics;
using Java.Text;
using Android.App;
using Android.OS;
using Com.Syncfusion.Schedule;
using Com.Syncfusion.Schedule.Enums;
using System.Collections.ObjectModel;
namespace SampleBrowser
{
public class Configuration : SamplePage, IDisposable
{
public Configuration()
{
}
private SfSchedule sfschedule;
private FrameLayout propertylayout;
private MonthViewSettings monthsettings;
private bool isInitialLoad = false;
public override View GetSampleContent(Context context)
{
sfschedule = new SfSchedule(context);
weekViewSetting = new WeekViewSettings();
monthsettings = new MonthViewSettings();
propertylayout = new FrameLayout(context);
isInitialLoad = true;
propertylayout = SetOptionPage(context);
GetAppointments();
sfschedule.ItemsSource = appointmentCollection;
sfschedule.ScheduleView = ScheduleView.WeekView;
sfschedule.DayViewSettings.NonAccessibleBlocks = SetNonAccessibleBlocks();
sfschedule.WeekViewSettings.NonAccessibleBlocks = SetNonAccessibleBlocks();
sfschedule.WorkWeekViewSettings.NonAccessibleBlocks = SetNonAccessibleBlocks();
monthsettings.BlackoutDates = SetBlackoutDates();
monthsettings.ShowWeekNumber = true;
sfschedule.MonthViewSettings = monthsettings;
sfschedule.LayoutParameters = new FrameLayout.LayoutParams(
LinearLayout.LayoutParams.MatchParent,
LinearLayout.LayoutParams.MatchParent);
LinearLayout layout = new LinearLayout(context);
layout.Orientation = Android.Widget.Orientation.Vertical;
layout.AddView(sfschedule);
return layout;
}
private List<String> subjectCollection;
private List<String> colorCollection;
private List<Calendar> startTimeCollection;
private List<Calendar> endTimeCollection;
private ScheduleAppointmentCollection appointmentCollection;
//Creating appointments for ScheduleAppointmentCollection
public void GetAppointments()
{
appointmentCollection = new ScheduleAppointmentCollection();
SetColors();
RandomNumbers();
SetSubjects();
SetStartTime();
SetEndTime();
for (int i = 0; i < 10; i++)
{
ScheduleAppointment scheduleAppointment = new ScheduleAppointment();
scheduleAppointment.Color = Color.ParseColor(colorCollection[i]);
scheduleAppointment.Subject = subjectCollection[i];
scheduleAppointment.StartTime = startTimeCollection[i];
scheduleAppointment.EndTime = endTimeCollection[i];
appointmentCollection.Add(scheduleAppointment);
}
}
private void SetSubjects()
{
subjectCollection = new List<String>();
subjectCollection.Add("GoToMeeting");
subjectCollection.Add("Business Meeting");
subjectCollection.Add("Conference");
subjectCollection.Add("Project Status Discussion");
subjectCollection.Add("Auditing");
subjectCollection.Add("Client Meeting");
subjectCollection.Add("Generate Report");
subjectCollection.Add("Target Meeting");
subjectCollection.Add("General Meeting");
subjectCollection.Add("Pay House Rent");
subjectCollection.Add("Car Service");
subjectCollection.Add("Medical Check Up");
subjectCollection.Add("Wedding Anniversary");
subjectCollection.Add("Sam's Birthday");
subjectCollection.Add("Jenny's Birthday");
}
private void SetColors()
{
colorCollection = new List<String>();
colorCollection.Add("#FFA2C139");
colorCollection.Add("#FFD80073");
colorCollection.Add("#FF1BA1E2");
colorCollection.Add("#FFE671B8");
colorCollection.Add("#FFF09609");
colorCollection.Add("#FF339933");
colorCollection.Add("#FF00ABA9");
colorCollection.Add("#FFE671B8");
colorCollection.Add("#FF1BA1E2");
colorCollection.Add("#FFD80073");
colorCollection.Add("#FFA2C139");
colorCollection.Add("#FFD80073");
colorCollection.Add("#FF339933");
colorCollection.Add("#FFE671B8");
colorCollection.Add("#FF00ABA9");
}
private List<Int32> randomNums;
private void RandomNumbers()
{
randomNums = new List<Int32>();
Java.Util.Random rand = new Java.Util.Random();
for (int i = 0; i < 10; i++)
{
int randomNum = rand.NextInt((15 - 9) + 1) + 9;
randomNums.Add(randomNum);
}
}
private void SetStartTime()
{
Calendar currentDate = Calendar.Instance;
startTimeCollection = new List<Calendar>();
int count = 0;
for (int i = -5; i < 5; i++)
{
Calendar startTime = (Calendar)currentDate.Clone();
startTime.Set(
currentDate.Get(CalendarField.Year),
currentDate.Get(CalendarField.Month),
currentDate.Get(CalendarField.DayOfMonth) + i,
randomNums[count],
0,
0);
startTimeCollection.Add(startTime);
count++;
}
}
private void SetEndTime()
{
Calendar currentDate = Calendar.Instance;
endTimeCollection = new List<Calendar>();
int count = 0;
for (int i = -5; i < 5; i++)
{
Calendar endTime = (Calendar)currentDate.Clone();
endTime.Set(
currentDate.Get(CalendarField.Year),
currentDate.Get(CalendarField.Month),
currentDate.Get(CalendarField.DayOfMonth) + i,
randomNums[count] + 1,
0,
0);
endTimeCollection.Add(endTime);
count++;
}
}
[System.Diagnostics.CodeAnalysis.SuppressMessage("Microsoft.Performance", "CA1822:MarkMembersAsStatic")]
private ObservableCollection<Calendar> SetBlackoutDates()
{
ObservableCollection<Calendar> black_dates = new ObservableCollection<Calendar>();
Calendar currentDate = Calendar.Instance;
Calendar firstDate = (Calendar)currentDate.Clone();
firstDate.Set(
currentDate.Get(CalendarField.Year),
currentDate.Get(CalendarField.Month),
21);
black_dates.Add(firstDate);
Calendar secondDate = (Calendar)currentDate.Clone();
secondDate.Set(
currentDate.Get(CalendarField.Year),
currentDate.Get(CalendarField.Month),
22);
black_dates.Add(secondDate);
Calendar thirdDate = (Calendar)currentDate.Clone();
thirdDate.Set(
currentDate.Get(CalendarField.Year),
currentDate.Get(CalendarField.Month),
23);
black_dates.Add(thirdDate);
return black_dates;
}
private NonAccessibleBlocksCollection SetNonAccessibleBlocks()
{
NonAccessibleBlocksCollection nonAccessibleBlocksCollection = new NonAccessibleBlocksCollection();
NonAccessibleBlock lunch = new NonAccessibleBlock();
lunch.StartTime = 13;
lunch.EndTime = 14;
lunch.Text = "Lunch Break";
nonAccessibleBlocksCollection.Add(lunch);
nonAccessibleBlocks = nonAccessibleBlocksCollection;
return nonAccessibleBlocks;
}
private WeekViewSettings weekViewSetting;
private SfRangeSlider workHourRangeSlider;
private CheckBox showWeekNumber;
private TextView workingHoursTxtBlock;
private CheckBox showNonAccessibleBlockcheckBox;
private CheckBox showBlackoutDates;
private LinearLayout monthViewLayout, otherviewsLayout;
private NonAccessibleBlocksCollection nonAccessibleBlocks;
public override View GetPropertyWindowLayout(Context context)
{
return propertylayout;
}
private FrameLayout SetOptionPage(Context context)
{
FrameLayout propertyLayout = new FrameLayout(context);
LinearLayout layout = new LinearLayout(context);
layout.Orientation = Android.Widget.Orientation.Vertical;
layout.SetBackgroundColor(Color.White);
layout.SetPadding(15, 15, 15, 20);
monthViewLayout = new LinearLayout(context);
monthViewLayout.Orientation = Android.Widget.Orientation.Vertical;
monthViewLayout.SetBackgroundColor(Color.White);
monthViewLayout.SetPadding(15, 15, 15, 20);
otherviewsLayout = new LinearLayout(context);
otherviewsLayout.Orientation = Android.Widget.Orientation.Vertical;
otherviewsLayout.SetBackgroundColor(Color.White);
otherviewsLayout.SetPadding(15, 15, 15, 20);
//Schedule Type
TextView scheduleType_txtBlock = new TextView(context);
scheduleType_txtBlock.Text = "Select the Schedule Type";
scheduleType_txtBlock.TextSize = 20;
scheduleType_txtBlock.SetPadding(0, 0, 0, 10);
scheduleType_txtBlock.SetTextColor(Color.Black);
Spinner typeSpinner = new Spinner(context, SpinnerMode.Dialog);
typeSpinner.SetMinimumHeight(60);
typeSpinner.SetBackgroundColor(Color.Gray);
typeSpinner.DropDownWidth = 600;
typeSpinner.SetPadding(10, 10, 0, 10);
typeSpinner.SetGravity(GravityFlags.CenterHorizontal);
layout.AddView(scheduleType_txtBlock);
layout.AddView(typeSpinner);
List<String> list = new List<String>();
list.Add("Week View");
list.Add("Day View");
list.Add("Work Week View");
list.Add("Month View");
ArrayAdapter<String> dataAdapter = new ArrayAdapter<String>(context, Android.Resource.Layout.SimpleSpinnerItem, list);
dataAdapter.SetDropDownViewResource(Android.Resource.Layout.SimpleSpinnerDropDownItem);
typeSpinner.Adapter = dataAdapter;
typeSpinner.ItemSelected += SType_spinner_ItemSelected;
View divider1 = new View(context);
divider1.LayoutParameters = new ViewGroup.LayoutParams(ViewGroup.LayoutParams.MatchParent, 2);
divider1.SetBackgroundColor(Color.Gray);
otherviewsLayout.AddView(divider1);
//Working Hours Duration
workingHoursTxtBlock = new TextView(context);
workingHoursTxtBlock.SetPadding(0, 20, 0, 0);
workingHoursTxtBlock.Text = "Working Hours Duration";
workingHoursTxtBlock.TextSize = 20;
workingHoursTxtBlock.SetTextColor(Color.Black);
workHourRangeSlider = new SfRangeSlider(context);
workHourRangeSlider.SetPadding(0, 0, 0, 30);
workHourRangeSlider.Minimum = 0;
workHourRangeSlider.Maximum = 24;
workHourRangeSlider.TickFrequency = 2;
workHourRangeSlider.StepFrequency = 1;
workHourRangeSlider.RangeStart = weekViewSetting.WorkStartHour;
workHourRangeSlider.RangeEnd = weekViewSetting.WorkEndHour;
workHourRangeSlider.LayoutParameters = new FrameLayout.LayoutParams(ViewGroup.LayoutParams.MatchParent, 100);
workHourRangeSlider.RangeChanged += WorkHour_rangeSlider_RangeChanged;
workHourRangeSlider.ShowRange = true;
workHourRangeSlider.ValuePlacement = ValuePlacement.TopLeft;
workHourRangeSlider.ToolTipPlacement = ToolTipPlacement.None;
workHourRangeSlider.TickPlacement = TickPlacement.None;
workHourRangeSlider.ShowValueLabel = true;
workHourRangeSlider.SnapsTo = SnapsTo.StepValues;
if (context.Resources.DisplayMetrics.Density < 2)
{
workHourRangeSlider.LayoutParameters = new ViewGroup.LayoutParams(ViewGroup.LayoutParams.MatchParent, 150);
}
else if (context.Resources.DisplayMetrics.Density == 2)
{
workHourRangeSlider.LayoutParameters = new ViewGroup.LayoutParams(ViewGroup.LayoutParams.MatchParent, 200);
}
else
{
workHourRangeSlider.LayoutParameters = new ViewGroup.LayoutParams(ViewGroup.LayoutParams.MatchParent, 250);
}
otherviewsLayout.AddView(workingHoursTxtBlock);
otherviewsLayout.AddView(workHourRangeSlider);
View divider2 = new View(context);
divider2.LayoutParameters = new ViewGroup.LayoutParams(ViewGroup.LayoutParams.MatchParent, 2);
divider2.SetBackgroundColor(Color.Gray);
otherviewsLayout.AddView(divider2);
showNonAccessibleBlockcheckBox = new CheckBox(context);
showNonAccessibleBlockcheckBox.SetPadding(0, 10, 0, 10);
showNonAccessibleBlockcheckBox.Text = "Show Non-Accessible Blocks";
showNonAccessibleBlockcheckBox.TextSize = 20;
showNonAccessibleBlockcheckBox.SetTextColor(Color.Black);
showNonAccessibleBlockcheckBox.Checked = true;
showNonAccessibleBlockcheckBox.CheckedChange += Show_Non_Accessible_Block_checkBox_CheckedChange;
otherviewsLayout.AddView(showNonAccessibleBlockcheckBox);
View monthlayoutDivider = new View(context);
monthlayoutDivider.LayoutParameters = new ViewGroup.LayoutParams(ViewGroup.LayoutParams.MatchParent, 2);
monthlayoutDivider.SetBackgroundColor(Color.Gray);
monthViewLayout.AddView(monthlayoutDivider);
//Show black out dates
showBlackoutDates = new CheckBox(context);
showBlackoutDates.SetPadding(0, 10, 0, 10);
showBlackoutDates.Text = "Show Blackout days";
showBlackoutDates.TextSize = 20;
showBlackoutDates.Checked = true;
showBlackoutDates.SetTextColor(Color.Black);
showBlackoutDates.CheckedChange += Show_Blackout_Dates_CheckedChange;
monthViewLayout.AddView(showBlackoutDates);
//Show week number
showWeekNumber = new CheckBox(context);
showWeekNumber.SetPadding(0, 10, 0, 10);
showWeekNumber.Text = "Show Week number";
showWeekNumber.TextSize = 20;
showWeekNumber.Checked = true;
showWeekNumber.SetTextColor(Color.Black);
showWeekNumber.CheckedChange += Show_week_number_CheckedChange;
monthViewLayout.AddView(showWeekNumber);
View monthLayoutdivider2 = new View(context);
monthLayoutdivider2.LayoutParameters = new ViewGroup.LayoutParams(ViewGroup.LayoutParams.MatchParent, 2);
monthLayoutdivider2.SetBackgroundColor(Color.Gray);
monthViewLayout.AddView(monthLayoutdivider2);
View divider5 = new View(context);
divider5.LayoutParameters = new ViewGroup.LayoutParams(ViewGroup.LayoutParams.MatchParent, 2);
divider5.SetBackgroundColor(Color.Gray);
otherviewsLayout.AddView(divider5);
FrameLayout collapsedLayouts = new FrameLayout(context);
collapsedLayouts.AddView(otherviewsLayout);
collapsedLayouts.AddView(monthViewLayout);
layout.AddView(collapsedLayouts);
if (sfschedule.ScheduleView != ScheduleView.MonthView)
{
monthViewLayout.Visibility = ViewStates.Invisible;
}
propertyLayout.AddView(layout);
return propertyLayout;
}
private void SType_spinner_ItemSelected(object sender, AdapterView.ItemSelectedEventArgs e)
{
Spinner spinner = (Spinner)sender;
String selectedItem = spinner.GetItemAtPosition(e.Position).ToString();
if (sfschedule != null)
{
monthViewLayout.Visibility = ViewStates.Invisible;
otherviewsLayout.Visibility = ViewStates.Visible;
if (selectedItem.Equals("Day View"))
{
sfschedule.ScheduleView = ScheduleView.DayView;
}
else if (selectedItem.Equals("Week View"))
{
sfschedule.ScheduleView = ScheduleView.WeekView;
sfschedule.EnableNavigation = true;
}
else if (selectedItem.Equals("Work Week View"))
{
sfschedule.ScheduleView = ScheduleView.WorkWeekView;
}
else if (selectedItem.Equals("Month View"))
{
monthViewLayout.Visibility = ViewStates.Visible;
otherviewsLayout.Visibility = ViewStates.Invisible;
sfschedule.ScheduleView = ScheduleView.MonthView;
}
}
}
// void RangeChanged(Object o, double v, double v1)
private void WorkHour_rangeSlider_RangeChanged(object sender, RangeChangedEventArgs e)
{
sfschedule.DayViewSettings.WorkStartHour = e.RangeStart;
sfschedule.DayViewSettings.WorkEndHour = e.RangeEnd;
sfschedule.WeekViewSettings.WorkStartHour = e.RangeStart;
sfschedule.WeekViewSettings.WorkEndHour = e.RangeEnd;
sfschedule.WorkWeekViewSettings.WorkStartHour = e.RangeStart;
sfschedule.WorkWeekViewSettings.WorkEndHour = e.RangeEnd;
}
//void onCheckedChanged(CompoundButton buttonView, bool isChecked)
private void Show_Non_Accessible_Block_checkBox_CheckedChange(object sender, CompoundButton.CheckedChangeEventArgs e)
{
if (e.IsChecked)
{
sfschedule.DayViewSettings.NonAccessibleBlocks.Add(SetNonAccessibleBlocks()[0]);
sfschedule.WeekViewSettings.NonAccessibleBlocks.Add(SetNonAccessibleBlocks()[0]);
sfschedule.WorkWeekViewSettings.NonAccessibleBlocks.Add(SetNonAccessibleBlocks()[0]);
}
else
{
sfschedule.DayViewSettings.NonAccessibleBlocks.Clear();
sfschedule.WeekViewSettings.NonAccessibleBlocks.Clear();
sfschedule.WorkWeekViewSettings.NonAccessibleBlocks.Clear();
}
}
// void onCheckedChanged(CompoundButton buttonView, boolean isChecked)
private void Show_Blackout_Dates_CheckedChange(object sender, CompoundButton.CheckedChangeEventArgs e)
{
if (e.IsChecked)
{
if (!isInitialLoad)
{
sfschedule.MonthViewSettings.BlackoutDates = SetBlackoutDates();
isInitialLoad = false;
}
}
else
{
sfschedule.MonthViewSettings.BlackoutDates.Clear();
}
isInitialLoad = false;
}
//void onCheckedChanged(CompoundButton buttonView, boolean isChecked)
private void Show_week_number_CheckedChange(object sender, CompoundButton.CheckedChangeEventArgs e)
{
if (e.IsChecked)
{
if (sfschedule != null)
{
sfschedule.MonthViewSettings.ShowWeekNumber = true;
}
}
else
{
sfschedule.MonthViewSettings.ShowWeekNumber = false;
}
}
public override void OnApplyChanges()
{
base.OnApplyChanges();
}
public void Dispose()
{
if (sfschedule != null)
{
sfschedule.Dispose();
sfschedule = null;
}
if (propertylayout != null)
{
propertylayout.Dispose();
propertylayout = null;
}
if (monthViewLayout != null)
{
monthViewLayout.Dispose();
monthViewLayout = null;
}
if (otherviewsLayout != null)
{
otherviewsLayout.Dispose();
otherviewsLayout = null;
}
if (workHourRangeSlider != null)
{
workHourRangeSlider.RangeChanged -= WorkHour_rangeSlider_RangeChanged;
workHourRangeSlider.Dispose();
workHourRangeSlider = null;
}
if (showWeekNumber != null)
{
showWeekNumber.CheckedChange -= Show_week_number_CheckedChange;
showWeekNumber.Dispose();
showWeekNumber = null;
}
if (workingHoursTxtBlock != null)
{
workingHoursTxtBlock.Dispose();
workingHoursTxtBlock = null;
}
if (showNonAccessibleBlockcheckBox != null)
{
showNonAccessibleBlockcheckBox.CheckedChange -= Show_Non_Accessible_Block_checkBox_CheckedChange;
showNonAccessibleBlockcheckBox.Dispose();
showNonAccessibleBlockcheckBox = null;
}
if (showBlackoutDates != null)
{
showBlackoutDates.CheckedChange -= Show_Blackout_Dates_CheckedChange;
showBlackoutDates.Dispose();
showBlackoutDates = null;
}
if (monthViewLayout != null)
{
monthViewLayout.Dispose();
monthViewLayout = null;
}
}
}
}