Search found 149 matches: ttaskpanel

Return to advanced search

New FTDN April 2024 (FWH 24.04)

... Enhancement: Class TExplorerBar Method Update( nPos ) updates the nPos oPanel used from the TExplorerBar after the panel has been modified. Class TTaskPanel Method ChangeHeight( nHeight ) changes the height of the panel. Thanks to Silvio Falconi! * Enhancement: We have restored the call to Method ...
by Antonio Linares
Wed Apr 24, 2024 7:14 am
 
Forum: WhatsNew / Novedades
Topic: New FTDN April 2024 (FWH 24.04)
Replies: 0
Views: 45

Re: Librería xHarbour TTaskPanel.lib

Gracias Andres excelente noticia que aun estas por estos lados :-)

y por la excelente librería, recuerdo que también había un debug que era excelente, no se que paso con ese proyecto
by Patricio Avalos Aguirre
Tue Mar 05, 2024 1:03 am
 
Forum: FiveWin para Harbour/xHarbour
Topic: Librería xHarbour TTaskPanel.lib
Replies: 19
Views: 2995

Re: New FTDN February 2024 (FWH 24.02)

... cómo usar una webview como otro control de diálogo, para que pueda interactuar con ella desde su cuadro de diálogo. * Mejora: En los objetos TTaskPanel utilizados de la clase TExplorerBar, se ha implementado una nueva DATA bOnCollapse que se evalúa desde su método LButtonUp( nRow, nCol, nFlags ...
by Antonio Linares
Sun Mar 03, 2024 7:25 pm
 
Forum: WhatsNew / Novedades
Topic: New FTDN February 2024 (FWH 24.02)
Replies: 1
Views: 210

New FTDN February 2024 (FWH 24.02)

... * New: samples\mark.prg shows how to use a webview as another dialog control, so you can interact with it from your dialog box. * Enhancement: In TTaskPanel objects used from Class TExplorerBar, a new DATA bOnCollapse has been implemented and it is evaluated from its method LButtonUp( nRow, nCol, ...
by Antonio Linares
Sat Mar 02, 2024 8:31 am
 
Forum: WhatsNew / Novedades
Topic: New FTDN February 2024 (FWH 24.02)
Replies: 1
Views: 210

Re: Librería xHarbour TTaskPanel.lib

Mil disculpaas por no estar tan atento a mi correo y al foro win-make.exe hace referencia al archivo make de GNU make. Como en mi entorno de desarrollo tengo make de bcc y make de gcc tuve que renombrarlo el make que utilizo a win-make (gnu-make hubiera sido una mejor referencia), me disculpo que mi...
by andresreyes_mzt
Thu Feb 29, 2024 4:59 am
 
Forum: FiveWin para Harbour/xHarbour
Topic: Librería xHarbour TTaskPanel.lib
Replies: 19
Views: 2995

Re: how get Event from TExplorerBar() when "collaps" a Panel ?

hi Silvio, you are Right that Original CLASS TTaskPanel() Layout are   DATA   nTopMargin      INIT 16 but i just show Technic how to get Event, when Collaps, and "move" Panels to new Position where i start from TOP = 0 in my Layout it ...
by Jimmy
Wed Feb 28, 2024 11:54 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: how get Event from TExplorerBar() when "collaps" a Panel ?
Replies: 11
Views: 478

Re: Create a Panel width a text

... DT_LEFT, If( "R" $ cAlign, DT_RIGHT,  DT_CENTER  ) ) will give you DT_VCENTER / DT_VENTER that will cause wrap TEXT using TTaskPanel() which have Margin --- do you have try to click collapse button ? YES, so far seen https://forums.fivetechsupport.com/viewtopic.php?f=3&t=44267
by Jimmy
Mon Feb 26, 2024 10:27 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: Create a Panel width a text
Replies: 29
Views: 3192

Re: Create a Panel width a text

... and    oFonttext:nHeight() +2 is hight of each Line. while Source use oPanelShadow as Parent which does not use "full Area" of TTaskPanel()    oPanel2:nHeight     := aDim[ 2 ] + (3 * (oFonttext:nHeight() +2) ) that will give you 3 x Lines when ...
by Silvio.Falconi
Mon Feb 26, 2024 8:14 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: Create a Panel width a text
Replies: 29
Views: 3192

Re: how get Event from TExplorerBar() when "collaps" a Panel ?

Dear Jimmy, On CLASS TTaskPanel FROM TControl add this DATA: DATA bOnCollapse and then add this code at the bottom of METHOD LButtonUp( nRow, nCol, nFlags ) CLASS TTaskPanel:      ::oWnd:CheckScroll()      if ! Empty( ::bOnCollapse ...
by Antonio Linares
Sat Feb 24, 2024 6:12 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: how get Event from TExplorerBar() when "collaps" a Panel ?
Replies: 11
Views: 478

Re: Create a Panel width a text

... and    oFonttext:nHeight() +2 is hight of each Line. while Source use oPanelShadow as Parent which does not use "full Area" of TTaskPanel()    oPanel2:nHeight     := aDim[ 2 ] + (3 * (oFonttext:nHeight() +2) ) that will give you 3 x Lines when ...
by Jimmy
Sat Feb 24, 2024 3:52 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: Create a Panel width a text
Replies: 29
Views: 3192

Re: how get Event from TExplorerBar() when "collaps" a Panel ?

... Antonio, TExplorerBar has no currently support for such event but it can be easily implemented from: METHOD LButtonUp( nRow, nCol, nFlags ) CLASS TTaskPanel thx for Answer there is in CLASS TTaskPanel   DATA   lCollapsed      INIT .F. and it will be assign Value in METHOD LButtonUp(nRow, nCol, ...
by Jimmy
Sat Feb 24, 2024 2:53 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: how get Event from TExplorerBar() when "collaps" a Panel ?
Replies: 11
Views: 478

Re: how get Event from TExplorerBar() when "collaps" a Panel ?

... Jimmy, TExplorerBar has no currently support for such event but it can be easily implemented from: METHOD LButtonUp( nRow, nCol, nFlags ) CLASS TTaskPanel
by Antonio Linares
Sat Feb 24, 2024 12:57 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: how get Event from TExplorerBar() when "collaps" a Panel ?
Replies: 11
Views: 478

Re: Create a Panel width a text

... the explorerbar hoping it might work and insert a new method to recalc the position nTop for each ::apanels as this METHOD RecalcPosTask() CLASS TTaskPanel local n for n = ::nIndex + 1 to Len( ::oWnd:aPanels ) ::nHeight = ::nTotalHeight() for n = ::nIndex + 1 to Len( ::oWnd:aPanels ) ::oWnd:aPanels[ ...
by Silvio.Falconi
Tue Jan 09, 2024 10:23 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: Create a Panel width a text
Replies: 29
Views: 3192

Re: Create a Panel width a text

... | DrawTextTransparent( hDC, cMessage , { 10, 10, aDim[ 1 ] + 100, aDim[ 2 ] + 100 }, 1 ) } ENDIF the Panel is modified and also the cMsg but the ttaskPanel is not refresh()
by Silvio.Falconi
Sat Jan 06, 2024 6:02 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: Create a Panel width a text
Replies: 29
Views: 3192

Re: Create a Panel width a text

... oBrushshadow GRADIENT aGrad //shadow DEFINE BRUSH oBrushtext GRADIENT aGradtext //text nTotRows:= MLCount(Alltrim(cmessage),250) oPanel1 is a ttaskpanel //the shadow oItem1:=Tpanel():New( oPanel1:nTitleHeight +10, 10,; oPanel1:nBottom-30,oPanel1:nWidth-40, oPanel1 ) oItem1:SetBrush( oBrushshadow ...
by Silvio.Falconi
Thu Jan 04, 2024 10:42 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: Create a Panel width a text
Replies: 29
Views: 3192
Next

Return to advanced search