Search found 402 matches: drawing

Searched query: drawing

by Otto
Tue Feb 04, 2025 8:38 am
Forum: mod_harbour
Topic: tool for documentation
Replies: 0
Views: 390

tool for documentation

... images, and links.
Structured content such as code snippets, tables, or lists can be seamlessly inserted.
Automated Flowcharts with AI
Instead of drawing flowcharts manually, the system can automatically generate them from process descriptions.
Ideal for documenting workflows, algorithms, or ...
by Antonio Linares
Fri Jan 24, 2025 11:19 am
Forum: FiveWin for Harbour/xHarbour
Topic: Using new Class TDeepSeek for documenting
Replies: 29
Views: 4834

Re: Using new Class TDeepSeek for documenting

... DrawLine(), EraseData(), FullPaint(): These methods are responsible for rendering the browse control visually. Refresh() is the main method for redrawing, while others handle specific parts of the display or optimize refresh operations.

SetStyle(), SetDarkTheme(), SetFont(), FontSize ...
by Antonio Linares
Fri Jan 17, 2025 11:13 pm
Forum: FiveWin for Harbour/xHarbour
Topic: Using new Class TDeepSeek for documenting
Replies: 29
Views: 4834

Re: Using new Class TDeepSeek for documenting

... combo box has a border. Initialized to `.f.` (false).

7. **`hPenButton`**
- **Type:** `HANDLE`
- **Description:** Handle to the pen used for drawing the combo box button.

8. **`nAt`**
- **Type:** `NUMERIC`
- **Description:** The index of the currently selected item in the combo box.

9 ...
by Antonio Linares
Fri Jan 17, 2025 11:11 pm
Forum: FiveWin for Harbour/xHarbour
Topic: Using new Class TDeepSeek for documenting
Replies: 29
Views: 4834

Re: Using new Class TDeepSeek for documenting

... currently selected item in the combo box.

8. **`bDrawItem`**:
- **Type**: Block (Code Block)
- **Description**: Code block to handle custom drawing of items in the combo box.

9. **`bCloseUp`**:
- **Type**: Block (Code Block)
- **Description**: Code block to handle the close-up event of the ...
by Antonio Linares
Fri Jan 17, 2025 11:03 pm
Forum: FiveWin for Harbour/xHarbour
Topic: Using new Class TDeepSeek for documenting
Replies: 29
Views: 4834

Re: Using new Class TDeepSeek for documenting

... NUMERIC
- **Description:** The fixed height of the tooltip.

49. **`bOwnerDraw`**
- **Type:** BLOCK
- **Description:** A code block for custom drawing.

50. **`oTimer`**
- **Type:** OBJECT
- **Description:** The timer object for auto-hiding the tooltip.

51. **`nTimer`**
- **Type:** NUMERIC ...
by Antonio Linares
Fri Jan 17, 2025 10:49 pm
Forum: FiveWin for Harbour/xHarbour
Topic: Using new Class TDeepSeek for documenting
Replies: 29
Views: 4834

Re: Using new Class TDeepSeek for documenting

... customized in terms of appearance and behavior. It supports various events like clicks, key presses, and focus changes, and provides methods for drawing the button and handling user interactions. The class is designed to be used in FiveWin-based GUI applications, offering flexibility in terms of ...
by Antonio Linares
Fri Jan 17, 2025 10:48 pm
Forum: FiveWin for Harbour/xHarbour
Topic: Using new Class TDeepSeek for documenting
Replies: 29
Views: 4834

Re: Using new Class TDeepSeek for documenting

... Numeric | Margin for the bitmap. |
| `nBmpNo` | Numeric | Current bitmap number being painted. |
| `hRgn` | Handle | Handle to the region used for drawing. |
| `cResName1` | String | Resource name for the normal state bitmap. |
| `cResName2` | String | Resource name for the pressed state bitmap ...
by Antonio Linares
Mon Dec 30, 2024 2:16 pm
Forum: FiveWin for Harbour/xHarbour
Topic: Browse of my ADO Class
Replies: 59
Views: 12781

Re: Browse of my ADO Class

FWH provides Class TWebView2 for Google Chrome engine and also support for Scintilla source code editor

If you provide a drawing of what you want we can code it using FWH :-)
by Silvio.Falconi
Fri Oct 11, 2024 9:33 am
Forum: FiveWin for Harbour/xHarbour
Topic: drawing a circle with FW_Box
Replies: 6
Views: 848

Re: drawing a circle with FW_Box

I resolved with

Image

oPrn:Ellipse(...)
by Silvio.Falconi
Fri Oct 11, 2024 9:24 am
Forum: FiveWin for Harbour/xHarbour
Topic: drawing a circle with FW_Box
Replies: 6
Views: 848

Re: drawing a circle with FW_Box

If a color or pen is specified as 3rd parameter, only that color/pen is used and it never uses black color.
As a test you may check
local nClr := RGB(243, 101, 108)

DEFINE WINDOW oWnd SIZE 200,200 PIXEL

oWnd:bPainted := { |hDC| FW_Box( hDC, { 20,20,120,120 }, { nClr, 3 }, nil, , 2 ) }


The ...
by nageswaragunupudi
Thu Oct 03, 2024 2:58 am
Forum: FiveWin for Harbour/xHarbour
Topic: drawing a circle with FW_Box
Replies: 6
Views: 848

Re: drawing a circle with FW_Box

If a color or pen is specified as 3rd parameter, only that color/pen is used and it never uses black color.
As a test you may check
local nClr := RGB(243, 101, 108)

DEFINE WINDOW oWnd SIZE 200,200 PIXEL

oWnd:bPainted := { |hDC| FW_Box( hDC, { 20,20,120,120 }, { nClr, 3 }, nil, , 2 ) }


The ...
by Silvio.Falconi
Wed Oct 02, 2024 4:15 pm
Forum: FiveWin for Harbour/xHarbour
Topic: drawing a circle with FW_Box
Replies: 6
Views: 848

Re: drawing a circle with FW_Box

nageswaragunupudi wrote:

Code: Select all | Expand

FW_Box( hDC, { nX, nY, nX + nSize, nY + nSize }, RGB(243, 101, 108), RGB(243, 101, 108), , 2 )
This should work.
Yes but i see allways the black border
by nageswaragunupudi
Wed Oct 02, 2024 1:37 pm
Forum: FiveWin for Harbour/xHarbour
Topic: drawing a circle with FW_Box
Replies: 6
Views: 848

Re: drawing a circle with FW_Box

Code: Select all | Expand

FW_Box( hDC, { nX, nY, nX + nSize, nY + nSize }, RGB(243, 101, 108), RGB(243, 101, 108), , 2 )
This should work.
by Silvio.Falconi
Wed Oct 02, 2024 11:35 am
Forum: FiveWin for Harbour/xHarbour
Topic: drawing a circle with FW_Box
Replies: 6
Views: 848

drawing a circle with FW_Box

https://i.postimg.cc/2SBF01dm/ttt.png

I draw a red circle but the border is allways black...why ?

hBrush := CreateSolidBrush(RGB(255, 28, 36))

SelectObject(hDC, hBrush)


FW_Box( hDC, { nX, nY, nX + nSize, nY + nSize }, hBrush, hBrush, , 2 )

I tried also with
FW_Box( hDC, { nX, nY, nX ...