Search found 51 matches
- Sat Mar 08, 2008 1:49 pm
- Forum: Linux
- Topic: Timer, TimeOut
- Replies: 8
- Views: 3553
- Fri Mar 07, 2008 11:42 pm
- Forum: Linux
- Topic: Timer, TimeOut
- Replies: 8
- Views: 3553
Timer, TimeOut
An example of a function called every second
; http://library.gnome.org/devel/glib/stable/glib-The-Main-Event-Loop.html#g-timeout-add
Global stoptimer = #False
Procedure MyTimeOutFunction(*pdata.l)
Debug "hello"
If stoptimer = #False
ProcedureReturn #True
Else
ProcedureReturn #False
EndIf ...
; http://library.gnome.org/devel/glib/stable/glib-The-Main-Event-Loop.html#g-timeout-add
Global stoptimer = #False
Procedure MyTimeOutFunction(*pdata.l)
Debug "hello"
If stoptimer = #False
ProcedureReturn #True
Else
ProcedureReturn #False
EndIf ...
- Fri Mar 07, 2008 11:25 pm
- Forum: Linux
- Topic: ProgressBarGadget with text
- Replies: 1
- Views: 1473
ProgressBarGadget with text
Just a snippet to write text over ProgressBarGadget
If OpenWindow(0, 0, 0, 300, 50, "ProgressBarGadget example...", #PB_Window_SystemMenu | #PB_Window_ScreenCentered)
If CreateGadgetList(WindowID(0))
ProgressBarGadget(1, 10, 10, 280, 30, 0, 100)
EndIf
percent.f = 50.00
SetGadgetState(1 ...
If OpenWindow(0, 0, 0, 300, 50, "ProgressBarGadget example...", #PB_Window_SystemMenu | #PB_Window_ScreenCentered)
If CreateGadgetList(WindowID(0))
ProgressBarGadget(1, 10, 10, 280, 30, 0, 100)
EndIf
percent.f = 50.00
SetGadgetState(1 ...
- Tue Mar 04, 2008 7:56 pm
- Forum: Applications - Feedback and Discussion
- Topic: Linux [techdemo] LiLi_M Little Linux MediaPlayer (1.2)
- Replies: 18
- Views: 11204
- Wed Feb 27, 2008 10:24 pm
- Forum: Applications - Feedback and Discussion
- Topic: Linux [techdemo] LiLi_M Little Linux MediaPlayer (1.2)
- Replies: 18
- Views: 11204
- Wed Feb 27, 2008 7:19 pm
- Forum: Applications - Feedback and Discussion
- Topic: Linux [techdemo] LiLi_M Little Linux MediaPlayer (1.2)
- Replies: 18
- Views: 11204
In facts the app doesn't really grows but disappears from the main bar after a double click, some times the app goes in the right top corner and i can't move the window.
it's hard to explain in english, sorry
watch this : http://fredme.free.fr/lili/out.ogg.3
ubuntu 7.04
it's hard to explain in english, sorry
watch this : http://fredme.free.fr/lili/out.ogg.3
ubuntu 7.04
- Tue Feb 26, 2008 8:28 pm
- Forum: Applications - Feedback and Discussion
- Topic: Linux [techdemo] LiLi_M Little Linux MediaPlayer (1.2)
- Replies: 18
- Views: 11204
- Mon Feb 25, 2008 8:37 pm
- Forum: Applications - Feedback and Discussion
- Topic: Linux [techdemo] LiLi_M Little Linux MediaPlayer (1.2)
- Replies: 18
- Views: 11204
- Sun Feb 24, 2008 7:47 pm
- Forum: Applications - Feedback and Discussion
- Topic: Linux [techdemo] LiLi_M Little Linux MediaPlayer (1.2)
- Replies: 18
- Views: 11204
- Mon Feb 18, 2008 7:19 pm
- Forum: Linux
- Topic: PanelGadget with button
- Replies: 1
- Views: 1629
PanelGadget with button
yeah i've made a panel with some buttons to close

maybe an userlib will follow

maybe an userlib will follow
- Fri Jan 11, 2008 11:36 pm
- Forum: Linux
- Topic: Editor Gadget Word Wrap using GTK?
- Replies: 3
- Views: 2246
- Fri Jan 11, 2008 9:54 pm
- Forum: Linux
- Topic: Editor Gadget Word Wrap using GTK?
- Replies: 3
- Views: 2246
this function is deprecated, use gtk_text_view_set_wrap_mode ()
but i don't know how to use it with pb
http://library.gnome.org/devel/gtk/2.12 ... -wrap-mode
but i don't know how to use it with pb
http://library.gnome.org/devel/gtk/2.12 ... -wrap-mode
- Fri Jan 11, 2008 9:53 pm
- Forum: Linux
- Topic: helpful resource
- Replies: 1
- Views: 1425
- Mon Dec 24, 2007 3:05 pm
- Forum: Linux
- Topic: CoolText Lib
- Replies: 1
- Views: 1563
CoolText Lib
My second lib
http://fredme.free.fr/ctext/capture.png
http://fredme.free.fr/ctext/cooltext.zip
example :
If OpenWindow(0, 0, 0, 220, 70, "CoolText", #PB_Window_SystemMenu|#PB_Window_ScreenCentered|#PB_Window_SizeGadget)
CreateGadgetList(WindowID(0))
CoolTextGadget(1, 10, 10, 120, 50, "test ...
http://fredme.free.fr/ctext/capture.png
http://fredme.free.fr/ctext/cooltext.zip
example :
If OpenWindow(0, 0, 0, 220, 70, "CoolText", #PB_Window_SystemMenu|#PB_Window_ScreenCentered|#PB_Window_SizeGadget)
CreateGadgetList(WindowID(0))
CoolTextGadget(1, 10, 10, 120, 50, "test ...
- Sun Dec 23, 2007 7:30 pm
- Forum: Linux
- Topic: coding Userlib
- Replies: 1
- Views: 1571
coding Userlib
hello, i've an ask about userlib, it is possible to create or manipulate a pb gadget, but is it possible to create and add an control (like gtkvolumebutton) to the window ?
thanks
thanks