Page 1 of 1

Change Skin in Version 0.9.6

Posted: 25 Nov 2008 02:51
by acernativerocks
Hi! I'm Greg from the Philippines and I'm an avid user of your media player. May I ask a question? How can I change the skin of my 0.9.6 VLC? Thanx! :roll:

Re: Change Skin in Version 0.9.6

Posted: 12 Dec 2008 16:17
by Music Lover
Here is the program to chage the skin in 9.6

#ifndef CMD_CHANGE_SKIN_HPP
#define CMD_CHANGE_SKIN_HPP

#include "cmd_generic.hpp"


/// "Change Skin" command
class CmdChangeSkin: public CmdGeneric
{
public:
CmdChangeSkin( intf_thread_t *pIntf, const string &rFile ):
CmdGeneric( pIntf ), m_file( rFile ) {}
virtual ~CmdChangeSkin() {}

/// This method does the real job of the command
virtual void execute();

/// Return the type of the command
virtual string getType() const { return "change skin"; }

private:
/// Skin file to load
string m_file;
};

#endif

Re: Change Skin in Version 0.9.6

Posted: 12 Dec 2008 16:39
by Arite
@Music Lover: I don't think the source for a C++ app is what he wants :).
Hi! I'm Greg from the Philippines and I'm an avid user of your media player. May I ask a question? How can I change the skin of my 0.9.6 VLC? Thanx! :roll:
You can do it in the Preferences by going to:
Tools >> Preferences >> Interface

And select you Skin there. Restart VLC after making the changes.

Arite.