reVeno/Source/Veno/GUI/LookAndFeel/LookHandler.h

31 lines
725 B
C
Raw Normal View History

2020-04-03 13:23:19 +02:00
//
// Created by versustune on 17.03.20.
//
#ifndef VENO_LOOKHANDLER_H
#define VENO_LOOKHANDLER_H
#include "JuceHeader.h"
#include "CrazyLook.h"
#include "FlatLook.h"
#include <memory>
/**
* overwrite the basic m_look and feel based on the selected Look and Feel :)
2020-04-03 13:23:19 +02:00
*/
class LookHandler : public LookAndFeel_V4
{
2020-04-03 13:23:19 +02:00
private:
std::shared_ptr<LookAndFeel_V4> m_look;
int m_currentLook = 0;
2020-04-03 13:23:19 +02:00
public:
LookHandler ();
~LookHandler () override;
void selectLook (int index);
LookAndFeel_V4* getLook ();
2020-04-03 13:23:19 +02:00
protected:
//currently both available themes are CrazyLook <-- (this is a fun one xD) and FlatLook
LookAndFeel_V4* m_feels[2] = {new FlatLook (), new CrazyLook ()};
2020-04-03 13:23:19 +02:00
};
#endif //VENO_LOOKHANDLER_H