Mercurial > audlegacy
annotate src/audacious/ui_playlist.h @ 3395:df609e7e7bcf
updated romanian translation
| author | Cristi Magherusan <majeru@atheme-project.org> |
|---|---|
| date | Sun, 26 Aug 2007 03:06:40 +0300 |
| parents | f02623377013 |
| children | 51641a875a01 |
| rev | line source |
|---|---|
| 2313 | 1 /* BMP - Cross-platform multimedia player |
| 2 * Copyright (C) 2003-2004 BMP development team. | |
| 3 * | |
| 4 * Based on XMMS: | |
| 5 * Copyright (C) 1998-2003 XMMS development team. | |
| 6 * | |
| 7 * This program is free software; you can redistribute it and/or modify | |
| 8 * it under the terms of the GNU General Public License as published by | |
|
3121
3b6d316f8b09
GPL3 relicensing.
William Pitcock <nenolod@atheme-project.org>
parents:
2853
diff
changeset
|
9 * the Free Software Foundation; under version 3 of the License. |
| 2313 | 10 * |
| 11 * This program is distributed in the hope that it will be useful, | |
| 12 * but WITHOUT ANY WARRANTY; without even the implied warranty of | |
| 13 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | |
| 14 * GNU General Public License for more details. | |
| 15 * | |
| 16 * You should have received a copy of the GNU General Public License | |
|
3121
3b6d316f8b09
GPL3 relicensing.
William Pitcock <nenolod@atheme-project.org>
parents:
2853
diff
changeset
|
17 * along with this program. If not, see <http://www.gnu.org/licenses>. |
|
3123
f1c756f39e6c
Invoke "Plugins are not derived work" clause provided by GPL3.
William Pitcock <nenolod@atheme-project.org>
parents:
3121
diff
changeset
|
18 * |
|
f1c756f39e6c
Invoke "Plugins are not derived work" clause provided by GPL3.
William Pitcock <nenolod@atheme-project.org>
parents:
3121
diff
changeset
|
19 * The Audacious team does not consider modular code linking to |
|
f1c756f39e6c
Invoke "Plugins are not derived work" clause provided by GPL3.
William Pitcock <nenolod@atheme-project.org>
parents:
3121
diff
changeset
|
20 * Audacious or using our public API to be a derived work. |
| 2313 | 21 */ |
| 22 | |
| 23 #ifndef PLAYLISTWIN_H | |
| 24 #define PLAYLISTWIN_H | |
| 25 | |
| 26 #include <glib.h> | |
| 27 | |
| 28 #include "ui_main.h" | |
| 29 #include "playlist.h" | |
| 30 | |
| 31 #define PLAYLISTWIN_FRAME_TOP_HEIGHT 20 | |
| 32 #define PLAYLISTWIN_FRAME_BOTTOM_HEIGHT 38 | |
| 33 #define PLAYLISTWIN_FRAME_LEFT_WIDTH 12 | |
| 34 #define PLAYLISTWIN_FRAME_RIGHT_WIDTH 19 | |
| 35 | |
| 36 #define PLAYLISTWIN_MIN_WIDTH MAINWIN_WIDTH | |
| 37 #define PLAYLISTWIN_MIN_HEIGHT MAINWIN_HEIGHT | |
| 38 #define PLAYLISTWIN_WIDTH_SNAP 25 | |
| 39 #define PLAYLISTWIN_HEIGHT_SNAP 29 | |
| 40 #define PLAYLISTWIN_SHADED_HEIGHT MAINWIN_SHADED_HEIGHT | |
| 41 #define PLAYLISTWIN_WIDTH cfg.playlist_width | |
| 42 #define PLAYLISTWIN_HEIGHT \ | |
| 43 (cfg.playlist_shaded ? PLAYLISTWIN_SHADED_HEIGHT : cfg.playlist_height) | |
| 44 | |
| 45 #define PLAYLISTWIN_DEFAULT_WIDTH 275 | |
| 46 #define PLAYLISTWIN_DEFAULT_HEIGHT 232 | |
| 47 #define PLAYLISTWIN_DEFAULT_POS_X 295 | |
| 48 #define PLAYLISTWIN_DEFAULT_POS_Y 20 | |
| 49 | |
| 50 #define PLAYLISTWIN_DEFAULT_FONT "Sans Bold 8" | |
| 51 | |
| 52 gboolean playlistwin_is_shaded(void); | |
| 2328 | 53 gint playlistwin_get_width(void); |
| 54 gint playlistwin_get_height(void); | |
| 2313 | 55 void playlistwin_update_list(Playlist *playlist); |
| 56 gboolean playlistwin_item_visible(gint index); | |
| 57 gint playlistwin_get_toprow(void); | |
| 58 void playlistwin_set_toprow(gint top); | |
| 59 void playlistwin_set_shade_menu_cb(gboolean shaded); | |
| 60 void playlistwin_set_shade(gboolean shaded); | |
| 61 void playlistwin_shade_toggle(void); | |
| 62 void playlistwin_create(void); | |
| 63 void playlistwin_hide_timer(void); | |
| 64 void playlistwin_set_time(gint time, gint length, TimerMode mode); | |
| 65 void playlistwin_show(void); | |
| 66 void playlistwin_hide(void); | |
| 67 void playlistwin_set_back_pixmap(void); | |
| 68 void playlistwin_scroll(gint num); | |
| 69 void playlistwin_scroll_up_pushed(void); | |
| 70 void playlistwin_scroll_down_pushed(void); | |
| 71 void playlistwin_select_playlist_to_load(const gchar * default_filename); | |
| 72 void playlistwin_set_sinfo_font(gchar *font); | |
| 73 void playlistwin_set_sinfo_scroll(gboolean scroll); | |
|
3135
7cdcf8ab08da
replace PlaylistSlider with UiSkinnedPlaylistSlider
Tomasz Mon <desowin@gmail.com>
parents:
3123
diff
changeset
|
74 gint playlistwin_list_get_visible_count(void); |
|
7cdcf8ab08da
replace PlaylistSlider with UiSkinnedPlaylistSlider
Tomasz Mon <desowin@gmail.com>
parents:
3123
diff
changeset
|
75 gint playlistwin_list_get_first(void); |
| 2313 | 76 |
| 77 extern GtkWidget *playlistwin; | |
| 3217 | 78 extern GtkWidget *playlistwin_list; |
| 2313 | 79 |
| 80 extern gboolean playlistwin_focus; | |
| 81 | |
| 82 #endif |
