PB 6.02
Kubuntu 22.04
Qt 5.15.3
Kernal 5.15.0-101 64 bit
Graphics Platform X11
Plasma Version 5.24.7
Code: Select all
If OpenWindow(0,0,0,800,600,"",#PB_Window_SystemMenu | #PB_Window_MinimizeGadget | #PB_Window_ScreenCentered)
SetWindowTitle(0,"Test")
Else
End
EndIf
If CreateMenu(0,WindowID(0))
MenuTitle("Test")
MenuItem(0,"Test 1")
Else
End
EndIf
offset.i = WindowHeight(0,#PB_Window_FrameCoordinate) - WindowHeight(0,#PB_Window_InnerCoordinate)
ScrollAreaGadget(0,0,0,800,600 - offset,1600,1200,50,#PB_ScrollArea_BorderLess)
Debug WindowHeight(0,#PB_Window_InnerCoordinate)
Debug WindowHeight(0,#PB_Window_FrameCoordinate)
While WaitWindowEvent() <> #PB_Event_CloseWindow
Wend