PureBasic 4.00 Beta 4 for Linux
PureBasic 4.00 Beta 4 for Linux
Hello everybody,
after a lot of work has been done on the OSX side, we finally had more time to get
back to fixing bugs in the Linux version. So a new beta is available now on your download account.
As for what has been fixed: Just look at the bugs forum for that.
All the major problems that were reported should be fixed now. If not, just post again.
We hope this to be the last beta release before going final with 4.0 for Linux,
so please keep the testing on and report anything that goes wrong so we can
get a stable final release.
The PureBasic Team.
after a lot of work has been done on the OSX side, we finally had more time to get
back to fixing bugs in the Linux version. So a new beta is available now on your download account.
As for what has been fixed: Just look at the bugs forum for that.
All the major problems that were reported should be fixed now. If not, just post again.
We hope this to be the last beta release before going final with 4.0 for Linux,
so please keep the testing on and report anything that goes wrong so we can
get a stable final release.
The PureBasic Team.
quidquid Latine dictum sit altum videtur
- DoubleDutch
- Addict
- Posts: 3220
- Joined: Thu Aug 07, 2003 7:01 pm
- Location: United Kingdom
- Contact:
Thanks for all the hard work on OSX and Linux. Can't wait for 4.1 on Windows. 

https://deluxepixel.com <- My Business website
https://reportcomplete.com <- School end of term reports system
https://reportcomplete.com <- School end of term reports system
-
- Addict
- Posts: 1648
- Joined: Mon Sep 20, 2004 3:52 pm
- Contact:
So far so good!
Quick question... can the treegadget row height be adjusted? The row height is much larger now with PB4 - looks like about 24 pixels. Here is an example:

Also, I do get a little screen corruption when I scroll down the tree - it could be my machine... anyone else notice this also? Here is a screen shot of that:

Thanks guys!
Oh, here is the code for above:
Quick question... can the treegadget row height be adjusted? The row height is much larger now with PB4 - looks like about 24 pixels. Here is an example:

Also, I do get a little screen corruption when I scroll down the tree - it could be my machine... anyone else notice this also? Here is a screen shot of that:

Thanks guys!
Oh, here is the code for above:
Code: Select all
If OpenWindow(0, 0, 0, 200, 180, "TreeGadget", #PB_Window_SystemMenu | #PB_Window_ScreenCentered) And CreateGadgetList(WindowID(0))
TreeGadget(0, 10, 10, 180, 160)
For a = 0 To 10
AddGadgetItem (0, -1, "Normal Item "+Str(a), 0, 0)
AddGadgetItem (0, -1, "Normal Item "+Str(a), 0, 0)
AddGadgetItem (0, -1, "Node "+Str(a), 0, 0)
Node = CountGadgetItems(0)-1
AddGadgetItem(0, -1, "Sub-Item 1", 0, 1)
SetGadgetItemState(0,Node,#PB_Tree_Expanded)
AddGadgetItem(0, -1, "Sub-Item 2", 0, 1)
AddGadgetItem(0, -1, "Sub-Item 3", 0, 2)
AddGadgetItem(0, -1, "Sub-Item 4", 0, 2)
AddGadgetItem (0, -1, "File "+Str(a), 0, 0)
Next
Repeat : Until WaitWindowEvent() = #PB_Event_CloseWindow
EndIf
-Beach
Hi Beach, just tried your snippet on my Mepis and it does that here too... I guess it's a drawing problem (GTK's). I noticed that scrambling in allmost every program I have installed on Linux and that has any scrolling thingie in it.
None are more hopelessly enslaved than those who falsely believe they are free. (Goethe)