Skip to content

Commit b2fb7c1

Browse files
committed
Fix reference guide examples
1 parent 049f72c commit b2fb7c1

File tree

2 files changed

+89
-2
lines changed

2 files changed

+89
-2
lines changed

docs/doxygen/doxygen/xtd_core_examples.dox

+59-2
Original file line numberDiff line numberDiff line change
@@ -167,7 +167,7 @@
167167
/// Shows how to use xtd::date_time::sprintf method.
168168
///
169169
/// @example date_time_subtract.cpp
170-
/// Shows how to use xtd::date_time::days_in_month method.
170+
/// Shows how to use xtd::date_time::subtract method.
171171
///
172172
/// @example date_time_ticks.cpp
173173
/// Shows how to use xtd::date_time class with ticks constructors.
@@ -199,6 +199,9 @@
199199
/// @example delegate.cpp
200200
/// Shows how to use xtd::delegate class.
201201
///
202+
/// @example delegate_begin_invoke.cpp
203+
/// Shows how to use xtd::delegate::begin_invoke, xtd::delegate::end_invoke and xtd::delegate::invoke methods.
204+
///
202205
/// @example delegate_lambda.cpp
203206
/// Shows how to use xtd::delegate class.
204207
///
@@ -493,7 +496,10 @@
493496
/// @example lock.cpp
494497
/// Shows how to use xtd::lock class.
495498
///
496-
/// @example startup.cpp
499+
/// @example lock_guard_keyword.cpp
500+
/// Shows how to use lock_guard_ class.
501+
///
502+
/// @example startup_keyword.cpp
497503
/// Shows how to use xtd::startup class.
498504
///
499505
/// @example static.cpp
@@ -697,6 +703,21 @@
697703
/// @example sprintf_with_order.cpp
698704
/// Show how to use format xtd::format class.
699705
///
706+
/// @example startup.cpp
707+
/// Shows how to use xtd::startup class.
708+
///
709+
/// @example startup1.cpp
710+
/// Shows how to use xtd::startup class.
711+
///
712+
/// @example startup2.cpp
713+
/// Shows how to use xtd::startup class.
714+
///
715+
/// @example startup3.cpp
716+
/// Shows how to use xtd::startup class.
717+
///
718+
/// @example startup4.cpp
719+
/// Shows how to use xtd::startup class.
720+
///
700721
/// @example compare.cpp
701722
/// Shows how to use xtd::ustring::compare method.
702723
///
@@ -733,6 +754,15 @@
733754
/// @example auto_reset_event.cpp
734755
/// Shows how to use xtd::threading::auto_reset_event class.
735756
///
757+
/// @example barrier.cpp
758+
/// Shows how to use xtd::threading::barrier class.
759+
///
760+
/// @example barrier_simple.cpp
761+
/// Shows how to use xtd::threading::barrier class.
762+
///
763+
/// @example countdown_event.cpp
764+
/// Shows how to use xtd::threading::countdown_event class.
765+
///
736766
/// @example event_wait_handle.cpp
737767
/// Shows how to use xtd::threading::event_wait_handle class.
738768
///
@@ -742,6 +772,9 @@
742772
/// @example interlocked_decrement.cpp
743773
/// Shows how to use xtd::threading::interlocked::decrement and xtd::threading::interlocked::increment methods.
744774
///
775+
/// @example lock_guard.cpp
776+
/// Shows how to use xtd::threading::lock_guard class.
777+
///
745778
/// @example manual_reset_event.cpp
746779
/// Shows how to use xtd::threading::manual_reset_event class.
747780
///
@@ -751,6 +784,15 @@
751784
/// @example monitor.cpp
752785
/// Shows how to use xtd::threading::monitor class.
753786
///
787+
/// @example monitor_lock.cpp
788+
/// Shows how to use xtd::threading::monitor class.
789+
///
790+
/// @example monitor_pulse.cpp
791+
/// Shows how to use xtd::threading::monitor::pulse pulse.
792+
///
793+
/// @example monitor_pulse_all.cpp
794+
/// Shows how to use xtd::threading::monitor::pulse_all method.
795+
///
754796
/// @example mutex.cpp
755797
/// Shows how to use xtd::threading::mutex class.
756798
///
@@ -772,6 +814,21 @@
772814
/// @example wait_handle.cpp
773815
/// Shows how to use xtd::threading::wait_handle class.
774816
///
817+
/// @example time_span.cpp
818+
/// Demonstrates the xtd::time_span struct.
819+
///
820+
/// @example time_span_from_days.cpp
821+
/// Demonstrates the xtd::time_span::from_days method.
822+
///
823+
/// @example time_span_from_hours.cpp
824+
/// Demonstrates the xtd::time_span::from_days method.
825+
///
826+
/// @example timers_timer.cpp
827+
/// Shows how to use xtd::timers::timer class.
828+
///
829+
/// @example timers_timer_synchronizing_object.cpp
830+
/// Shows how to use xtd::timers::timer::synchronizing_object property.
831+
///
775832
/// @example uri.cpp
776833
/// Demonstrates the xtd::uri various properties.
777834
///

docs/doxygen/doxygen/xtd_forms_examples.dox

+30
Original file line numberDiff line numberDiff line change
@@ -856,6 +856,21 @@
856856
/// <br>
857857
/// @image html loading_indicator_gd.png
858858
///
859+
/// @example loading_indicators.cpp
860+
/// xtd::forms::loading_indicator represents a Windows control to display a loading indicator animation.
861+
/// @par Windows
862+
/// @image html loading_indicators_w.png
863+
/// <br>
864+
/// @image html loading_indicators_wd.png
865+
/// @par macOS
866+
/// @image html loading_indicators_m.png
867+
/// <br>
868+
/// @image html loading_indicators_md.png
869+
/// @par Gnome
870+
/// @image html loading_indicators_g.png
871+
/// <br>
872+
/// @image html loading_indicators_gd.png
873+
///
859874
/// @example month_calendar.cpp
860875
/// demonstrates the use of xtd::forms::month_calendar control.
861876
/// @par Windows
@@ -3451,6 +3466,21 @@
34513466
/// <br>
34523467
/// @image html button_with_style_sheet_gd.png
34533468
///
3469+
/// @example graph_control.cpp
3470+
/// demonstrates how to create a custom control with xtd::forms::user_control control for create own graph.
3471+
/// @par Windows
3472+
/// @image html graph_control_w.png
3473+
/// <br>
3474+
/// @image html graph_control_wd.png
3475+
/// @par macOS
3476+
/// @image html graph_control_m.png
3477+
/// <br>
3478+
/// @image html graph_control_md.png
3479+
/// @par Gnome
3480+
/// @image html graph_control_g.png
3481+
/// <br>
3482+
/// @image html graph_control_gd.png
3483+
///
34543484
/// @example line.cpp
34553485
/// demonstrates how to create a custom control with xtd::forms::user_control control.
34563486
/// @par Windows

0 commit comments

Comments
 (0)