Category tree with xBrowse

Category tree with xBrowse

Postby Gross » Sun Mar 22, 2015 6:50 pm

I have a table for categories
I want to show in xBrowse with a tree

can someone help me?

Table Structure
ID N 3
Parent N 3
Bez C 30

    Local aData := { ;
    { 1,0 , "Neu" }, ;
    { 2,0 , "OK Kat1"}, ;
    { 3,0 , "OK Marken"}, ;
    { 4,0 , "OK Kat3"}, ;
    { 5,3 , "UK Ford"}, ;
    { 6,3 , "UK Opel"}, ;
    { 7,3 , "UK VW"}, ;
    { 8,3 , "UK Porsche"}, ;
    { 9,3 , "OUK Gel„ndewagen"}, ;
    { 10,9, "UUK Q7"}, ;
    { 11,9, "UUK Kuga" }, ;
    { 12,9, "UUK Tucson"}, ;
    { 13,9, "UUK Sorento"}, ;
    { 14,0, "OK Kat4"} }


Greeting Manfred
Manfred Groß
Gross
 
Posts: 41
Joined: Sat Mar 09, 2013 8:17 am
Location: Germany Kassel

Re: Category tree with xBrowse

Postby nageswaragunupudi » Mon Mar 23, 2015 1:23 am

Code: Select all  Expand view
#include "fivewin.ch"
#include "xbrowse.ch"

REQUEST DBFCDX

function main()

   local oDlg, oFont, oBrw
   local oTree

   CreateTestDBF()
   oTree    := MakeTree()

   DEFINE FONT oFont NAME "TAHOMA" SIZE 0,-14
   DEFINE DIALOG oDlg SIZE 350,500 PIXEL FONT oFont

   @ 10,10 XBROWSE oBrw SIZE -10,-10 PIXEL OF oDlg ;
      DATASOURCE oTree CELL LINES NOBORDER

   oBrw:aCols[ 1 ]:AddBitmap( { FWDArrow(), FwRArrow(), "c:\fwh\bitmaps\16x16\new2.bmp" } )
   oBrw:nStretchCol  := 1
   oBrw:CreateFromCode()

   ACTIVATE DIALOG oDlg CENTERED
   RELEASE FONT oFont

   oTree:End()

return nil

static function MakeTree

   field ID,PARENT,BEZ
   local oTree, n

   USE CATG NEW SHARED
   INDEX ON STR(PARENT,1)+STR(ID,2) TAG PARID TO TMP MEMORY
   GO TOP

   TREE oTree
      do while ! eof()
         n     := PARENT
         TREEITEM "Parent - " + Str( n, 1 )
         TREE
            do while PARENT == n .and. ! eof()
               TREEITEM BEZ
               SKIP
            enddo
        ENDTREE
      enddo
   ENDTREE

   oTree:OpenAll()

return oTree


static function CreateTestDBF

   local aCols := { { "ID",  'N', 3, 0 }, { "Parent",  'N', 3, 0 }, { "Bez",  'C',  30, 0 } }
   local aData := { ;
   { 1,0 , "Neu" }, ;
   { 2,0 , "OK Kat1"}, ;
   { 3,0 , "OK Marken"}, ;
   { 4,0 , "OK Kat3"}, ;
   { 5,3 , "UK Ford"}, ;
   { 6,3 , "UK Opel"}, ;
   { 7,3 , "UK VW"}, ;
   { 8,3 , "UK Porsche"}, ;
   { 9,3 , "OUK Gel„ndewagen"}, ;
   { 10,9, "UUK Q7"}, ;
   { 11,9, "UUK Kuga" }, ;
   { 12,9, "UUK Tucson"}, ;
   { 13,9, "UUK Sorento"}, ;
   { 14,0, "OK Kat4"} }

   DBCREATE( "CATG", aCols, "DBFCDX", .t., "CTG" )
   FW_ArrayToDBF( aData )
   CLOSE CTG

return nil
 
Regards

G. N. Rao.
Hyderabad, India
User avatar
nageswaragunupudi
 
Posts: 10299
Joined: Sun Nov 19, 2006 5:22 am
Location: India

Re: Category tree with xBrowse

Postby AntoninoP » Mon Mar 23, 2015 10:44 am

This is cool!
If someone want show 2 columns, ID and Bez,
how the code becomes ?
Regards,
Perry
AntoninoP
 
Posts: 375
Joined: Tue Feb 10, 2015 9:48 am
Location: Albenga, Italy

Re: Category tree with xBrowse

Postby nageswaragunupudi » Mon Mar 23, 2015 11:02 am

AntoninoP wrote:This is cool!
If someone want show 2 columns, ID and Bez,
how the code becomes ?
Regards,
Perry

Code: Select all  Expand view
#include "fivewin.ch"
#include "xbrowse.ch"

REQUEST DBFCDX

function main()


   local oDlg, oFont, oBrw
   local oTree

   CreateTestDBF()
   oTree    := MakeTree()

   DEFINE FONT oFont NAME "TAHOMA" SIZE 0,-14
   DEFINE DIALOG oDlg SIZE 350,500 PIXEL FONT oFont

   @ 10,10 XBROWSE oBrw SIZE -10,-10 PIXEL OF oDlg ;
      DATASOURCE oTree COLUMNS 1 ;
      HEADERS "ID", "BEZ" ;
      COLSIZES 100 ;
      CELL LINES NOBORDER

   oBrw:aCols[ 1 ]:AddBitmap( { FWDArrow(), FwRArrow(), "c:\fwh\bitmaps\16x16\new2.bmp" } )
   oBrw:nStretchCol  := 2
   oBrw:bClrStd := { || { CLR_BLACK, If( oBrw:oTreeItem:nLevel == 1, CLR_YELLOW, CLR_WHITE ) } }
   oBrw:CreateFromCode()

   ACTIVATE DIALOG oDlg CENTERED
   RELEASE FONT oFont

   oTree:End()

return nil

static function MakeTree

   field ID,PARENT,BEZ
   local oTree, n

   USE CATG NEW SHARED
   INDEX ON STR(PARENT,1)+STR(ID,2) TAG PARID TO TMP MEMORY
   GO TOP

   TREE oTree
      do while ! eof()
         n     := PARENT
         TREEITEM Str( n, 1 ) CARGO { "Parent - " + Str( n, 1 ) }
         TREE
            do while PARENT == n .and. ! eof()
               TREEITEM STR(ID,2) CARGO { BEZ }
               SKIP
            enddo
        ENDTREE
      enddo
   ENDTREE

   oTree:OpenAll()

return oTree


static function CreateTestDBF

   local aCols := { { "ID",  'N', 3, 0 }, { "Parent",  'N', 3, 0 }, { "Bez",  'C',  30, 0 } }
   local aData := { ;
   { 1,0 , "Neu" }, ;
   { 2,0 , "OK Kat1"}, ;
   { 3,0 , "OK Marken"}, ;
   { 4,0 , "OK Kat3"}, ;
   { 5,3 , "UK Ford"}, ;
   { 6,3 , "UK Opel"}, ;
   { 7,3 , "UK VW"}, ;
   { 8,3 , "UK Porsche"}, ;
   { 9,3 , "OUK Gel„ndewagen"}, ;
   { 10,9, "UUK Q7"}, ;
   { 11,9, "UUK Kuga" }, ;
   { 12,9, "UUK Tucson"}, ;
   { 13,9, "UUK Sorento"}, ;
   { 14,0, "OK Kat4"} }

   DBCREATE( "CATG", aCols, "DBFCDX", .t., "CTG" )
   FW_ArrayToDBF( aData )
   CLOSE CTG

return nil
 
Regards

G. N. Rao.
Hyderabad, India
User avatar
nageswaragunupudi
 
Posts: 10299
Joined: Sun Nov 19, 2006 5:22 am
Location: India

Re: Category tree with xBrowse

Postby Gross » Mon Mar 23, 2015 2:03 pm

Thank Rao
Unfortunately, I did not wanted.

the tree should be
-Neu
-OK Kat1
-OK Marken
--UK Ford
--UK Opel
--UK VW
--UK Porsche
--OUK Geländewagen
---UUK Q7
---UUK Kuga
---UUK Tucson
---UUK Sorento
-OK Kat3
-OK Kat4

I have found the solution !

Code: Select all  Expand view
// -----------------------------------------------------------------------------------------------
FUNCTION BuildXbTree( oCon)
// -----------------------------------------------------------------------------------------------
    LOCAL oTree  := NIL
    LOCAL aRows  := NIL
    LOCAL oRs
    LOCAL cSql := 'SELECT * FROM OSKAT'

    oRs := TRecSet():New()
    oRs :Open( cSql, oCon )

    if oRs :Used()

        IF oRs:RecordCount() > 0
            aRows := oRs:GetRows()
            //oTree := GenSubTree(aRows,0,0,-1)
            oTree := GenSubTree(aRows,NIL,0,-1)
        ENDIF
       
    endif


return oTree

// -----------------------------------------------------------------------------------------------
STATIC FUNCTION GenSubTree( aRows, cSuchId, nAktLevel, nLastLevel)
// -----------------------------------------------------------------------------------------------

    local oTree, oItem
    LOCAL cBez   := ""
    LOCAL aRow   := NIL
    LOCAL nItems := 0

    //altd()

    IF len(aRows )> 0

        FOR each aRow in aRows
            cBez := aRow[5]

            if aRow[2] == cSuchId
                if nAktLevel > nLastLevel
                    TREE oTree
                ENDIF
                TREEITEM oItem PROMPT aRow[5]
                oItem:Cargo  := { space(30) , space(30), space(30) }

                if nAktLevel > nLastLevel
                    nLastLevel := nAktLevel
                endif
                nAktLevel++
                GenSubTree(  aRows, aRow[1], nAktLevel, nLastLevel )
                nAktLevel--
            endif
        NEXT
        if nAktLevel == nLastLevel
            ENDTREE
        ENDIF
   endif

return oTree
 


greeting
Manfred
Manfred Groß
Gross
 
Posts: 41
Joined: Sat Mar 09, 2013 8:17 am
Location: Germany Kassel


Return to FiveWin for Harbour/xHarbour

Who is online

Users browsing this forum: No registered users and 46 guests