Hallo,
weiß jemand ne Möglichkeit wie man Scrollbalken einfärben kann?
Im IE geht das ja mit CSS auch...
Scrollbalken einfärben wie bei IE?
- Hroudtwolf
- Beiträge: 1416
- Registriert: 30.10.2004 23:33
- Kontaktdaten:
Ja das geht.
Aber nur ohne den XPSkin Mode.
Aber nur ohne den XPSkin Mode.
Code: Alles auswählen
; German forum: http://robsite.de/php/pureboard/viewtopic.php?t=1278&start=10
; Author: Andreas
; Date: 07. September 2003
Declare.l WindowCallback(WindowID, message, wParam, lParam)
Declare SetColor(BkColor,wParam,lParam)
#Window_Title = "scrollbar-test"
#Gadget_PBScroll = 1
#Gadget_PBText = 2
Global hPBSB.l,hScrollPos.l
Global hWindow.l
hWindow = OpenWindow(0,0,0,800,80,#PB_Window_SystemMenu|#PB_Window_ScreenCentered, #Window_Title)
CreateGadgetList(hWindow)
TextGadget(#Gadget_PBText, 10, 10, 780, 20, "")
hPBSB = ScrollBarGadget(#Gadget_PBScroll, 10, 30 , 780, 20, 0, 1099, 100)
hScrollPos= 500
SetGadgetState(#Gadget_PBScroll, hScrollPos)
SetWindowCallback(@WindowCallback())
SetGadgetText(#Gadget_PBText, "PB-Scrollbar: "+Str(GetGadgetState(#Gadget_PBScroll)))
SetWindowLong_(hPBSB,#GWL_HWNDPARENT,hWindow);neues Elternfenster für ScrollGadget
SetWindowPos_(hPBSB,0,10,30,780,20,1);neu positionieren
Repeat : Until WaitWindowEvent() = #PB_Event_CloseWindow
End
Procedure SetColor(BkColor,wParam,lParam)
Shared Brush
If Brush
DeleteObject_(Brush)
EndIf
Brush = CreateSolidBrush_(BkColor)
result = Brush
ProcedureReturn result
EndProcedure
;- Window-Callback-Procedure
Procedure.l WindowCallback(WindowID, message, wParam, lParam)
Protected result.l : result = #PB_ProcessPureBasicEvents
Select message
Case #WM_COMMAND
If wParam = #Gadget_PBScroll And lParam = hPBSB
;hier kommt nichts mehr an !!
EndIf
Case #WM_HSCROLL
If LoWord(wParam) = #SB_LINEUP
hScrollPos = hScrollPos - 1
EndIf
If LoWord(wParam) = #SB_LINEDOWN
hScrollPos = hScrollPos + 1
EndIf
If LoWord(wParam) = #SB_PAGEUP
hScrollPos = hScrollPos - 16
EndIf
If LoWord(wParam) = #SB_PAGEDOWN
hScrollPos = hScrollPos + 16
EndIf
If LoWord(wParam) = #SB_THUMBTRACK
hScrollPos = HiWord(wParam)
EndIf
SetGadgetState(#Gadget_PBScroll, hScrollPos)
SetGadgetText(#Gadget_PBText, "PB-Scrollbar: "+Str(GetGadgetState(#Gadget_PBScroll)))
Case #WM_CTLCOLORSCROLLBAR
result = SetColor(RGB(255,0,255),wParam,lParam)
EndSelect
ProcedureReturn result
EndProcedure