Jamba  3.0.2
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 "TextEditView.h"
23 #include "TextButtonView.h"
24 #include "ScrollbarView.h"
25 
26 namespace pongasoft {
27 namespace VST {
28 namespace GUI {
29 namespace Views {
30 
35 struct JambaViews : public FObject
36 {
38 
39  const ToggleButtonView::Creator fToggleButtonCreator{"jamba::ToggleButton", "Jamba - Toggle Button (on/off)"};
40  const MomentaryButtonView::Creator fMomentaryButtonCreator{"jamba::MomentaryButton", "Jamba - Momentary Button (on when pressed)"};
41  const TextEditView::Creator fTextEditCreator{"jamba::TextEdit", "Jamba - Text Edit (user input string)"};
42  const TextButtonView::Creator fTextButtonCreator{"jamba::TextButton", "Jamba - Text Button"};
43  const ScrollbarView::Creator fScrollbarView{"jamba::Scrollbar", "Jamba - Scrollbar"};
44 };
45 
46 }
47 }
48 }
49 }
const ToggleButtonView::Creator fToggleButtonCreator
Definition: JambaViews.h:39
const ScrollbarView::Creator fScrollbarView
Definition: JambaViews.h:43
Definition: Clock.h:22
const TextEditView::Creator fTextEditCreator
Definition: JambaViews.h:41
Definition: JambaViews.h:35
const TextButtonView::Creator fTextButtonCreator
Definition: JambaViews.h:42
const MomentaryButtonView::Creator fMomentaryButtonCreator
Definition: JambaViews.h:40