-
Notifications
You must be signed in to change notification settings - Fork 0
/
Atom.Windows.Controls.TabControl.xml
1435 lines (1435 loc) · 75.9 KB
/
Atom.Windows.Controls.TabControl.xml
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
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
<?xml version="1.0"?>
<doc>
<assembly>
<name>Atom.Windows.Controls.TabControl</name>
</assembly>
<members>
<member name="T:Atom.Windows.Controls.TabControl.TabControlApplicationPage">
<summary>
A <see cref="T:Atom.Windows.Controls.BaseApplicationPage"/> that uses a <see cref="T:Atom.Windows.Controls.TabControl.TabControlHost"/> as its <see cref="P:Atom.Windows.Controls.BaseApplicationPage.MainBodyGrid"/> child
</summary>
</member>
<member name="P:Atom.Windows.Controls.TabControl.TabControlApplicationPage.Host">
<summary>
The tab control host
</summary>
</member>
<member name="M:Atom.Windows.Controls.TabControl.TabControlApplicationPage.#ctor">
<summary>
Default constructor
</summary>
</member>
<member name="M:Atom.Windows.Controls.TabControl.TabControlApplicationPage.Add(System.String,System.Windows.UIElement,System.Boolean)">
<summary>
Adds the specified <paramref name="content"/> to the <see cref="T:Atom.Windows.Controls.TabControl.TabControlHost"/>
</summary>
<param name="tabName">The name of the tab</param>
<param name="content">The element of the tab</param>
<param name="closable">Defines whether this tab can be closed or not</param>
</member>
<member name="M:Atom.Windows.Controls.TabControl.TabControlApplicationPage.Add(System.String,System.String,System.Windows.UIElement,System.Boolean)">
<summary>
Adds the specified <paramref name="content"/> to the <see cref="T:Atom.Windows.Controls.TabControl.TabControlHost"/>
</summary>
<param name="tabName">The text of the tab</param>
<param name="pathData">The path data of the icon of the tab</param>
<param name="content">The body of the tab</param>
<param name="closable">Defines whether this tab can be closed or not</param>
</member>
<member name="M:Atom.Windows.Controls.TabControl.TabControlApplicationPage.CreateGUI">
<summary>
Creates and adds the required GUI elements
</summary>
</member>
<member name="T:Atom.Windows.Controls.TabControl.OverlayManager">
<summary>
The data gathered from the overlay manager
</summary>
</member>
<member name="P:Atom.Windows.Controls.TabControl.OverlayManager.TabIsDragged">
<summary>
A flag indicating whether there is a tab that is being dragged or not
</summary>
</member>
<member name="P:Atom.Windows.Controls.TabControl.OverlayManager.PointedTabControl">
<summary>
The tab control that is pointed by the cursor
</summary>
</member>
<member name="P:Atom.Windows.Controls.TabControl.OverlayManager.OverlayWindow">
<summary>
The overlay window that is currently presented
</summary>
</member>
<member name="T:Atom.Windows.Controls.TabControl.Tab">
<summary>
A tab for a tab control
</summary>
</member>
<member name="F:Atom.Windows.Controls.TabControl.Tab.mTabRelativeSource">
<summary>
The relative source for the tab
</summary>
</member>
<member name="F:Atom.Windows.Controls.TabControl.Tab.mContentContainer">
<summary>
The member of the <see cref="P:Atom.Windows.Controls.TabControl.Tab.Content"/> property
</summary>
</member>
<member name="F:Atom.Windows.Controls.TabControl.Tab.hookID">
<summary>
The ID of the currently active global hook
</summary>
</member>
<member name="F:Atom.Windows.Controls.TabControl.Tab.proc">
<summary>
The delegate we need to keep alive in order to not get disposed by the GC
</summary>
</member>
<member name="F:Atom.Windows.Controls.TabControl.Tab.mMouseDown">
<summary>
A flag indicating whether the user is holding the left click on the tab
</summary>
</member>
<member name="F:Atom.Windows.Controls.TabControl.Tab.mIsMoved">
<summary>
A flag indicating whether the tab has just been moved to another window
</summary>
</member>
<member name="F:Atom.Windows.Controls.TabControl.Tab.mTabControl">
<summary>
The tab control that contains this tab
</summary>
</member>
<member name="F:Atom.Windows.Controls.TabControl.Tab.mWindowParent">
<summary>
The window that contains this tab
</summary>
</member>
<member name="F:Atom.Windows.Controls.TabControl.Tab.mContainer">
<summary>
The container that contains the tab control
</summary>
</member>
<member name="F:Atom.Windows.Controls.TabControl.Tab.mAdditionalLength">
<summary>
The additional length the cursor has to move in order to move the tab.
Used when a small tab moves into the position of a larger tab
</summary>
</member>
<member name="P:Atom.Windows.Controls.TabControl.Tab.PinButton">
<summary>
The pin button
</summary>
</member>
<member name="P:Atom.Windows.Controls.TabControl.Tab.CloseButton">
<summary>
The close button
</summary>
</member>
<member name="P:Atom.Windows.Controls.TabControl.Tab.ContentContainer">
<summary>
The container that presents the <see cref="P:Atom.Windows.Controls.TabControl.Tab.Content"/>
</summary>
</member>
<member name="P:Atom.Windows.Controls.TabControl.Tab.Content">
<summary>
The content that the tab navigates to
</summary>
</member>
<member name="F:Atom.Windows.Controls.TabControl.Tab.ContentProperty">
<summary>
Identifies the <see cref="P:Atom.Windows.Controls.TabControl.Tab.Content"/> dependency property
</summary>
</member>
<member name="M:Atom.Windows.Controls.TabControl.Tab.OnContentPropertyChanged(System.Windows.DependencyObject,System.Windows.DependencyPropertyChangedEventArgs)">
<summary>
Fires when the <see cref="P:Atom.Windows.Controls.TabControl.Tab.Content"/> property changes
</summary>
</member>
<member name="P:Atom.Windows.Controls.TabControl.Tab.Pinned">
<summary>
If true, then the tab is pinned, otherwise it's not
</summary>
</member>
<member name="F:Atom.Windows.Controls.TabControl.Tab.PinnedProperty">
<summary>
Identifies the <see cref="P:Atom.Windows.Controls.TabControl.Tab.Pinned"/> dependency property
</summary>
</member>
<member name="P:Atom.Windows.Controls.TabControl.Tab.PathData">
<summary>
The path data of the icon of the tab
</summary>
</member>
<member name="F:Atom.Windows.Controls.TabControl.Tab.PathDataProperty">
<summary>
Identifies the <see cref="P:Atom.Windows.Controls.TabControl.Tab.PathData"/> dependency property
</summary>
</member>
<member name="P:Atom.Windows.Controls.TabControl.Tab.Closable">
<summary>
If true, then the tab can be closed, otherwise it can not
</summary>
</member>
<member name="F:Atom.Windows.Controls.TabControl.Tab.ClosableProperty">
<summary>
Identifies the <see cref="P:Atom.Windows.Controls.TabControl.Tab.Closable"/> dependency property
</summary>
</member>
<member name="P:Atom.Windows.Controls.TabControl.Tab.PinButtonBackColor">
<summary>
The back color of the pin button
</summary>
</member>
<member name="F:Atom.Windows.Controls.TabControl.Tab.PinButtonBackColorProperty">
<summary>
Identifies the <see cref="P:Atom.Windows.Controls.TabControl.Tab.PinButtonBackColor"/> dependency property
</summary>
</member>
<member name="P:Atom.Windows.Controls.TabControl.Tab.PinButtonPinnedBackColor">
<summary>
The back color of the pin button when the tab is pinned
</summary>
</member>
<member name="F:Atom.Windows.Controls.TabControl.Tab.pinButtonPinnedBackColorProperty">
<summary>
Identifies the <see cref="P:Atom.Windows.Controls.TabControl.Tab.PinButtonPinnedBackColor"/> dependency property
</summary>
</member>
<member name="P:Atom.Windows.Controls.TabControl.Tab.PinButtonForeColor">
<summary>
The fore color of the pin button
</summary>
</member>
<member name="F:Atom.Windows.Controls.TabControl.Tab.PinButtonForeColorProperty">
<summary>
Identifies the <see cref="P:Atom.Windows.Controls.TabControl.Tab.PinButtonForeColor"/> dependency property
</summary>
</member>
<member name="P:Atom.Windows.Controls.TabControl.Tab.PinButtonPinnedForeColor">
<summary>
The fore color of the pin button when the tab is pinned
</summary>
</member>
<member name="F:Atom.Windows.Controls.TabControl.Tab.PinButtonPinnedForeColorProperty">
<summary>
Identifies the <see cref="P:Atom.Windows.Controls.TabControl.Tab.PinButtonPinnedForeColor"/> dependency property
</summary>
</member>
<member name="P:Atom.Windows.Controls.TabControl.Tab.CloseButtonBackColor">
<summary>
The back color of the close button
</summary>
</member>
<member name="F:Atom.Windows.Controls.TabControl.Tab.CloseButtonBackColorProperty">
<summary>
Identifies the <see cref="P:Atom.Windows.Controls.TabControl.Tab.CloseButtonBackColor"/> dependency property
</summary>
</member>
<member name="P:Atom.Windows.Controls.TabControl.Tab.CloseButtonForeColor">
<summary>
The fore color of the close button
</summary>
</member>
<member name="F:Atom.Windows.Controls.TabControl.Tab.CloseButtonForeColorProperty">
<summary>
Identifies the <see cref="P:Atom.Windows.Controls.TabControl.Tab.CloseButtonForeColor"/> dependency property
</summary>
</member>
<member name="P:Atom.Windows.Controls.TabControl.Tab.HasDialog">
<summary>
If true, then a confirmation dialog will show up before closing the dialog
</summary>
</member>
<member name="F:Atom.Windows.Controls.TabControl.Tab.HasDialogProperty">
<summary>
Identifies the <see cref="P:Atom.Windows.Controls.TabControl.Tab.HasDialog"/> dependency property
</summary>
</member>
<member name="P:Atom.Windows.Controls.TabControl.Tab.Message">
<summary>
The confirmation message that is show before closing the dialog
</summary>
</member>
<member name="F:Atom.Windows.Controls.TabControl.Tab.MessageProperty">
<summary>
Identifies the <see cref="P:Atom.Windows.Controls.TabControl.Tab.Message"/> dependency property
</summary>
</member>
<member name="M:Atom.Windows.Controls.TabControl.Tab.#ctor">
<summary>
Default constructor
</summary>
</member>
<member name="M:Atom.Windows.Controls.TabControl.Tab.ToString">
<summary>
Returns a string that represents the object
</summary>
<returns></returns>
</member>
<member name="M:Atom.Windows.Controls.TabControl.Tab.ShowDialogAsync``2(``0)">
<summary>
Shows a dialog that returns a <typeparamref name="TDialogResult"/> when the user gives input and uses a <typeparamref name="TDialogOverlay"/> as the overlay
</summary>
<typeparam name="TDialogResult">The type of the dialog result</typeparam>
<typeparam name="TDialogOverlay">The type of the dialog overlay</typeparam>
<param name="dialogOverlay">The overlay that contains the dialog</param>
<returns></returns>
</member>
<member name="M:Atom.Windows.Controls.TabControl.Tab.ShowHintDialogAsync``2(``0,System.Boolean,System.Single)">
<summary>
Shows a minimal dialog that returns a <typeparamref name="TDialogResult"/> when the user gives input
</summary>
<typeparam name="THintDialogComponent">The type of the hint dialog component</typeparam>
<typeparam name="TDialogResult">The type of the dialog result</typeparam>
<param name="hintDialogComponent">The hint dialog component</param>
<param name="autoHide">A flag indicating whether the dialog component should get automatically hidden or not</param>
<param name="seconds">The time in seconds after the dialog component should get hidden</param>
<returns></returns>
</member>
<member name="M:Atom.Windows.Controls.TabControl.Tab.CreateWindow(Atom.Windows.Controls.TabControl.TabControlHostContainer)">
<summary>
Creates and returns a window to host the specified <paramref name="container"/>
</summary>
<param name="container">The container that the window is created for</param>
<returns></returns>
</member>
<member name="M:Atom.Windows.Controls.TabControl.Tab.CreateFirstContentElement">
<summary>
Creates and returns the first control element
</summary>
<returns></returns>
</member>
<member name="M:Atom.Windows.Controls.TabControl.Tab.CreateSecondContentElement">
<summary>
Creates and returns the second control element
</summary>
<returns></returns>
</member>
<member name="M:Atom.Windows.Controls.TabControl.Tab.CreateThirdContentElement">
<summary>
Creates and returns the third content element
</summary>
<returns></returns>
</member>
<member name="M:Atom.Windows.Controls.TabControl.Tab.CreateFourthContentElement">
<summary>
Creates and returns the fourth content element
</summary>
<returns></returns>
</member>
<member name="M:Atom.Windows.Controls.TabControl.Tab.OnSelectedChanged(System.Windows.DependencyPropertyChangedEventArgs)">
<summary>
Handles the change of the <see cref="P:Atom.Windows.Controls.BaseControl.Selected"/> property
</summary>
<param name="e">Event args</param>
</member>
<member name="M:Atom.Windows.Controls.TabControl.Tab.OnMouseLeftButtonDown(System.Windows.Input.MouseButtonEventArgs)">
<summary>
Signify that the user attempts to move the tab
</summary>
<param name="e"></param>
</member>
<member name="M:Atom.Windows.Controls.TabControl.Tab.OnMouseLeftButtonUp(System.Windows.Input.MouseButtonEventArgs)">
<summary>
Signify that the user finished moving the tab
</summary>
<param name="e"></param>
</member>
<member name="M:Atom.Windows.Controls.TabControl.Tab.OnMouseMove(System.Windows.Input.MouseEventArgs)">
<summary>
Handles the user's cursor movement
</summary>
</member>
<member name="M:Atom.Windows.Controls.TabControl.Tab.OnPreviewMouseDown(System.Windows.Input.MouseButtonEventArgs)">
<summary>
Handles the mouse down
</summary>
</member>
<member name="M:Atom.Windows.Controls.TabControl.Tab.OnMouseEnter(System.Windows.Input.MouseEventArgs)">
<summary>
Handles the mouse enter of the cursor
</summary>
<param name="e">Event args</param>
</member>
<member name="M:Atom.Windows.Controls.TabControl.Tab.OnMouseLeave(System.Windows.Input.MouseEventArgs)">
<summary>
Handles the mouse leave of the cursor
</summary>
<param name="e"></param>
</member>
<member name="M:Atom.Windows.Controls.TabControl.Tab.OnMouseDown(System.Windows.Input.MouseButtonEventArgs)">
<summary>
Handles the mouse down of the cursor
</summary>
<param name="e">Event args</param>
</member>
<member name="M:Atom.Windows.Controls.TabControl.Tab.OnMouseUp(System.Windows.Input.MouseButtonEventArgs)">
<summary>
Handles the mouse up of the cursor
</summary>
<param name="e"></param>
</member>
<member name="M:Atom.Windows.Controls.TabControl.Tab.ConfigureControlButtons(Atom.Windows.Controls.IconButton)">
<summary>
Configures the specified button to fit the theme of the tab
</summary>
<param name="button">The button to configure</param>
</member>
<member name="M:Atom.Windows.Controls.TabControl.Tab.GetTopmostHwnd(System.Collections.Generic.List{System.IntPtr})">
<summary>
Gets the top most window from a list of window handles
</summary>
<param name="hwnds">The list of the window handles</param>
<returns></returns>
</member>
<member name="M:Atom.Windows.Controls.TabControl.Tab.GlobalMouseHookCallback(System.Int32,System.IntPtr,System.IntPtr)">
<summary>
Handles the newly created window movement that contains the tab for as long as the user drags it
</summary>
<param name="nCode"></param>
<param name="wParam"></param>
<param name="lParam"></param>
<returns></returns>
</member>
<member name="M:Atom.Windows.Controls.TabControl.Tab.InitializaContentContainer">
<summary>
Creates and returns the <see cref="P:Atom.Windows.Controls.TabControl.Tab.ContentContainer"/>
</summary>
</member>
<member name="M:Atom.Windows.Controls.TabControl.Tab.OnContentChangedCore(System.Windows.DependencyPropertyChangedEventArgs)">
<summary>
Handles the change of the <see cref="P:Atom.Windows.Controls.TabControl.Tab.Content"/> property
</summary>
<param name="e">Event args</param>
</member>
<member name="T:Atom.Windows.Controls.TabControl.PinButton">
<summary>
The pin button of the <see cref="T:Atom.Windows.Controls.TabControl.Tab"/>
</summary>
</member>
<member name="M:Atom.Windows.Controls.TabControl.PinButton.#ctor">
<summary>
Default constructor
</summary>
</member>
<member name="M:Atom.Windows.Controls.TabControl.PinButton.OnSelectedChanged(System.Windows.DependencyPropertyChangedEventArgs)">
<summary>
Handles the change of the <see cref="P:Atom.Windows.Controls.BaseControl.Selected"/> property
</summary>
<param name="e">Event args</param>
</member>
<member name="T:Atom.Windows.Controls.TabControl.TabControl">
<summary>
Control that contains both the tabs and the tabs' contents
</summary>
</member>
<member name="P:Atom.Windows.Controls.TabControl.TabControl.PinnedTabs">
<summary>
Gets the number of pinned tabs.
It gets refreshed every time a pinned tab changes its status
because every time we add a tab we subscribe to its
property changed event!
</summary>
</member>
<member name="P:Atom.Windows.Controls.TabControl.TabControl.SelectedDockType">
<summary>
The dock type value that is selected through the overlay window
</summary>
</member>
<member name="P:Atom.Windows.Controls.TabControl.TabControl.TabsItemsControl">
<summary>
The items control that contains the tabs
</summary>
</member>
<member name="P:Atom.Windows.Controls.TabControl.TabControl.TabsContentItemsControl">
<summary>
The items control that contains the tabs content
</summary>
</member>
<member name="P:Atom.Windows.Controls.TabControl.TabControl.TabsHostBackground">
<summary>
The background
</summary>
</member>
<member name="F:Atom.Windows.Controls.TabControl.TabControl.TabsHostBackgroundProperty">
<summary>
Identifies the <see cref="P:Atom.Windows.Controls.TabControl.TabControl.TabsHostBackground"/> dependency property
</summary>
</member>
<member name="P:Atom.Windows.Controls.TabControl.TabControl.TabsHostPadding">
<summary>
The padding of the tabs host
</summary>
</member>
<member name="F:Atom.Windows.Controls.TabControl.TabControl.TabsHostPaddingProperty">
<summary>
Identifies the <see cref="P:Atom.Windows.Controls.TabControl.TabControl.TabsHostPadding"/> dependency property
</summary>
</member>
<member name="P:Atom.Windows.Controls.TabControl.TabControl.FillDock">
<summary>
A flag indicating whether we are trying to apply a fill dock
</summary>
</member>
<member name="F:Atom.Windows.Controls.TabControl.TabControl.FillDockProperty">
<summary>
Identifies the <see cref="P:Atom.Windows.Controls.TabControl.TabControl.FillDock"/> dependency property
</summary>
</member>
<member name="P:Atom.Windows.Controls.TabControl.TabControl.TopDock">
<summary>
A flag indicating whether we are trying to apply a top dock
</summary>
</member>
<member name="F:Atom.Windows.Controls.TabControl.TabControl.TopDockProperty">
<summary>
Identifies the <see cref="P:Atom.Windows.Controls.TabControl.TabControl.TopDock"/> dependency property
</summary>
</member>
<member name="P:Atom.Windows.Controls.TabControl.TabControl.BottomDock">
<summary>
A flag indicating whether we are trying to apply a bottom dock
</summary>
</member>
<member name="F:Atom.Windows.Controls.TabControl.TabControl.BottomDockProperty">
<summary>
Identifies the <see cref="P:Atom.Windows.Controls.TabControl.TabControl.BottomDock"/> dependency property
</summary>
</member>
<member name="P:Atom.Windows.Controls.TabControl.TabControl.LeftDock">
<summary>
A flag indicating whether we are trying to apply a right dock
</summary>
</member>
<member name="F:Atom.Windows.Controls.TabControl.TabControl.LeftDockProperty">
<summary>
Identifies the <see cref="P:Atom.Windows.Controls.TabControl.TabControl.LeftDock"/> dependency property
</summary>
</member>
<member name="P:Atom.Windows.Controls.TabControl.TabControl.RightDock">
<summary>
A flag indicating whether we are trying to apply a left dock
</summary>
</member>
<member name="F:Atom.Windows.Controls.TabControl.TabControl.RightDockProperty">
<summary>
Identifies the <see cref="P:Atom.Windows.Controls.TabControl.TabControl.RightDock"/> dependency property
</summary>
</member>
<member name="M:Atom.Windows.Controls.TabControl.TabControl.#ctor">
<summary>
Default constructor
</summary>
</member>
<member name="M:Atom.Windows.Controls.TabControl.TabControl.Add(Atom.Windows.Controls.TabControl.Tab)">
<summary>
Adds a tab to the tab control
</summary>
<param name="tab">The new tab</param>
<remarks>
We should use this method when adding and moving a tab in order for it to have its commands
correctly set
</remarks>
</member>
<member name="M:Atom.Windows.Controls.TabControl.TabControl.Add(System.String,System.Windows.UIElement,System.Boolean,System.Object)">
<summary>
Adds a tab to the tab control
</summary>
<param name="text">The text of the tab</param>
<param name="content">The body of the tab</param>
<param name="closable">Defines whether this tab can be closed or not</param>
<param name="registerKey">
The key that is used for keeping track this content.
NOTE: If this is set to <see cref="!:null"/> then the content we do not keep track of the content
</param>
</member>
<member name="M:Atom.Windows.Controls.TabControl.TabControl.Add(System.String,System.String,System.Windows.UIElement,System.Boolean,System.Object)">
<summary>
Adds a tab to the tab control
</summary>
<param name="text">The text of the tab</param>
<param name="pathData">The path data of the icon of the tab</param>
<param name="content">The body of the tab</param>
<param name="closable">Defines whether this tab can be closed or not</param>
<param name="registerKey">
The key that is used for keeping track this content.
NOTE: If this is set to <see cref="!:null"/> then the content we do not keep track of the content
</param>
</member>
<member name="M:Atom.Windows.Controls.TabControl.TabControl.SelectTab(System.Int32)">
<summary>
Selects the tab of the specific index
</summary>
<param name="index">The index of the tab in the tab control</param>
</member>
<member name="M:Atom.Windows.Controls.TabControl.TabControl.SelectTab(Atom.Windows.Controls.TabControl.Tab)">
<summary>
Selects this tab and deselects any other previously selected
</summary>
<param name="tab">The tab we want to select</param>
</member>
<member name="M:Atom.Windows.Controls.TabControl.TabControl.MoveTab(Atom.Windows.Controls.TabControl.Tab,System.Int32)">
<summary>
Moves the tab
</summary>
<param name="tab">The tab we want to move</param>
<param name="newIndex">The new position</param>
</member>
<member name="M:Atom.Windows.Controls.TabControl.TabControl.PinTab(Atom.Windows.Controls.TabControl.Tab)">
<summary>
Pins or unpins the tab
</summary>
<param name="tabToPin">The tab we want to pin</param>
</member>
<member name="M:Atom.Windows.Controls.TabControl.TabControl.Remove(Atom.Windows.Controls.TabControl.Tab)">
<summary>
Removes the tab and closes the parent if needed
</summary>
<param name="tab"></param>
</member>
<member name="M:Atom.Windows.Controls.TabControl.TabControl.Remove(Atom.Windows.Controls.TabControl.Tab,System.Boolean)">
<summary>
Removes the tab and closes the parent if needed
</summary>
<param name="tabToRemove">The tab we want to remove</param>
<param name="closeIfMain">If this is set to true, after the removal of this tab, if it was the last of the parent, the parent will get closed</param>
</member>
<member name="M:Atom.Windows.Controls.TabControl.TabControl.CloseTab(Atom.Windows.Controls.TabControl.Tab)">
<summary>
Closes the tab if it is possible
</summary>
<param name="tabToClose">The tab we want to close and remove</param>
</member>
<member name="M:Atom.Windows.Controls.TabControl.TabControl.CreateBaseGUIElement">
<summary>
Creates and returns the GUI in a form of a <see cref="T:System.Windows.FrameworkElement"/>
</summary>
<returns></returns>
</member>
<member name="M:Atom.Windows.Controls.TabControl.TabControl.SubscribeTabToTabControl(Atom.Windows.Controls.TabControl.Tab)">
<summary>
Subscribes the specific tab to this tab control
</summary>
<param name="tab">The view model that controls the tab we want to subscribe to this tab control</param>
</member>
<member name="M:Atom.Windows.Controls.TabControl.TabControl.AddDockOverlayBorder(System.Windows.Controls.Grid,System.Int32,System.Int32,System.Int32,System.Int32,System.String)">
<summary>
Creates and add a dock overlay border to the specified grid
</summary>
<param name="parent">The specified grid</param>
<param name="gridColumn">The column to place the border overlay to</param>
<param name="gridRow">The row to place the border overlay to</param>
<param name="columnSpan">The column span of the border overlay</param>
<param name="rowSpan">The row span of the border overlay</param>
<param name="dockPropertyName">The name of the view model of the property that controls the visibility of the border overlay</param>
</member>
<member name="T:Atom.Windows.Controls.TabControl.TabControlHost">
<summary>
A host responsible for containing multiple tab controls
</summary>
</member>
<member name="P:Atom.Windows.Controls.TabControl.TabControlHost.WindowParent">
<summary>
The window that contains this tab control host
</summary>
</member>
<member name="M:Atom.Windows.Controls.TabControl.TabControlHost.#ctor(System.Windows.Window)">
<summary>
Default constructor
</summary>
</member>
<member name="M:Atom.Windows.Controls.TabControl.TabControlHost.Add(System.String,System.Windows.UIElement,System.Boolean,System.Object)">
<summary>
Adds a tab to the first tab control and creates it if none is found
</summary>
<param name="tabName">The text of the tab</param>
<param name="content">The body of the tab</param>
<param name="closable">Defines whether this tab can be closed or not</param>
<param name="registerKey">
The key that is used for keeping track this content.
NOTE: If this is set to <see cref="!:null"/> then the content we do not keep track of the content
</param>
</member>
<member name="M:Atom.Windows.Controls.TabControl.TabControlHost.Add(System.String,System.String,System.Windows.UIElement,System.Boolean,System.Object)">
<summary>
Adds a tab to the first tab control and creates it if none is found
</summary>
<param name="tabName">The text of the tab</param>
<param name="pathData">The path data of the icon of the tab</param>
<param name="content">The body of the tab</param>
<param name="closable">Defines whether this tab can be closed or not</param>
<param name="registerKey">
The key that is used for keeping track this content.
NOTE: If this is set to <see cref="!:null"/> then the content we do not keep track of the content
</param>
</member>
<member name="M:Atom.Windows.Controls.TabControl.TabControlHost.Move(Atom.Windows.Controls.TabControl.TabControl,System.Int32)">
<summary>
Moves the tab control
</summary>
<param name="tabControl">The tab control we want to move</param>
<param name="newIndex">The new index</param>
</member>
<member name="M:Atom.Windows.Controls.TabControl.TabControlHost.FirstOrCreate">
<summary>
Gets the first tab control of the host and if there isn't any it creates and adds it
</summary>
<returns></returns>
</member>
<member name="T:Atom.Windows.Controls.TabControl.TabControlHostContainer">
<summary>
Tab control host container used for mapping the owners of the tabs, the tab controls and the tab control hosts
</summary>
</member>
<member name="P:Atom.Windows.Controls.TabControl.TabControlHostContainer.TabControlHosts">
<summary>
The tab control hosts this container contains
</summary>
</member>
<member name="M:Atom.Windows.Controls.TabControl.TabControlHostContainer.#ctor">
<summary>
Default constructor
</summary>
</member>
<member name="M:Atom.Windows.Controls.TabControl.TabControlHostContainer.#ctor(Atom.Windows.Controls.TabControl.TabControlHost)">
<summary>
Constructor that takes in as parameter the tab control host view model that's the reason of its creation
</summary>
<param name="tabControlHost">The tab control host</param>
</member>
<member name="M:Atom.Windows.Controls.TabControl.TabControlHostContainer.BuildTabControlHostContainer">
<summary>
Builds the tab control host container
</summary>
</member>
<member name="T:Atom.Windows.Controls.TabControl.TabControlManager">
<summary>
Static class with helper methods for locating the tab control components
</summary>
</member>
<member name="F:Atom.Windows.Controls.TabControl.TabControlManager.Containers">
<summary>
The tab control host containers, used for mapping the entire tab control
</summary>
</member>
<member name="F:Atom.Windows.Controls.TabControl.TabControlManager.Mapper">
<summary>
A mapper containing all the available tab control hosts.
Using this mapper we can acquire data about the parents that
contain the tab control hosts!
</summary>
</member>
<member name="P:Atom.Windows.Controls.TabControl.TabControlManager.ActiveTabControlHost">
<summary>
Gets the tab control host whose window parent is active.
If none is found then <see cref="!:null"/> is returned!
</summary>
</member>
<member name="P:Atom.Windows.Controls.TabControl.TabControlManager.MainParentTabControlHost">
<summary>
Gets the tab control host that is placed in the main parent.
If none is found then <see cref="!:null"/> is returned!
</summary>
</member>
<member name="P:Atom.Windows.Controls.TabControl.TabControlManager.TabControls">
<summary>
All the tab controls that are currently being used
</summary>
</member>
<member name="P:Atom.Windows.Controls.TabControl.TabControlManager.Tabs">
<summary>
All the tabs that are currently being used
</summary>
</member>
<member name="M:Atom.Windows.Controls.TabControl.TabControlManager.ContainsTab(Atom.Windows.Controls.TabControl.Tab)">
<summary>
Checks if the specified <paramref name="tab"/> is contained
in any of the tab control hosts registered to the tab control
manager
</summary>
<param name="tab">The tab to check if its contained</param>
<returns></returns>
</member>
<member name="P:Atom.Windows.Controls.TabControl.TabControlManager.ActiveTab">
<summary>
Gets the currently active tab.
NOTE: If a window parent is active then the selected tab of that window is prioritized,
otherwise the selected tab of the main parent and if the main parent doesn't have an
active tab then a random selected tab is returned!
</summary>
<returns></returns>
</member>
<member name="M:Atom.Windows.Controls.TabControl.TabControlManager.AddTabControlHost(System.Windows.Window)">
<summary>
Creates and adds a tab control host.
This method should be used when creating tab control hosts,
since it creates and adds the necessary container!
</summary>
<returns></returns>
</member>
<member name="M:Atom.Windows.Controls.TabControl.TabControlManager.AddTabControlHost(System.Windows.Window,Atom.Windows.Controls.TabControl.TabControlHostContainer)">
<summary>
Creates and adds a tab control host.
This method should be used when creating tab control hosts,
since it links the tab control hosts to an already existing tab control host container!
</summary>
<param name="parent">The parent that will contain the specified container</param>
<param name="container">The container</param>
<returns></returns>
</member>
<member name="M:Atom.Windows.Controls.TabControl.TabControlManager.AddTabControlHost(Atom.Windows.Controls.TabControl.TabControlHost,Atom.Windows.Controls.TabControl.TabControlHostContainer)">
<summary>
Adds the tab control host to the mapper
</summary>
<param name="tabControlHost">The tab control host we want to add</param>
<param name="container">The host container</param>
</member>
<member name="M:Atom.Windows.Controls.TabControl.TabControlManager.RemoveTabControlHost(Atom.Windows.Controls.TabControl.TabControlHost)">
<summary>
Removes the tab control host from the mapper
</summary>
<param name="tabControlHost">The tab control host we want to remove</param>
</member>
<member name="M:Atom.Windows.Controls.TabControl.TabControlManager.CloseParent(System.Windows.Window,System.Boolean)">
<summary>
Closes the parent
</summary>
<param name="parent">The parent we want to close</param>
<param name="closeIfMain">If this is set to true, this function will close the parent even if it is the main one!</param>
</member>
<member name="F:Atom.Windows.Controls.TabControl.TabControlManager.mTrackMapper">
<summary>
Mapper that is used for keeping track of specific tabs
</summary>
</member>
<member name="M:Atom.Windows.Controls.TabControl.TabControlManager.Open(Atom.Windows.Controls.TabControl.TabControlHost,System.String,System.String,System.Func{System.Windows.UIElement},System.Object,System.Boolean)">
<summary>
Opens the element provided by the <paramref name="implementationFactory"/> to a new tab and registers it using the <paramref name="key"/>
</summary>
<param name="tabControlHost">The host that the tab will be placed into</param>
<param name="text">The text of the tab</param>
<param name="pathData">The path data of the icon of the tab</param>
<param name="implementationFactory">The implementation factory that provides the element</param>
<param name="key">The key that will be used for registering the element</param>
<param name="closable">A flag indicating whether this tab can be closed or not</param>
</member>
<member name="M:Atom.Windows.Controls.TabControl.TabControlManager.Open(Atom.Windows.Controls.TabControl.TabControl,System.String,System.String,System.Func{System.Windows.UIElement},System.Object,System.Boolean)">
<summary>
Opens the element provided by the <paramref name="implementationFactory"/> to a new tab and registers it using the <paramref name="key"/>
</summary>
<param name="tabControl">The tab control that the tab will be placed into</param>
<param name="text">The text of the tab</param>
<param name="pathData">The path data of the icon of the tab</param>
<param name="implementationFactory">The implementation factory that provides the element</param>
<param name="key">The key that will be used for registering the element</param>
<param name="closable">A flag indicating whether this tab can be closed or not</param>
</member>
<member name="M:Atom.Windows.Controls.TabControl.TabControlManager.Open(System.Windows.UIElement,System.String,System.String,System.Func{System.Windows.UIElement},System.Object,System.Boolean)">
<summary>
Opens the element provided by the <paramref name="implementationFactory"/> to a new tab and registers it using the <paramref name="key"/>
</summary>
<param name="element">The element used for finding the tab control that the tab will be placed into</param>
<param name="text">The text of the tab</param>
<param name="pathData">The path data of the icon of the tab</param>
<param name="implementationFactory">The implementation factory that provides the element</param>
<param name="key">The key that will be used for registering the element</param>
<param name="closable">A flag indicating whether this tab can be closed or not</param>
</member>
<member name="M:Atom.Windows.Controls.TabControl.TabControlManager.Open(System.String,System.String,System.Func{System.Windows.UIElement},System.Object,System.Boolean)">
<summary>
Opens the element provided by the <paramref name="implementationFactory"/> to a new tab and registers it using the <paramref name="key"/>.
NOTE: This method will used the first of the <see cref="P:Atom.Windows.Controls.TabControl.TabControlManager.ActiveTab"/>s to determine the parent of the element provided by the <paramref name="implementationFactory"/>!
NOTE: If no active tab is found, then the tab is created at the first tab control of the first tab control host of the first tab control host container!
</summary>
<param name="text">The text of the tab</param>
<param name="pathData">The path data of the icon of the tab</param>
<param name="implementationFactory">The implementation factory that provides the element</param>
<param name="key">The key that will be used for registering the element</param>
<param name="closable">A flag indicating whether this tab can be closed or not</param>
</member>
<member name="M:Atom.Windows.Controls.TabControl.TabControlManager.Register(System.Object,System.Windows.UIElement)">
<summary>
Registers the element to keep track of its existence
</summary>
<param name="key">The identifier key</param>
<param name="element">The element</param>
</member>
<member name="M:Atom.Windows.Controls.TabControl.TabControlManager.UnRegister(System.Object)">
<summary>
Unregisters the element with the specified <paramref name="key"/>
</summary>
<param name="key">The key of the element to unregister</param>
</member>
<member name="M:Atom.Windows.Controls.TabControl.TabControlManager.UnRegister(System.Windows.UIElement)">
<summary>
Unregisters the specified <paramref name="element"/>
</summary>
<param name="element">The element to unregister</param>
</member>
<member name="M:Atom.Windows.Controls.TabControl.TabControlManager.IsRegistered(Atom.Windows.Controls.TabControl.Tab)">
<summary>
Checks if the content element of the specified <paramref name="tab"/> is registered or not
</summary>
<param name="tab"></param>
<returns></returns>
</member>
<member name="M:Atom.Windows.Controls.TabControl.TabControlManager.IsRegistered(System.Object)">
<summary>
Checks if there is an element registered with the specified <paramref name="key"/>
</summary>
<param name="key">The key of the element to check if is registered</param>
<returns></returns>
</member>
<member name="M:Atom.Windows.Controls.TabControl.TabControlManager.IsRegistered(System.Windows.UIElement)">
<summary>
Checks if the specified <paramref name="element"/> is registered
</summary>
<param name="element">The element to check if is registered</param>
<returns></returns>
</member>
<member name="M:Atom.Windows.Controls.TabControl.TabControlManager.Focus(System.Object)">
<summary>
Focuses the tab that contains the element with the specified <paramref name="key"/>
</summary>
<param name="key">The key of the tracked element</param>
</member>
<member name="M:Atom.Windows.Controls.TabControl.TabControlManager.Focus(System.Windows.UIElement)">
<summary>
Focuses the tab that contains the specified <paramref name="element"/>
</summary>
<param name="element">The element that is contained in the tab we want to focus</param>
</member>
<member name="M:Atom.Windows.Controls.TabControl.TabControlManager.GetHosts(Atom.Windows.Controls.TabControl.TabControlHostContainer)">
<summary>
Gets the tab control hosts that are contained in the specified container
</summary>
<param name="container">The specified container</param>
<returns></returns>
</member>
<member name="M:Atom.Windows.Controls.TabControl.TabControlManager.GetContainer(Atom.Windows.Controls.TabControl.TabControlHost)">
<summary>
Gets the container that contains the specific tab control host
</summary>
<param name="tabControlHost">The specific tab control host</param>
<returns></returns>
</member>
<member name="M:Atom.Windows.Controls.TabControl.TabControlManager.GetContainer(Atom.Windows.Controls.TabControl.TabControl)">
<summary>
Gets the container that contains the specific tab control
</summary>
<param name="tabControl">The specific tab control</param>
<returns></returns>
</member>
<member name="M:Atom.Windows.Controls.TabControl.TabControlManager.GetContainer(Atom.Windows.Controls.TabControl.Tab)">
<summary>
Gets the container that contains the specific tab
</summary>
<param name="tab">The specific tab</param>
<returns></returns>
</member>
<member name="M:Atom.Windows.Controls.TabControl.TabControlManager.GetMainParent(System.Windows.Window[])">
<summary>
Gets the main parent of collection of parents
</summary>
<param name="parents">The collection of parents</param>
<returns></returns>
</member>
<member name="M:Atom.Windows.Controls.TabControl.TabControlManager.GetParents(Atom.Windows.Controls.TabControl.TabControlHostContainer)">
<summary>
Gets the parents that are associated with tab control hosts that are contained by the specific container
</summary>
<param name="container">The specific container</param>
<returns></returns>
</member>
<member name="M:Atom.Windows.Controls.TabControl.TabControlManager.GetParent(Atom.Windows.Controls.TabControl.TabControlHost)">
<summary>
Gets the parent that contains the specific tab control host
</summary>
<param name="tabControlHost">The specific tab control host</param>
<returns></returns>
</member>
<member name="M:Atom.Windows.Controls.TabControl.TabControlManager.GetParent(Atom.Windows.Controls.TabControl.TabControl)">
<summary>
Get's the parent that contains the specific tab control
</summary>
<param name="tabControl">The specific tab control</param>
<returns></returns>
</member>
<member name="M:Atom.Windows.Controls.TabControl.TabControlManager.GetParent(Atom.Windows.Controls.TabControl.Tab)">
<summary>
Gets the parent that contains the specific tab
</summary>
<param name="tab">The specific tab</param>
<returns></returns>
</member>
<member name="M:Atom.Windows.Controls.TabControl.TabControlManager.GetHosts(System.Windows.Window)">
<summary>
Gets the tab control hosts that are contained in the specified parent
</summary>
<param name="parent">The parent that contains the tab control hosts</param>
<returns></returns>
</member>
<member name="M:Atom.Windows.Controls.TabControl.TabControlManager.GetHosts(Atom.Windows.Controls.TabControl.TabControlHostContainer,System.Windows.Window)">
<summary>
Gets the tab control hosts that are contained in the specified parent and the specified container
</summary>
<param name="container">The container that contains the tab control hosts</param>
<param name="parent">The parent that contains the tab control hosts</param>
<returns></returns>
</member>
<member name="M:Atom.Windows.Controls.TabControl.TabControlManager.GetHost(Atom.Windows.Controls.TabControl.TabControl)">
<summary>
Gets the host that contains the specific tab control
</summary>
<param name="tabControl">The specific control</param>
<returns></returns>
</member>
<member name="M:Atom.Windows.Controls.TabControl.TabControlManager.GetHost(Atom.Windows.Controls.TabControl.Tab)">
<summary>
Gets the host that contains the specific tab
</summary>
<param name="tab">The specific tab</param>
<returns></returns>
</member>
<member name="M:Atom.Windows.Controls.TabControl.TabControlManager.GetHost(System.Windows.UIElement)">
<summary>
Gets the host that contains the specific tab body
</summary>
<param name="content">The specific tab body</param>