Search found 384 matches: texplorerbar

Return to advanced search

Re: New FTDN April 2024 (FWH 24.04)

... nYear, nHours, nMinutes, nSeconds } Por favor, revisa nuevo ejemplo en FWH\samples\fldchanged.prg * Mejora: En el método Update( Pos ) de la clase TExplorerBar, actualiza el nPos del objeto oPanel utilizado desde TExplorerBar después de que el panel haya sido modificado. Clase TTaskPanel el método ...
by Antonio Linares
Wed May 01, 2024 7:04 pm
 
Forum: WhatsNew / Novedades
Topic: New FTDN April 2024 (FWH 24.04)
Replies: 1
Views: 364

New FTDN April 2024 (FWH 24.04)

... cFolderPath ) --> { nDay, nMonth, nYear, nHours, nMinutes, nSeconds } Please review new example FWH\samples\fldchanged.prg * Enhancement: Class TExplorerBar Method Update( nPos ) updates the nPos oPanel used from the TExplorerBar after the panel has been modified. Class TTaskPanel Method ChangeHeight( ...
by Antonio Linares
Wed Apr 24, 2024 7:14 am
 
Forum: WhatsNew / Novedades
Topic: New FTDN April 2024 (FWH 24.04)
Replies: 1
Views: 364

Re: WebView resize

Hello friends, I tried to map the FiveWin components Splitter, TEXplorerBar, Buttons, Panels, and TSay, Memo to a WebView2 embedded application: Best regards, Otto SPLITTER: While there's no direct HTML equivalent for a splitter, you can create a resizable ...
by Otto
Thu Mar 21, 2024 10:55 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: WebView resize
Replies: 9
Views: 2129

Re: New FTDN February 2024 (FWH 24.02)

... 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 ), de forma que cada panel puede ...
by Antonio Linares
Sun Mar 03, 2024 7:25 pm
 
Forum: WhatsNew / Novedades
Topic: New FTDN February 2024 (FWH 24.02)
Replies: 1
Views: 225

New FTDN February 2024 (FWH 24.02)

... 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, nFlags ), so each panel can use ...
by Antonio Linares
Sat Mar 02, 2024 8:31 am
 
Forum: WhatsNew / Novedades
Topic: New FTDN February 2024 (FWH 24.02)
Replies: 1
Views: 225

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

... = 0 in my Layout it is up to you to change Layout like SPACE between TTaskPanel()   yPos +=aPanels[n]:nHeight + 20 --- to enhance CLASS TExplorerBar we can look into CLASS TExplorerList METHOD DelChilds( uVal ) CLASS TExplorerListMETHOD DelItem( uVal ) CLASS TExplorerList
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: 513

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

... panel can init from 18 and not from 0 row I not found the exact variable perhaps ::nTop ? as i can say it is 1st Position of "Body" from TExplorerBar() where i oExBar:AddPanel() yes but the first position of First TaskPanelPanel is never 0 Please try fwh\samples\explbar.prg and see it ...
by Silvio.Falconi
Wed Feb 28, 2024 8:37 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: how get Event from TExplorerBar() when "collaps" a Panel ?
Replies: 11
Views: 513

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

hi Silvio,
Silvio.Falconi wrote:a question

yPos := 0

this is no good because the first panel can init from 18 and not from 0 row

I not found the exact variable perhaps ::nTop ?

as i can say it is 1st Position of "Body" from TExplorerBar() where i oExBar:AddPanel()
by Jimmy
Tue Feb 27, 2024 10:40 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: how get Event from TExplorerBar() when "collaps" a Panel ?
Replies: 11
Views: 513

Re: Add a new taskPanel on Explorerbar ( on line)

I think we would need a new method directly in the texplorerbar class to insert taskpanel in x position
I sent to Linares my Idea for two new methods
by Silvio.Falconi
Tue Feb 27, 2024 11:46 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: Add a new taskPanel on Explorerbar ( on line)
Replies: 2
Views: 223

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

a question

yPos := 0

this is no good because the first panel can init from 18 and not from 0 row

I not found the exact variable perhaps ::nTop ?
by Silvio.Falconi
Tue Feb 27, 2024 11:43 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: how get Event from TExplorerBar() when "collaps" a Panel ?
Replies: 11
Views: 513

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

hi, i got bOnCollapse working :D   oPanel1:bOnCollapse :=  { | | CheckCollapse(oPanel1,cMsg,1) }   oPanel2:bOnCollapse :=  { | | CheckCollapse(oPanel2,cMsg,2) }   oPanel3:bOnCollapse :=  { | | CheckCollapse(oPanel3,cMsg,3) } i don´t know how but ...
by Jimmy
Mon Feb 26, 2024 1:04 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: how get Event from TExplorerBar() when "collaps" a Panel ?
Replies: 11
Views: 513

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

hi Antonio,

Codeblock-Slot like these we need, thx
but how is METHOD LButtonUp() called when i click to collaps/enlarge :?:

Request :
also need for DragDrop
Code: Select all  Expand view
METHOD LButtonUp( nRow, nCol )

include DATA lDrag and ::Capture()
by Jimmy
Sat Feb 24, 2024 6:32 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: how get Event from TExplorerBar() when "collaps" a Panel ?
Replies: 11
Views: 513

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 )   // new         Eval( ::bOnCollapse, Sel...
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: 513

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

hi 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     ...
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: 513

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

hi Silvio, See checkscroll method thx for Answer but how to "react" to call Method ChekScroll() :?: when "click" there will be WM_LBUTTONDOWN / WM_LBUTTONUP Event fired for this we have Codeblock-Slot like in c:\fwh\samples\testmmd.prg   oWndMOUSE:bLClicked    = { | nRow, nC...
by Jimmy
Sat Feb 24, 2024 2:33 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: how get Event from TExplorerBar() when "collaps" a Panel ?
Replies: 11
Views: 513
Next

Return to advanced search