forked from Samsung/TizenFX
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
[NUI] Add SystemFontSizeChangedManager class
SystemFontSizeChangedManager is a static class which adds user handlers to the SystemSettings.FontSizeChanged event. It is similar to SystemFontSizeChanged class but it is a static class and it also provides Finished event handler invoked last after all handlers added to the SystemSettings.FontSizeChanged event are invoked.
- Loading branch information
1 parent
0edae08
commit 4154ae2
Showing
4 changed files
with
73 additions
and
9 deletions.
There are no files selected for viewing
67 changes: 67 additions & 0 deletions
67
src/Tizen.NUI/src/internal/Common/SystemFontSizeChangedManager.cs
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,67 @@ | ||
/* | ||
* Copyright (c) 2023 Samsung Electronics Co., Ltd. | ||
* | ||
* Licensed under the Apache License, Version 2.0 (the "License"); | ||
* you may not use this file except in compliance with the License. | ||
* You may obtain a copy of the License at | ||
* | ||
* http://www.apache.org/licenses/LICENSE-2.0 | ||
* | ||
* Unless required by applicable law or agreed to in writing, software | ||
* distributed under the License is distributed on an "AS IS" BASIS, | ||
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. | ||
* See the License for the specific language governing permissions and | ||
* limitations under the License. | ||
* | ||
*/ | ||
|
||
extern alias TizenSystemSettings; | ||
using TizenSystemSettings.Tizen.System; | ||
|
||
using System; | ||
|
||
namespace Tizen.NUI | ||
{ | ||
/// <summary> | ||
/// A static class which adds user handler to the SystemSettings.FontSizeChanged event. | ||
/// This class also adds user handler to the last of the SystemSettings.FontSizeChanged event. | ||
/// </summary> | ||
internal static class SystemFontSizeChangedManager | ||
{ | ||
static SystemFontSizeChangedManager() | ||
{ | ||
SystemSettings.FontSizeChanged += SystemFontSizeChanged; | ||
} | ||
|
||
/// <summary> | ||
/// The handler invoked last after all handlers added to the SystemSettings.FontSizeChanged event are invoked. | ||
/// </summary> | ||
public static event EventHandler<FontSizeChangedEventArgs> Finished; | ||
|
||
/// <summary> | ||
/// Adds the given handler to the SystemSettings.FontSizeChanged event. | ||
/// </summary> | ||
/// <param name="handler">A handler to be added to the event</param> | ||
public static void Add(EventHandler<FontSizeChangedEventArgs> handler) | ||
{ | ||
proxy.Add(handler); | ||
} | ||
|
||
/// <summary> | ||
/// Removes the given handler from the SystemSettings.FontSizeChanged event. | ||
/// </summary> | ||
/// <param name="handler">A handler to be added to the event</param> | ||
public static void Remove(EventHandler<FontSizeChangedEventArgs> handler) | ||
{ | ||
proxy.Remove(handler); | ||
} | ||
|
||
private static void SystemFontSizeChanged(object sender, FontSizeChangedEventArgs args) | ||
{ | ||
proxy.Invoke(sender, args); | ||
Finished?.Invoke(sender, args); | ||
} | ||
|
||
private static WeakEvent<EventHandler<FontSizeChangedEventArgs>> proxy = new WeakEvent<EventHandler<FontSizeChangedEventArgs>>(); | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters