~pixeldrama/annis/KidKo

« back to all changes in this revision

Viewing changes to annis-gui/src/main/java/annis/gui/controlpanel/ControlPanel.java

  • Committer: Thomas Krause
  • Date: 2011-09-02 15:55:46 UTC
  • mto: This revision was merged to the branch mainline in revision 776.
  • Revision ID: thomas@berlin-reloaded.de-20110902155546-kx3okkstf5lqxk33
- adding some vaadin based stuff

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
/*
 
2
 * Copyright 2011 Corpuslinguistic working group Humboldt University Berlin.
 
3
 *
 
4
 * Licensed under the Apache License, Version 2.0 (the "License");
 
5
 * you may not use this file except in compliance with the License.
 
6
 * You may obtain a copy of 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,
 
12
 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
 
13
 * See the License for the specific language governing permissions and
 
14
 * limitations under the License.
 
15
 */
 
16
package annis.gui.controlpanel;
 
17
 
 
18
import com.vaadin.terminal.gwt.server.WebBrowser;
 
19
import com.vaadin.ui.Label;
 
20
import com.vaadin.ui.Layout;
 
21
import com.vaadin.ui.Panel;
 
22
 
 
23
/**
 
24
 *
 
25
 * @author thomas
 
26
 */
 
27
public class ControlPanel extends Panel
 
28
{
 
29
  public ControlPanel()
 
30
  {
 
31
    setWidth(345f, Layout.UNITS_PIXELS);    
 
32
    setHeight(100, Layout.UNITS_PERCENTAGE);
 
33
    
 
34
    addStyleName("control");
 
35
    addComponent(new Label("background should be orange"));
 
36
  }
 
37
}