7575 - [ setClosable ` macos ` ` windows ` ] ( #setclosable--macos--windows )
7676 - [ isAlwaysOnTop] ( #isalwaysontop )
7777 - [ setAlwaysOnTop] ( #setalwaysontop )
78+ - [ isAlwaysOnBottom] ( #isalwaysonbottom )
79+ - [ setAlwaysOnBottom ` linux ` ] ( #setalwaysonbottom--linux )
7880 - [ getTitle] ( #gettitle )
7981 - [ setTitle] ( #settitle )
8082 - [ setTitleBarStyle ` macos ` ` windows ` ] ( #settitlebarstyle--macos--windows )
81- - [ getTitleBarHeight ` macos ` ` windows ` ] ( #gettitlebarheight--macos--windows )
83+ - [ getTitleBarHeight] ( #gettitlebarheight )
8284 - [ setSkipTaskbar] ( #setskiptaskbar )
8385 - [ setProgressBar ` macos ` ] ( #setprogressbar--macos )
84- - [ hasShadow ` macos ` ] ( #hasshadow--macos )
85- - [ setHasShadow ` macos ` ] ( #sethasshadow--macos )
86+ - [ hasShadow ` macos ` ` windows ` ] ( #hasshadow--macos--windows )
87+ - [ setHasShadow ` macos ` ` windows ` ] ( #sethasshadow--macos--windows )
8688 - [ getOpacity ` macos ` ` windows ` ] ( #getopacity--macos--windows )
8789 - [ setOpacity ` macos ` ` windows ` ] ( #setopacity--macos--windows )
8890 - [ setBrightness ` macos ` ` windows ` ] ( #setbrightness--macos--windows )
99101 - [ onWindowMinimize] ( #onwindowminimize )
100102 - [ onWindowRestore] ( #onwindowrestore )
101103 - [ onWindowResize] ( #onwindowresize )
104+ - [ onWindowResized ` macos ` ` windows ` ] ( #onwindowresized--macos--windows )
102105 - [ onWindowMove] ( #onwindowmove )
106+ - [ onWindowMoved ` macos ` ` windows ` ] ( #onwindowmoved--macos--windows )
103107 - [ onWindowEnterFullScreen] ( #onwindowenterfullscreen )
104108 - [ onWindowLeaveFullScreen] ( #onwindowleavefullscreen )
105109 - [ onWindowEvent] ( #onwindowevent )
121125
122126``` yaml
123127dependencies :
124- window_manager : ^0.2.0
128+ window_manager : ^0.2.1
125129` ` `
126130
127131或
@@ -616,6 +620,15 @@ Returns `bool` - Whether the window is always on top of other windows.
616620
617621Sets whether the window should show always on top of other windows.
618622
623+ ##### isAlwaysOnBottom
624+
625+ Returns ` bool ` - Whether the window is always below other windows.
626+
627+ ##### setAlwaysOnBottom ` linux `
628+
629+ Sets whether the window should show always below other windows.
630+
631+
619632##### getTitle
620633
621634Returns ` String ` - The title of the native window.
@@ -629,11 +642,10 @@ Changes the title of native window to title.
629642Changes the title bar style of native window.
630643
631644
632- ##### getTitleBarHeight ` macos ` ` windows `
645+ ##### getTitleBarHeight
633646
634647Returns ` int ` - The title bar height of the native window.
635648
636-
637649##### setSkipTaskbar
638650
639651Makes the window not show in the taskbar / dock.
@@ -643,14 +655,14 @@ Makes the window not show in the taskbar / dock.
643655Sets progress value in progress bar. Valid range is [ 0, 1.0] .
644656
645657
646- ##### hasShadow ` macos `
658+ ##### hasShadow ` macos ` ` windows `
647659
648- Returns ` bool ` - Whether the window has a shadow.
660+ Returns ` bool ` - Whether the window has a shadow. On Windows, always returns true unless window is frameless.
649661
650662
651- ##### setHasShadow ` macos `
663+ ##### setHasShadow ` macos ` ` windows `
652664
653- Sets whether the window should have a shadow.
665+ Sets whether the window should have a shadow. On Windows, doesn't do anything unless window is frameless.
654666
655667
656668##### getOpacity ` macos ` ` windows `
@@ -719,10 +731,20 @@ Emitted when the window is restored from a minimized state.
719731
720732Emitted after the window has been resized.
721733
734+ ##### onWindowResized ` macos ` ` windows `
735+
736+ Emitted once when the window has finished being resized.
737+
738+
722739##### onWindowMove
723740
724741Emitted when the window is being moved to a new position.
725742
743+ ##### onWindowMoved ` macos ` ` windows `
744+
745+ Emitted once when the window is moved to a new position.
746+
747+
726748##### onWindowEnterFullScreen
727749
728750Emitted when the window enters a full-screen state.
0 commit comments