Как я понял, это какой-то новый фейс: http://blog.99ravens.net/index.php?e=286
Вопрос только, КАК ИМ ПОЛЬЗОВАТЬСЯ?
Список разделов › foobar2000 › Плагины
в архиве есть реадми на японском. %)Вопрос только, КАК ИМ ПОЛЬЗОВАТЬСЯ?
есть немного %)Максим:Спасибо, но местами я лучше понимаю японский.
Думаю, что и автор ещё не знает, что получится в итоге.Mr.Merak:Нигде нет даже примера, что может получиться.
иfoo_ui_func_functions:$button(windowid,val,x,y,w,h,'tf' [,options ...])
[Abstract]
Add a button control
[Arguments]
Windowid - ID window
Val - usually display
Type:text,text2 if the character
type:image,image2 is the case of file names
X - x coordinate
Y - y coordinate
W - width
H - height
'Tf' - to run when pushed TF(event)
Options - options
escape:flag = to convert escape characters(default:false)
Type:type = type of button
Text characters(default)
Text2 custom character
Image image
Custom image image2
keepaspect:flag = maintain aspect ratio(default:false)
cache:flag = Using image cache(default:true)
? type:image,image2 valid only
Fg:rgb = color
? type:text2 valid only
Bg:rgb = color
? type:text2 valid only
Font-name:name = name of the font
? type:text,text2 valid only
Font-size:size = font size(pt)
? type:text,text2 valid only
Font-style:style = style
I = Italic
B = Bold
U = Underline
S = line cancel
? If you specify more than one specified as bi
? type:text,text2 valid only
Push:val = contents at press
Type:text2 if the character
Type:image2 case of file names
? type:text2,image2 valid only
Over:val = contents when mouse over
Type:text2 if the character
Type:image2 case of file names
? type:text2,image2 valid only
mempos:flag = drawn in memory to store the coordinates(default:false)
?%_mp_ ~%variables can be obtained at
Hide hide = read only memory
? $showctrl displayed using the function
[Return]
Object ID
[Supplement]
Png transparent case of type:image2 transmission can be displayed only if the
However,transmission appears that the background under the control panel or over
[Example]
$Hash(ax,50)
$Hash(ay,60)
$Hash(bw,40)
$Hash(bh,20)
$button(%_id%,Stop,$calc(%ax%+%bw%* 0),%ay%,%bw%,%bh%,
'$playback_control(stop)',type:text2,bg:10-10-10,fg:255-255-0,font-name:arial,font-size:8 )
$Hash(B1,%_result%)
$button(%_id%,Pause,$calc(%ax%+%bw%* 1),%ay%,%bw%,%bh%,
'$playback_control(pause)',type:text2,bg:10-10-10,fg:255-255-0,font-name:arial,font-size:8 )
$Hash(B2,%_result%)
$button(%_id%,Play,$calc(%ax%+%bw%* 2),%ay%,%bw%,%bh%,
'$playback_control(play)',type:text2,bg:10-10-10,fg:255-255-0,font-name:arial,font-size:8 )
$Hash(B3,%_result%)
$button(%_id%,Prev,$calc(%ax%+%bw%* 3),%ay%,%bw%,%bh%,
'$playback_control(prev)',type:text2,bg:10-10-10,fg:255-255-0,font-name:arial,font-size:8 )
$Hash(B4,%_result%)
$button(%_id%,Next,$calc(%ax%+%bw%* 4),%ay%,%bw%,%bh%,
'$playback_control(next)',type:text2,bg:10-10-10,fg:255-255-0,font-name:arial,font-size:8 )
$Hash(B5,%_result%)
а также возможно это понадобитсяfoo_ui_func_functions: $showwindow(windowid,cmd)
[Abstract]
To change the status window
[Arguments]
Windowid - ID window
Cmd - Status
0 = Inactive
1 = Display
2 = Minimize
3 = maximize
? 9 until there is further information in the search ShowWindow
foo_ui_func_functions:$iswindowvisible(windowid)
[Abstract]
Check the status window
[Arguments]
Windowid - ID window
[Return]
If you are viewing(Average Return = TRUE),if other than an inactive(Average Return = FALSE)
[Example]
$If($iswindowvisible(FOO),TRUE,FALSE)