1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789
|
;; -*- scheme -*-
; object definitions ...
(define-object Plugin
(in-module "Ario")
(parent "GObject")
(c-name "ArioPlugin")
(gtype-id "ARIO_TYPE_PLUGIN")
)
(define-object Server
(in-module "Ario")
(parent "GObject")
(c-name "ArioServer")
(gtype-id "ARIO_TYPE_SERVER")
)
(define-object Shell
(in-module "Ario")
(parent "GtkWindow")
(c-name "ArioShell")
(gtype-id "ARIO_TYPE_SHELL")
)
(define-object Source
(in-module "Ario")
(parent "GtkHBox")
(c-name "ArioSource")
(gtype-id "ARIO_TYPE_SOURCE")
)
(define-object SourceManager
(in-module "Ario")
(parent "GtkNotebook")
(c-name "ArioSourceManager")
(gtype-id "ARIO_TYPE_SOURCE_MANAGER")
)
;; Enumerations and flags ...
(define-enum ServerType
(in-module "Ario")
(c-name "ArioServerType")
(gtype-id "ARIO_TYPE_SERVER_TYPE")
(values
'("mpd" "ArioServerMpd")
'("xmms" "ArioServerXmms")
)
)
(define-enum ServerActionType
(in-module "Ario")
(c-name "ArioServerActionType")
(gtype-id "ARIO_TYPE_SERVER_ACTION_TYPE")
(values
'("add" "ARIO_SERVER_ACTION_ADD")
'("delete-id" "ARIO_SERVER_ACTION_DELETE_ID")
'("delete-pos" "ARIO_SERVER_ACTION_DELETE_POS")
'("move" "ARIO_SERVER_ACTION_MOVE")
'("moveid" "ARIO_SERVER_ACTION_MOVEID")
)
)
(define-enum Visibility
(in-module "Ario")
(c-name "ArioVisibility")
(gtype-id "ARIO_TYPE_VISIBILITY")
(values
'("hidden" "VISIBILITY_HIDDEN")
'("visible" "VISIBILITY_VISIBLE")
'("toggle" "VISIBILITY_TOGGLE")
)
)
(define-enum SourceType
(in-module "Ario")
(c-name "ArioSourceType")
(gtype-id "ARIO_TYPE_SOURCE_TYPE")
(values
'("browser" "ARIO_SOURCE_BROWSER")
'("radio" "ARIO_SOURCE_RADIO")
'("search" "ARIO_SOURCE_SEARCH")
'("playlists" "ARIO_SOURCE_PLAYLISTS")
'("filesystem" "ARIO_SOURCE_FILESYSTEM")
)
)
;; From ario-plugin.h
(define-function ario_plugin_get_type
(c-name "ario_plugin_get_type")
(return-type "GType")
)
(define-method activate
(of-object "ArioPlugin")
(c-name "ario_plugin_activate")
(return-type "none")
(parameters
'("ArioShell*" "shell")
)
)
(define-method deactivate
(of-object "ArioPlugin")
(c-name "ario_plugin_deactivate")
(return-type "none")
(parameters
'("ArioShell*" "shell")
)
)
(define-method is_configurable
(of-object "ArioPlugin")
(c-name "ario_plugin_is_configurable")
(return-type "gboolean")
)
(define-method create_configure_dialog
(of-object "ArioPlugin")
(c-name "ario_plugin_create_configure_dialog")
(return-type "GtkWidget*")
)
(define-function ario_plugin_get_plugin_paths
(c-name "ario_plugin_get_plugin_paths")
(return-type "GSList*")
)
(define-function ario_plugin_get_plugin_data_paths
(c-name "ario_plugin_get_plugin_data_paths")
(return-type "GSList*")
)
(define-function ario_plugin_find_file
(c-name "ario_plugin_find_file")
(return-type "char*")
(parameters
'("const-char*" "file")
)
)
;; From ario-server.h
(define-function ario_server_get_type
(c-name "ario_server_get_type")
(return-type "GType")
)
(define-function ario_server_get_instance
(c-name "ario_server_get_instance")
(return-type "ArioServer*")
)
(define-function ario_server_connect
(c-name "ario_server_connect")
(return-type "gboolean")
)
(define-function ario_server_disconnect
(c-name "ario_server_disconnect")
(return-type "none")
)
(define-function ario_server_reconnect
(c-name "ario_server_reconnect")
(return-type "none")
)
(define-function ario_server_shutdown
(c-name "ario_server_shutdown")
(return-type "none")
)
(define-function ario_server_is_connected
(c-name "ario_server_is_connected")
(return-type "gboolean")
)
(define-function ario_server_update_status
(c-name "ario_server_update_status")
(return-type "gboolean")
)
(define-function ario_server_update_db
(c-name "ario_server_update_db")
(return-type "none")
(parameters
'("const-gchar*" "path")
)
)
(define-function ario_server_list_tags
(c-name "ario_server_list_tags")
(return-type "GSList*")
(parameters
'("const-ArioServerTag" "tag")
'("const-ArioServerCriteria*" "criteria")
)
)
(define-function ario_server_get_albums
(c-name "ario_server_get_albums")
(return-type "GSList*")
(parameters
'("const-ArioServerCriteria*" "criteria")
)
)
(define-function ario_server_get_songs
(c-name "ario_server_get_songs")
(return-type "GSList*")
(parameters
'("const-ArioServerCriteria*" "criteria")
'("const-gboolean" "exact")
)
)
(define-function ario_server_get_songs_from_playlist
(c-name "ario_server_get_songs_from_playlist")
(return-type "GSList*")
(parameters
'("char*" "playlist")
)
)
(define-function ario_server_get_playlists
(c-name "ario_server_get_playlists")
(return-type "GSList*")
)
(define-function ario_server_get_playlist_changes
(c-name "ario_server_get_playlist_changes")
(return-type "GSList*")
(parameters
'("gint64" "playlist_id")
)
)
(define-function ario_server_get_current_song_on_server
(c-name "ario_server_get_current_song_on_server")
(return-type "ArioServerSong*")
)
(define-function ario_server_get_current_song
(c-name "ario_server_get_current_song")
(return-type "ArioServerSong*")
)
(define-function ario_server_get_current_artist
(c-name "ario_server_get_current_artist")
(return-type "char*")
)
(define-function ario_server_get_current_album
(c-name "ario_server_get_current_album")
(return-type "char*")
)
(define-function ario_server_get_current_song_path
(c-name "ario_server_get_current_song_path")
(return-type "char*")
)
(define-function ario_server_get_current_song_id
(c-name "ario_server_get_current_song_id")
(return-type "int")
)
(define-function ario_server_get_current_state
(c-name "ario_server_get_current_state")
(return-type "int")
)
(define-function ario_server_get_current_elapsed
(c-name "ario_server_get_current_elapsed")
(return-type "int")
)
(define-function ario_server_get_current_volume
(c-name "ario_server_get_current_volume")
(return-type "int")
)
(define-function ario_server_get_current_total_time
(c-name "ario_server_get_current_total_time")
(return-type "int")
)
(define-function ario_server_get_current_playlist_id
(c-name "ario_server_get_current_playlist_id")
(return-type "gint64")
)
(define-function ario_server_get_current_playlist_length
(c-name "ario_server_get_current_playlist_length")
(return-type "int")
)
(define-function ario_server_get_current_playlist_total_time
(c-name "ario_server_get_current_playlist_total_time")
(return-type "int")
)
(define-function ario_server_get_crossfadetime
(c-name "ario_server_get_crossfadetime")
(return-type "int")
)
(define-function ario_server_get_current_random
(c-name "ario_server_get_current_random")
(return-type "gboolean")
)
(define-function ario_server_get_current_repeat
(c-name "ario_server_get_current_repeat")
(return-type "gboolean")
)
(define-function ario_server_get_updating
(c-name "ario_server_get_updating")
(return-type "gboolean")
)
(define-function ario_server_set_current_elapsed
(c-name "ario_server_set_current_elapsed")
(return-type "none")
(parameters
'("const-gint" "elapsed")
)
)
(define-function ario_server_set_current_volume
(c-name "ario_server_set_current_volume")
(return-type "none")
(parameters
'("const-gint" "volume")
)
)
(define-function ario_server_get_outputs
(c-name "ario_server_get_outputs")
(return-type "GSList*")
)
(define-function ario_server_set_current_random
(c-name "ario_server_set_current_random")
(return-type "none")
(parameters
'("const-gboolean" "random")
)
)
(define-function ario_server_set_current_repeat
(c-name "ario_server_set_current_repeat")
(return-type "none")
(parameters
'("const-gboolean" "repeat")
)
)
(define-function ario_server_set_crossfadetime
(c-name "ario_server_set_crossfadetime")
(return-type "none")
(parameters
'("const-int" "crossfadetime")
)
)
(define-function ario_server_is_paused
(c-name "ario_server_is_paused")
(return-type "gboolean")
)
(define-function ario_server_do_next
(c-name "ario_server_do_next")
(return-type "none")
)
(define-function ario_server_do_prev
(c-name "ario_server_do_prev")
(return-type "none")
)
(define-function ario_server_do_play
(c-name "ario_server_do_play")
(return-type "none")
)
(define-function ario_server_do_play_pos
(c-name "ario_server_do_play_pos")
(return-type "none")
(parameters
'("gint" "id")
)
)
(define-function ario_server_do_pause
(c-name "ario_server_do_pause")
(return-type "none")
)
(define-function ario_server_do_stop
(c-name "ario_server_do_stop")
(return-type "none")
)
(define-function ario_server_free_album
(c-name "ario_server_free_album")
(return-type "none")
(parameters
'("ArioServerAlbum*" "server_album")
)
)
(define-function ario_server_copy_album
(c-name "ario_server_copy_album")
(return-type "ArioServerAlbum*")
(parameters
'("const-ArioServerAlbum*" "server_album")
)
)
(define-function ario_server_clear
(c-name "ario_server_clear")
(return-type "none")
)
(define-function ario_server_shuffle
(c-name "ario_server_shuffle")
(return-type "none")
)
(define-function ario_server_queue_add
(c-name "ario_server_queue_add")
(return-type "none")
(parameters
'("const-char*" "path")
)
)
(define-function ario_server_queue_delete_id
(c-name "ario_server_queue_delete_id")
(return-type "none")
(parameters
'("const-int" "id")
)
)
(define-function ario_server_queue_delete_pos
(c-name "ario_server_queue_delete_pos")
(return-type "none")
(parameters
'("const-int" "pos")
)
)
(define-function ario_server_queue_move
(c-name "ario_server_queue_move")
(return-type "none")
(parameters
'("const-int" "old_pos")
'("const-int" "new_pos")
)
)
(define-function ario_server_queue_moveid
(c-name "ario_server_queue_moveid")
(return-type "none")
(parameters
'("const-int" "id")
'("const-int" "pos")
)
)
(define-function ario_server_queue_commit
(c-name "ario_server_queue_commit")
(return-type "none")
)
(define-function ario_server_insert_at
(c-name "ario_server_insert_at")
(return-type "none")
(parameters
'("const-GSList*" "songs")
'("const-gint" "pos")
)
)
(define-function ario_server_delete_playlist
(c-name "ario_server_delete_playlist")
(return-type "none")
(parameters
'("const-char*" "name")
)
)
(define-function ario_server_get_outputs
(c-name "ario_server_get_outputs")
(return-type "GSList*")
)
(define-function ario_server_enable_output
(c-name "ario_server_enable_output")
(return-type "none")
(parameters
'("const-int" "id")
'("const-gboolean" "enabled")
)
)
(define-function ario_server_get_stats
(c-name "ario_server_get_stats")
(return-type "ArioServerStats*")
)
(define-function ario_server_get_songs_info
(c-name "ario_server_get_songs_info")
(return-type "GList*")
(parameters
'("GSList*" "paths")
)
)
(define-function ario_server_list_files
(c-name "ario_server_list_files")
(return-type "ArioServerFileList*")
(parameters
'("const-char*" "path")
'("const-gboolean" "recursive")
)
)
(define-function ario_server_free_file_list
(c-name "ario_server_free_file_list")
(return-type "none")
(parameters
'("ArioServerFileList*" "files")
)
)
(define-method copy
(of-object "ArioServerCriteria")
(c-name "ario_server_criteria_copy")
(return-type "ArioServerCriteria*")
)
(define-method free
(of-object "ArioServerCriteria")
(c-name "ario_server_criteria_free")
(return-type "none")
)
(define-function ario_server_get_items_names
(c-name "ario_server_get_items_names")
(return-type "gchar**")
)
(define-method get_tag
(of-object "ArioServerSong")
(c-name "ario_server_song_get_tag")
(return-type "const-gchar*")
(parameters
'("ArioServerTag" "tag")
)
)
(define-function ario_server_playlist_add_songs
(c-name "ario_server_playlist_add_songs")
(return-type "none")
(parameters
'("const-GSList*" "songs")
'("const-gint" "pos")
'("const-gboolean" "play")
)
)
(define-function ario_server_playlist_add_dir
(c-name "ario_server_playlist_add_dir")
(return-type "none")
(parameters
'("const-gchar*" "dir")
'("const-gint" "pos")
'("const-gboolean" "play")
)
)
(define-function ario_server_playlist_add_criterias
(c-name "ario_server_playlist_add_criterias")
(return-type "none")
(parameters
'("const-GSList*" "criterias")
'("const-gint" "pos")
'("const-gboolean" "play")
'("const-gint" "nb_entries")
)
)
(define-function ario_server_playlist_append_artists
(c-name "ario_server_playlist_append_artists")
(return-type "none")
(parameters
'("const-GSList*" "artists")
'("const-gboolean" "play")
'("const-gint" "nb_entries")
)
)
(define-function ario_server_playlist_append_songs
(c-name "ario_server_playlist_append_songs")
(return-type "none")
(parameters
'("const-GSList*" "songs")
'("const-gboolean" "play")
)
)
(define-function ario_server_playlist_append_server_songs
(c-name "ario_server_playlist_append_server_songs")
(return-type "none")
(parameters
'("const-GSList*" "songs")
'("const-gboolean" "play")
)
)
(define-function ario_server_playlist_append_dir
(c-name "ario_server_playlist_append_dir")
(return-type "none")
(parameters
'("const-gchar*" "dir")
'("const-gboolean" "play")
)
)
(define-function ario_server_playlist_append_criterias
(c-name "ario_server_playlist_append_criterias")
(return-type "none")
(parameters
'("const-GSList*" "criterias")
'("const-gboolean" "play")
'("const-gint" "nb_entries")
)
)
;; From ario-shell.h
(define-function ario_shell_get_type
(c-name "ario_shell_get_type")
(return-type "GType")
)
(define-function ario_shell_new
(c-name "ario_shell_new")
(is-constructor-of "ArioShell")
(return-type "ArioShell*")
)
(define-method construct
(of-object "ArioShell")
(c-name "ario_shell_construct")
(return-type "none")
(parameters
'("gboolean" "minimized")
)
)
(define-method shutdown
(of-object "ArioShell")
(c-name "ario_shell_shutdown")
(return-type "none")
)
(define-method present
(of-object "ArioShell")
(c-name "ario_shell_present")
(return-type "none")
)
(define-method set_visibility
(of-object "ArioShell")
(c-name "ario_shell_set_visibility")
(return-type "none")
(parameters
'("ArioVisibility" "state")
)
)
;; From ario-source-manager.h
(define-function ario_source_manager_get_type
(c-name "ario_source_manager_get_type")
(return-type "GType")
)
(define-function ario_source_manager_get_instance
(c-name "ario_source_manager_get_instance")
(return-type "GtkWidget*")
(parameters
'("GtkUIManager*" "mgr")
'("GtkActionGroup*" "group")
)
)
(define-method manager_append
(of-object "ArioSource")
(c-name "ario_source_manager_append")
(return-type "none")
)
(define-method manager_remove
(of-object "ArioSource")
(c-name "ario_source_manager_remove")
(return-type "none")
)
(define-function ario_source_manager_reorder
(c-name "ario_source_manager_reorder")
(return-type "none")
)
(define-function ario_source_manager_shutdown
(c-name "ario_source_manager_shutdown")
(return-type "none")
)
(define-function ario_source_manager_goto_playling_song
(c-name "ario_source_manager_goto_playling_song")
(return-type "none")
)
;; From ario-source.h
(define-function ario_source_get_type
(c-name "ario_source_get_type")
(return-type "GType")
)
(define-method get_id
(of-object "ArioSource")
(c-name "ario_source_get_id")
(return-type "gchar*")
)
(define-method get_name
(of-object "ArioSource")
(c-name "ario_source_get_name")
(return-type "gchar*")
)
(define-method get_icon
(of-object "ArioSource")
(c-name "ario_source_get_icon")
(return-type "gchar*")
)
(define-method shutdown
(of-object "ArioSource")
(c-name "ario_source_shutdown")
(return-type "none")
)
(define-method select
(of-object "ArioSource")
(c-name "ario_source_select")
(return-type "none")
)
(define-method unselect
(of-object "ArioSource")
(c-name "ario_source_unselect")
(return-type "none")
)
(define-method goto_playling_song
(of-object "ArioSource")
(c-name "ario_source_goto_playling_song")
(return-type "none")
)
|