Skip to main content

Notice

Please note that most of the software linked on this forum is likely to be safe to use. If you are unsure, feel free to ask in the relevant topics, or send a private message to an administrator or moderator. To help curb the problems of false positives, or in the event that you do find actual malware, you can contribute through the article linked here.
Topic: Columns UI appearance (Read 3290752 times) previous topic - next topic
0 Members and 4 Guests are viewing this topic.

Columns UI appearance

Reply #1001
My config, having a Windows 7 look:
[a href="http://img137.imageshack.us/i/s7e.png/" target="_blank"]

Columns UI appearance

Reply #1002
awesome dude, keep working

Columns UI appearance

Reply #1003
Used Ganbanzo's fcl as a base and went on from there (actually stripped a lot from there  ). So basically it's a mod on a mod on a mod  but you gotta start somewhere.
Simplified it a lot and made it smaller since I don't need a full window player I just like Ganbanzo's playlist view the most and just changed that a tny bit most of all coloring and removed some stuff I didn't find needed so most of the credit prolly should go to him.



Columns UI appearance

Reply #1005
what do you mean?
i don't use PSS, it's simple CUI layout


Columns UI appearance

Reply #1007
very nice, grimes

i've only just started to explore classical music myself. i like how you've set up your playlists.

this is what i've done. it's a pain to tag these!




Columns UI appearance

Reply #1008
@2E7AH

Ohh .. that's why. I've got the Filters hide/unhide implemented in PSS, but textbutton disappears when resizing window. There is some problem with "REFRESH" which never got solved.

CUI seems a better alternative. Could you let me have a look at your config?

Columns UI appearance

Reply #1009
is this what interests you?
fcl is couple of posts higher from there (although I have some trouble with connection right now)

Columns UI appearance

Reply #1010
Was experimenting when I posted and got around to what you said about the same time.

Secretly hoping maybe you had some method of resizing the splitter. 

Caption is too big and splitter is tiny for my needs. Gonna stick with PSS for now.

Thanks for the help.

Columns UI appearance

Reply #1011
here's a mod of what im working on - im new to this so if anyone has any suggestions, please let me know.

i need some help on how to change the colors of the main bar up top, the tool bars and status bar, so if anyone can point me in that direction, thank you!


Columns UI appearance

Reply #1012
we've seen your layout and you don't need to post your screenshot every day, you know?

Columns UI appearance

Reply #1013
we've seen your layout and you don't need to post your screenshot every day, you know?


does the picture render too largely? i thought it automatically sized down - also im about to change the picture, id like some thoughts as to what to do with the middle empty panel

Columns UI appearance

Reply #1014
we've seen your layout and you don't need to post your screenshot every day, you know?


does the picture render too largely? i thought it automatically sized down - also im about to change the picture, id like some thoughts as to what to do with the middle empty panel



If you don't know what to do with it, just get it out of the way and expand a panel close to it...Foobar is modular but that doesn't mean that you have to use every panel in your configuration...

...also, many people confuse this thread with a WIP (Work In Progress) thread...This is not a WIP, its just for previewing or/and sharing configs...Please make a separate thread for your configuration if you want assistance...

Columns UI appearance

Reply #1015
this is mine. been using it for about two weeks now..


Columns UI appearance

Reply #1016
@garbanzo.bean:
In this configuration you posted earlier, what font do you use? Looks a bit like Segoe UI, but I'm not sure.

Columns UI appearance

Reply #1017
it's Segoi UI Symbol - basically just an extended version with some extra characters i use in a few places.


Columns UI appearance

Reply #1019
Just my new 'improved' (rather simple) config /w waveform seekbar :)



Columns UI appearance

Reply #1021
Here's mine that made in the last day or two. Doesn't look pretty, but has all the functions I could need so no more windows explorer!


Columns UI appearance

Reply #1022
Here is another vandalism of Br3tt's great X-change configuration...   


Columns UI appearance

Reply #1023
Mr. Pacman, can you post your script for the coverflow?
Also, I'd love the script for the playlist...

You don't have to post the scripts but I'd appreciate it if you do!

Columns UI appearance

Reply #1024
Here is the script for chronflow (the playlist is a bit of a mess after my "magic modding hands" and i don't know if Br3tt agrees to publish it:

Code: [Select]
// Author: mil3s (modded by Mr. Pacman)

// General Notes:
// Most of these functions return an array with 3 elements
// These are the x,y,z coordinates in 3d-space
// x is left to right
// y is bottom to top
// z is front to back

var coverSpacing = 0.01;

/************************* COVER DISPLAY *****************/
// These functions define the Display of the single Covers
// The given parameter coverId is a floating point number.
// It is 0 for the center cover, 1 for the one right
// beneath it, -1 for the one on the left side and so on.
// During movement the values float between the integer
// values.
function coverPosition(coverId){
var x, y, z;
y = 0;
if (Math.abs(coverId) <= 1){ // The centered cover
z = 4 + 0.5 * (1 - Math.abs(coverId));
x = coverId * 0.875;
} else { // The covers on the side
z = 4 - (Math.abs(coverId)-1) * 0.001;
x = 0.875 + coverSpacing * (Math.abs(coverId)-1);
if (coverId < 0)
x *= -1;
}
return new Array(x, y, z);
}

// return array is (angle, x, y, z) - this rotates
// the cover *angle* degrees around the vector (x,y,z)
// With (0,0,0,0) the cover is parallel to the x-y-Plane
function coverRotation(coverId){
var angle;
if (Math.abs(coverId) < 1){ // The centered cover
angle = coverId * -98;
} else { // The covers on the side
if (coverId > 0)
angle = -98;
else
angle = 98;
}
return new Array(angle, 0, 1, 0);
}

// Defines the the size boundaries for the cover.
// Aspect ratio is preserved.
// Return Array is (widht, height)
function coverSizeLimits(coverId){
return new Array(1, 1);
}


// Sets which point of the cover coverPosition() defines
// (-1,-1) means bottom left, (0,0) means center,
// (1,1) means top right, (0, -1) means bottom center etc.
// The cover is also rotated around this point.
function coverAlign(coverId){
return new Array(0, -1);
}


// Defines the range of covers to draw.
// Return array is (leftmostCover, rightmostCover)
// This interval shouldn't be larger than 80
// The center cover is 0.
function drawCovers(){
return new Array(-50, 50);
}


// In which direction should the fov be expanded/shrinked
// when the panel is resized?
// If this returns (0,1), the height is fixed.
// If this returns (1,0), the width is fixed.
// You can also return stuff like (0.5,0.5) or (7, 3)
// The values determine how important it is for this
// dimension to stay fixed.
function aspectBehaviour(){
return new Array(0,1);
}

/************************** CAMMERA SETUP ****************/
// Position of the viewport
function eyePos(){
return new Array(0, 0.5, 6.2);
}
// Defines the point for the eye to look at
function lookAt(){
return new Array(0, 0.5, 0);
}
// Used to rotate the view.
// The returned Vector points upwards in the viewport.
// This vector must not be parallel to the line of sight from the
// eyePos point to the lookAt point.
function upVector(){
return new Array(0, 1, 0);
}

/************************** MIRROR SETUP *****************/
function showMirrorPlane(){
return true; // return false to hide the mirror
}
// Any Point on the Mirror Plane
function mirrorPoint (){
return new Array(0, 0, 0);
}
// Normal of the Mirror Plane
function mirrorNormal (){
return new Array(0, 1, 0);
}