Search found 124 matches: bclrgrad

Return to advanced search

Re: New FTDN April 2024 (FWH 24.04)

... nBottom, ; nRound1, nRound2, nPenColor, nPenSize, ; nFillColor, nPenStyle ) * BtnBmp: Soporte de color Alfa. Soporte para fondos de color alfa. - bClrGrad ahora puede tener cualquier combinación de colores alfa y sólidos por lo que es posible tener fondos translúcidos. - SetColor( nTextClr, nClrPane, ...
by Antonio Linares
Wed May 01, 2024 7:04 pm
 
Forum: WhatsNew / Novedades
Topic: New FTDN April 2024 (FWH 24.04)
Replies: 1
Views: 499

New FTDN April 2024 (FWH 24.04)

... nBottom, ; nRound1, nRound2, nPenColor, nPenSize, ; nFillColor, nPenStyle ) * BtnBmp: Alpha Color support Support for alpha color backgrounds. - bClrGrad can now have any combination of alpha and solid colors and thereby making it possible to have translucent backgrounds - SetColor( nTextClr, ...
by Antonio Linares
Wed Apr 24, 2024 7:14 am
 
Forum: WhatsNew / Novedades
Topic: New FTDN April 2024 (FWH 24.04)
Replies: 1
Views: 499

Error Fwh 24.02 con XBROWSE

... ) local oBar, oBtn, oBold DEFINE BUTTONBAR oBar OF oBrw:oWnd SIZE 75,75 3D 2015 HEIGHT 96 oBold := oBar:oFont:Bold() oBar:oGrpFont := oBold oBar:bClrGrad = { || { { 0.10,15724527,7303023 },{ 0.10,7303023,15724527 } } } // grey DEFINE BUTTON OF oBar ; FILE op:bmp32+"new.bmp" TOP ; PROMPT ...
by CARLOS ATUNCAR
Mon Apr 08, 2024 6:31 pm
 
Forum: FiveWin para Harbour/xHarbour
Topic: Error Fwh 24.02 con XBROWSE
Replies: 0
Views: 109

Re: Another for Btnbmp

... oBtn in aBtn WITH OBJECT oBtn :nClrText := { |lOver,o| If( o:HasFocus(), DLG_nColortitle1, If( lOver, RGB(195,195,185), RGB(195,195,185) ) ) } :bClrGrad := { |lOver,o| If( o:HasFocus(), RGB( 250,250,245), If( lOver, RGB( 245,245,235), RGB( 250,250,245) ) ) } :nClrBorder := RGB(195,195,185) END ...
by Silvio.Falconi
Mon Mar 25, 2024 9:11 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: Another for Btnbmp
Replies: 26
Views: 5143

Re: Another for Btnbmp

I wish only delete that internal Black Box https://i.postimg.cc/Z5y5F83c/llll.png I tried also with For n= 1 to len(oBtn) obtn[n]:bClrGrad := < |u,oBtn| local clr := RGB( 245,245,235) if oBtn:lActive if oBtn:lMOver clr := {{ 1, RGB( 250,250,245),RGB( 250,250,245) }} elseif oBtn:lPressed ...
by Silvio.Falconi
Wed Mar 20, 2024 11:37 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: Another for Btnbmp
Replies: 26
Views: 5143

Re: Select one btnbmp into a scrollpanel

... nElemento:= val(nProduct) } Function Set_items_Active(oItem,lActive,oBTn) local oCtrl for each oCtrl in oItem:aControls oCtrl:bClrGrad = { | lInvert | If( ! lInvert,; { { 1, CLR_WHITE, CLR_WHITE } },; { { 1, RGB( 229,241,251 ), RGB( 229,241,251 ) } } ) } oCtrl:refresh() next ...
by Silvio.Falconi
Mon Jun 12, 2023 5:51 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: Select one btnbmp into a scrollpanel
Replies: 1
Views: 110

Select one btnbmp into a scrollpanel

... ; OF oElements action Msginfo() aBtnEle[n]:ocursor:= oHand aBtnEle[n]:nClrBorder := { |obtn| (IIF(obtn:lMOver,CLR_BLUE,CLR_HGRAY)) } aBtnEle[n]:bClrGrad = { | lInvert | If( ! lInvert,; { { 1, CLR_WHITE, CLR_WHITE } },; { { 1, RGB( 229,241,251 ), RGB( 229,241,251 ) } } ) } aBtnEle[n]:cargo:= ...
by Silvio.Falconi
Mon Jun 12, 2023 5:27 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: Select one btnbmp into a scrollpanel
Replies: 1
Views: 110

Re: SAY dentro de BUTTOMBAR??

... "R" ) } //* los 2 primeros array marcan los colores del boton al pasar por el, los segundor // array marcan el gradient de la barra oBar:bClrGrad := { | lPressed | If( ! lPressed, ; { { 1, nRGB( 123, 183, 164 ), nRGB( 151, 164, 174 ) } }, ; { { 1, nRGB( 166, 238, 253 ), nRGB( 185, 168, ...
by José Camilo
Sat Jun 03, 2023 6:22 am
 
Forum: FiveWin para Harbour/xHarbour
Topic: SAY dentro de BUTTOMBAR??
Replies: 4
Views: 219

Re: Brush on btnbmp with color

... @ oBrw:nBottom+1, oBrw:nWidth-44.4 BTNBMP aBtnBrow[1] SIZE 20,20 PIXEL OF oDlg NOROUND 2007 aBtnBrow[1]:bClrGrad := { |lInvert| If( lInvert, aBru[ 2 ]:hBrush, aBru[ 1 ]:hBrush ) } WITH OBJECT aBtnBrow[1] :nClrBorder := nRgb(218,214,179)// border color ...
by Silvio.Falconi
Fri Mar 03, 2023 11:13 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: Brush on btnbmp with color
Replies: 8
Views: 698

Re: Brush on btnbmp with color

... @ oBrw:nBottom+1, oBrw:nWidth-44.4 BTNBMP aBtnBrow[1] SIZE 20,20 PIXEL OF oDlg NOROUND 2007 aBtnBrow[1]:bClrGrad := { |lInvert| If( lInvert, aBru[ 2 ]:hBrush, aBru[ 1 ]:hBrush ) } WITH OBJECT aBtnBrow[1] :nClrBorder := nRgb(218,214,179)// border color ...
by karinha
Fri Feb 10, 2023 2:38 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: Brush on btnbmp with color
Replies: 8
Views: 698

Re: Brush on btnbmp with color

... @ oBrw:nBottom+1, oBrw:nWidth-44.4 BTNBMP aBtnBrow[1] SIZE 20,20 PIXEL OF oDlg NOROUND 2007 aBtnBrow[1]:bClrGrad := { |lInvert| If( lInvert, aBru[ 2 ]:hBrush, aBru[ 1 ]:hBrush ) } WITH OBJECT aBtnBrow[1] :nClrBorder := nRgb(218,214,179)// border color ...
by Silvio.Falconi
Fri Feb 10, 2023 10:34 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: Brush on btnbmp with color
Replies: 8
Views: 698

Re: btnbmp state

I resolved but on another mode @ oBrowse:nBottom+3, oBrowse:nWidth-44.4 BTNBMP aBtnBrow[3] SIZE 12,10.3 PIXEL OF oDlg NOROUND 2007 aBtnBrow[3]:bClrGrad := { |lInvert| If( lInvert, aBru[ 2 ]:hBrush, aBru[ 1 ]:hBrush ) } aBtnBrow[3]:nClrBorder := { || (IIF(aBtnBrow[3]:lMOver,,CLR_GRAY)) } aBtnBrow[3]:disable()
by Silvio.Falconi
Thu Feb 09, 2023 9:33 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: btnbmp state
Replies: 2
Views: 207

Re: btnbmp gradient

... } ; , { 0.30, aGradient[k], atext[k] } ; , { 0.30, atext[k], aGradient[k] } ; , { 0.20, aGradient[k], aBack[k] } ; , .F. ; } oBtnNum[k,t]:bClrGrad := aGradH
by Silvio.Falconi
Sat Oct 08, 2022 10:22 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: btnbmp gradient
Replies: 6
Views: 504

DEFINIR COLOR DEL BTNBMPBu

... Gracias. //------------------------------ Function Color_oBot(oBot,cColor) DEFAULT cColor := NIL IF !cColor = NIL if cColor = "ORO" oBot:bClrGrad = { | lMouseOver | If( ! lMouseOver,; { { 1.00,14481663,38075 }, ; { 1.00,38075,14481663 } }, ; { { 0.10,16777215,9363707 },; { 0.10,9363707,16777215 ...
by Willi Quintana
Mon Nov 22, 2021 4:13 pm
 
Forum: FiveWin para Harbour/xHarbour
Topic: DEFINIR COLOR DEL BTNBMPBu
Replies: 1
Views: 184

Re: BtnBMP

Modify bClrGrad property :

Code: Select all  Expand view
oBtn:bClrGrad := { |lInvert| If( lInvert, nARGB( 64, 0, 192, 0 ), nARGB( 64, 0, 192, 0 ) ) }
by AngelSalom
Sun Mar 21, 2021 6:26 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: BtnBMP
Replies: 2
Views: 452
Next

Return to advanced search