Jamba  3.1.0
JambaViews.h
Go to the documentation of this file.
1 /*
2  * Copyright (c) 2018 pongasoft
3  *
4  * Licensed under the Apache License, Version 2.0 (the "License"); you may not
5  * use this file except in compliance with the License. You may obtain a copy of
6  * the License at
7  *
8  * http://www.apache.org/licenses/LICENSE-2.0
9  *
10  * Unless required by applicable law or agreed to in writing, software
11  * distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
12  * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
13  * License for the specific language governing permissions and limitations under
14  * the License.
15  *
16  * @author Yan Pujante
17  */
18 #pragma once
19 
20 #include "ToggleButtonView.h"
21 #include "MomentaryButtonView.h"
22 #include "StepButtonView.h"
23 #include "TextEditView.h"
24 #include "TextButtonView.h"
25 #include "ScrollbarView.h"
26 
27 namespace pongasoft {
28 namespace VST {
29 namespace GUI {
30 namespace Views {
31 
36 struct JambaViews : public FObject
37 {
39 
40  const ToggleButtonView::Creator fToggleButtonCreator{"jamba::ToggleButton", "Jamba - Toggle Button (on/off)"};
41  const MomentaryButtonView::Creator fMomentaryButtonCreator{"jamba::MomentaryButton", "Jamba - Momentary Button (on when pressed)"};
42  const StepButtonView::Creator fStepButtonView{"jamba::StepButton", "Jamba - Step Button (+ or - discrete property)"};
43  const TextEditView::Creator fTextEditCreator{"jamba::TextEdit", "Jamba - Text Edit (user input string)"};
44  const TextButtonView::Creator fTextButtonCreator{"jamba::TextButton", "Jamba - Text Button"};
45  const ScrollbarView::Creator fScrollbarView{"jamba::Scrollbar", "Jamba - Scrollbar"};
46 };
47 
48 }
49 }
50 }
51 }
const ToggleButtonView::Creator fToggleButtonCreator
Definition: JambaViews.h:40
const ScrollbarView::Creator fScrollbarView
Definition: JambaViews.h:45
Definition: Clock.h:22
const StepButtonView::Creator fStepButtonView
Definition: JambaViews.h:42
const TextEditView::Creator fTextEditCreator
Definition: JambaViews.h:43
Definition: JambaViews.h:36
const TextButtonView::Creator fTextButtonCreator
Definition: JambaViews.h:44
const MomentaryButtonView::Creator fMomentaryButtonCreator
Definition: JambaViews.h:41