mirror of
https://github.com/clockworkpi/LauncherGoDev.git
synced 2026-03-19 18:32:49 +01:00
add PowerOFF in Settings
This commit is contained in:
39
Menu/GameShell/10_Settings/PowerOFF/plugin_init.go
Normal file
39
Menu/GameShell/10_Settings/PowerOFF/plugin_init.go
Normal file
@@ -0,0 +1,39 @@
|
||||
package PowerOFF
|
||||
|
||||
import (
|
||||
/*
|
||||
"github.com/veandco/go-sdl2/ttf"
|
||||
|
||||
"github.com/cuu/gogame/surface"
|
||||
"github.com/cuu/gogame/event"
|
||||
"github.com/cuu/gogame/rect"
|
||||
"github.com/cuu/gogame/color"
|
||||
*/
|
||||
"github.com/cuu/LauncherGoDev/sysgo/UI"
|
||||
//"github.com/cuu/LauncherGoDev/sysgo/DBUS"
|
||||
)
|
||||
|
||||
/******************************************************************************/
|
||||
type PowerOFFPlugin struct {
|
||||
UI.Plugin
|
||||
PowerOFFPage *PowerOFFConfirmPage
|
||||
}
|
||||
|
||||
|
||||
func (self *PowerOFFPlugin) Init( main_screen *UI.MainScreen ) {
|
||||
self.PowerOFFPage = NewPowerOFFConfirmPage()
|
||||
self.PowerOFFPage.SetScreen( main_screen)
|
||||
self.PowerOFFPage.SetName("PowerOFF")
|
||||
self.PowerOFFPage.Init()
|
||||
}
|
||||
|
||||
func (self *PowerOFFPlugin) Run( main_screen *UI.MainScreen ) {
|
||||
if main_screen != nil {
|
||||
main_screen.PushCurPage()
|
||||
main_screen.SetCurPage(self.PowerOFFPage)
|
||||
main_screen.Draw()
|
||||
main_screen.SwapAndShow()
|
||||
}
|
||||
}
|
||||
|
||||
var APIOBJ PowerOFFPlugin
|
||||
Reference in New Issue
Block a user