UNO.Skia.Gtk 設定視窗尺寸變化方法

lindexi發表於2024-09-12

本文記錄一個簡單的在 UNO.Skia.Gtk 應用裡面,配置 GTK 平臺修改視窗尺寸的方法

為了全平臺通用性,推薦是走定義介面加平臺注入的方式。定義的介面如下

public interface IWindowActivator
{
    void ResizeMainWindow(Size size);
}

這裡為了方便起見,直接使用靜態屬性注入方法,如以下定義

public static class WindowHelper
{
    public static IWindowActivator WindowActivator { get; set; } = null!;
}

在 GTK 平臺上定義具體的修改視窗大小的實現

    class WindowActivator : IWindowActivator
    {
        public GtkHost GtkHost { get; set; } = null!;

        public void ResizeMainWindow(Size size)
        {
            var nativeWindow = GtkHost.Window;

            nativeWindow.Resize((int) size.Width, (int) size.Height);
        }
    }

完成定義之後,在 GTK 應用初始化進行注入屬性,如下面程式碼

 public static void Main(string[] args)
 {
     ExceptionManager.UnhandledException += delegate (UnhandledExceptionArgs expArgs)
     {
         Console.WriteLine("GLIB UNHANDLED EXCEPTION" + expArgs.ExceptionObject.ToString());
         expArgs.ExitApplication = true;
     };

     var windowActivator = new WindowActivator();
     WindowHelper.WindowActivator = windowActivator;

     var host = new GtkHost(() =>
     {
         var app = new AppHead();
         return app;
     });
     windowActivator.GtkHost = host;
     host.Run();
 }

接下來即可在通用的全平臺程式碼裡面利用 WindowHelper 輔助修改 GTK 的視窗

    private void Button_OnClick(object sender, RoutedEventArgs e)
    {
        var size = new Size(Random.Shared.Next(200, 1000), Random.Shared.Next(200, 1000));
        WindowHelper.WindowActivator.ResizeMainWindow(size);
    }

更進一步的最佳化是在各個平臺裡面都實現修改視窗尺寸的具體實現,如此即可讓全平臺部分的程式碼可以實現使用相同的程式碼,用介面加多型實現完成對各個平臺的設定視窗

本文以上程式碼放在githubgitee 歡迎訪問

可以透過如下方式獲取本文的原始碼,先建立一個空資料夾,接著使用命令列 cd 命令進入此空資料夾,在命令列裡面輸入以下程式碼,即可獲取到本文的程式碼

git init
git remote add origin https://gitee.com/lindexi/lindexi_gd.git
git pull origin f91082b406f3ac1e1a89c536263fd62c7d99be47

以上使用的是 gitee 的源,如果 gitee 不能訪問,請替換為 github 的源。請在命令列繼續輸入以下程式碼

git remote remove origin
git remote add origin https://github.com/lindexi/lindexi_gd.git
git pull origin f91082b406f3ac1e1a89c536263fd62c7d99be47

獲取程式碼之後,進入 LacebayjeejiBehebilawla 資料夾

如需設定進入全屏,請參閱 UNO 設定平臺進入全屏視窗模式的方法

相關文章