gearmulator

Emulation of classic VA synths of the late 90s/2000s that are based on Motorola 56300 family DSPs
Log | Files | Refs | Submodules | README | LICENSE

hyperlinkbuttonStyle.h (313B)


      1 #pragma once
      2 
      3 #include "textbuttonStyle.h"
      4 
      5 namespace juce
      6 {
      7 	class HyperlinkButton;
      8 }
      9 
     10 namespace genericUI
     11 {
     12 	class HyperlinkButtonStyle : public TextButtonStyle
     13 	{
     14 	public:
     15 		explicit HyperlinkButtonStyle(Editor& _editor) : TextButtonStyle(_editor) {}
     16 
     17 		void apply(juce::HyperlinkButton& _target) const;
     18 	};
     19 }