Search found 1526 matches: brush

Return to advanced search

Re: Brush

Olá,

Obrigado pelas possibilidades. Vou testar e retorno aqui.

Att.,

Oliveiros Junior
by oliveiros junior
Wed Apr 24, 2024 8:27 pm
 
Forum: FiveWin para Harbour/xHarbour
Topic: Brush
Replies: 10
Views: 220

Re: Brush

https://imgur.com/qCqrs37

Image

Regards, saludos.
by karinha
Sun Apr 21, 2024 4:04 pm
 
Forum: FiveWin para Harbour/xHarbour
Topic: Brush
Replies: 10
Views: 220

Re: Brush

... oBrush   LOCAL cImagem := "..\bitmaps\pngs\2.png"   DEFINE IMAGE oImagem FILENAME cImagem   DEFINE BRUSH oBrush FILE cImagem RESIZE   oImagem:lTranspaRent := .T.   oImagem:End()   oDlg:SetBrush( oBrush )  ...
by karinha
Sun Apr 21, 2024 3:57 pm
 
Forum: FiveWin para Harbour/xHarbour
Topic: Brush
Replies: 10
Views: 220

Re: Brush

ESCOLHA, CHOICE: // C:\FWH\SAMPLES\OLIVEJR1.PRG#include "FiveWin.ch"FUNCTION Main()   LOCAL oDlg, oImagem, oBtn, oFont   LOCAL cImagem  := "..\bitmaps\pngs\2.png"   SkinButtons()   SetDlgGradient( { { 0.7,...
by karinha
Sun Apr 21, 2024 3:18 pm
 
Forum: FiveWin para Harbour/xHarbour
Topic: Brush
Replies: 10
Views: 220

Re: Brush

// C:\FWH\SAMPLES\OLIVEJR2.PRG#include "FiveWin.ch"FUNCTION Main()   LOCAL oDlg, oImagem, oBrush   LOCAL cImagem  := "..\bitmaps\pngs\2.png"   SetDlgGradient( { { 1, RGB( 199, 216, 237 ), RGB( 237, 242, 248 ...
by karinha
Sun Apr 21, 2024 2:16 pm
 
Forum: FiveWin para Harbour/xHarbour
Topic: Brush
Replies: 10
Views: 220

Re: Brush

... "FiveWin.ch"FUNCTION Main()   LOCAL oDlg, oImagem, oBrush   LOCAL cImagem := "..\bitmaps\pngs\2.png"   DEFINE BRUSH oBrush FILE cImagem RESIZE   DEFINE DIALOG oDlg SIZE 800, 600 STYLE nOr( WS_CHILD, WS_POPUP ) ;      COLOR CLR_BLACK, CLR_BLACK PIXEL ...
by karinha
Sun Apr 21, 2024 2:03 pm
 
Forum: FiveWin para Harbour/xHarbour
Topic: Brush
Replies: 10
Views: 220

Re: Brush

Good morning! I'm going to post here the two codes I made as an example (the second is used here on the forum), in the first the background image is the way I need it, taking up 3/4 of the screen, but the second image is not transparent. In the second, the image occupies the entire screen and the im...
by oliveiros junior
Fri Apr 19, 2024 1:42 pm
 
Forum: FiveWin para Harbour/xHarbour
Topic: Brush
Replies: 10
Views: 220

Re: Brush

Oliveiros, no exemplo do relógio, diga o que te falta? ou que você precisa. Seja mais específico na questão, pls.

https://imgur.com/M00X1LT

Image

Regards, saludos.
by karinha
Fri Apr 19, 2024 12:46 pm
 
Forum: FiveWin para Harbour/xHarbour
Topic: Brush
Replies: 10
Views: 220

Re: Brush

Oliveiros, usando BITMAP, não serve? Você pode por quantas quiser e com o tamanho que quiser e transparente. Já tentou? E sempre que possível, poste um exemplo da ideia que você imaginou. ¿Oliveiros, usando BITMAP, no funciona? Puedes tener tantos como quieras y del tamaño que quieras y transparente...
by karinha
Fri Apr 19, 2024 12:00 pm
 
Forum: FiveWin para Harbour/xHarbour
Topic: Brush
Replies: 10
Views: 220

Re: Brush

Estimado Oliveiros,

Puedes mostrar una imagen del efecto que deseas conseguir ? gracias
by Antonio Linares
Thu Apr 18, 2024 8:03 pm
 
Forum: FiveWin para Harbour/xHarbour
Topic: Brush
Replies: 10
Views: 220

Brush

Good afternoon everybody, I would like to know if it is possible to define the size of the Brush on a dialog? I saw examples here with DrawImage. However, I need to place other images over the background image. I did a test by placing a background with DrawImage and ...
by oliveiros junior
Thu Apr 18, 2024 6:06 pm
 
Forum: FiveWin para Harbour/xHarbour
Topic: Brush
Replies: 10
Views: 220

Re: Centrar texto VERTICALMENTE

... are editable. cons: (1) Does not support Unicode fonts. (Concern only for East/Middle Asian languages) (2) Does not support Hallow Text with image brush.
by nageswaragunupudi
Wed Apr 10, 2024 1:18 am
 
Forum: FiveWin para Harbour/xHarbour
Topic: Centrar texto VERTICALMENTE
Replies: 12
Views: 475

Re: Another for Btnbmp

... you would have to implement the drawing yourself. You can do this by drawing a rectangle using functions like WndBoxClr, where you can specify the brush or pen color. Otto local hPen, oCli := ::GetCliRect() hPen = CreatePen( PS_SOLID, 1, nRGB( 255, 0, 0 ) ) WndBoxClr( ::GetDC(), 1, 1, oCli:nBottom ...
by Otto
Tue Mar 26, 2024 12:31 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: Another for Btnbmp
Replies: 26
Views: 4961

Re: TITLE CLASS BUG with oDLg TRansparent

... When a dialog is defined to be TRANSPARENT, controls are painted transparently over the dialog. That means, the background color/gradient/brush of the control are ignored and only the dialog's background is shown behind the controls too. If we want to display the background (color/brush/gradient) ...
by Silvio.Falconi
Mon Mar 18, 2024 7:31 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: TITLE CLASS BUG with oDLg TRansparent - RESOLVED-
Replies: 9
Views: 1660

Re: TITLE CLASS BUG with oDLg TRansparent

... When a dialog is defined to be TRANSPARENT, controls are painted transparently over the dialog. That means, the background color/gradient/brush of the control are ignored and only the dialog's background is shown behind the controls too. If we want to display the background (color/brush/gradient) ...
by nageswaragunupudi
Mon Mar 18, 2024 5:08 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: TITLE CLASS BUG with oDLg TRansparent - RESOLVED-
Replies: 9
Views: 1660
Next

Return to advanced search