comparison audacious/main.h @ 1938:1d9c1026d9f8 trunk

[svn] - DoubleSize support. This has bugs, the most notable one being that DoubleSize only works right if you restart the player. The second bug is rather obvious too. No osmosis skinengine. No TinyPlayer. Classic-esque skinengine only. This is because the doublesize algorithm hates you and wants you to go die in a fire.
author nenolod
date Sun, 05 Nov 2006 04:43:16 -0800
parents 6b4116c34489
children d3a62e1075e2
comparison
equal deleted inserted replaced
1937:f6856d226afb 1938:1d9c1026d9f8
43 # define BMP_PLAYLIST_BASENAME "playlist.xspf" 43 # define BMP_PLAYLIST_BASENAME "playlist.xspf"
44 #endif 44 #endif
45 #define BMP_LOG_BASENAME "log" 45 #define BMP_LOG_BASENAME "log"
46 46
47 #define PLAYER_HEIGHT \ 47 #define PLAYER_HEIGHT \
48 (cfg.player_shaded ? MAINWIN_SHADED_HEIGHT : MAINWIN_HEIGHT) 48 ((cfg.player_shaded ? MAINWIN_SHADED_HEIGHT : MAINWIN_HEIGHT) * (cfg.doublesize + 1))
49 #define PLAYER_WIDTH MAINWIN_WIDTH 49 #define PLAYER_WIDTH \
50 (MAINWIN_WIDTH * (cfg.doublesize + 1))
50 51
51 struct _BmpConfig { 52 struct _BmpConfig {
52 gint player_x, player_y; 53 gint player_x, player_y;
53 gint equalizer_x, equalizer_y; 54 gint equalizer_x, equalizer_y;
54 gint playlist_x, playlist_y; 55 gint playlist_x, playlist_y;