OpenConcerto

Dépôt officiel du code source de l'ERP OpenConcerto
sonarqube

svn://code.openconcerto.org/openconcerto

Rev

Rev 132 | Details | Compare with Previous | Last modification | View Log | RSS feed

Rev Author Line No. Line
132 ilm 1
/*
2
 * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS HEADER.
3
 *
182 ilm 4
 * Copyright 2011-2019 OpenConcerto, by ILM Informatique. All rights reserved.
132 ilm 5
 *
6
 * The contents of this file are subject to the terms of the GNU General Public License Version 3
7
 * only ("GPL"). You may not use this file except in compliance with the License. You can obtain a
8
 * copy of the License at http://www.gnu.org/licenses/gpl-3.0.html See the License for the specific
9
 * language governing permissions and limitations under the License.
10
 *
11
 * When distributing the software, include this License Header Notice in each file.
12
 */
13
 
14
 /*
15
 * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS HEADER.
16
 *
17
 * Copyright 2011 OpenConcerto, by ILM Informatique. All rights reserved.
18
 *
19
 * The contents of this file are subject to the terms of the GNU General Public License Version 3
20
 * only ("GPL"). You may not use this file except in compliance with the License. You can obtain a
21
 * copy of the License at http://www.gnu.org/licenses/gpl-3.0.html See the License for the specific
22
 * language governing permissions and limitations under the License.
23
 *
24
 * When distributing the software, include this License Header Notice in each file.
25
 */
26
 
27
package org.openconcerto.ui.light;
28
 
29
import java.awt.Color;
30
 
31
public class TitleLine extends LightUILine {
32
 
33
    final LightUILabel valueElement;
34
 
35
    public TitleLine(final String txt) {
36
        super();
37
        this.setGridAlignment(ALIGN_GRID);
38
        this.valueElement = new LightUILabel("label.value", txt, true);
39
        this.valueElement.setHorizontalAlignement(LightUIElement.HALIGN_LEFT);
40
        this.valueElement.setWeightX(1);
41
        this.valueElement.setGridWidth(2);
42
        this.addChild(this.valueElement);
43
        setElementPadding(5);
44
    }
45
 
46
    public void setItalicOnValue(boolean b) {
47
        this.valueElement.setFontItalic(b);
48
    }
49
 
50
    public void setValueolor(Color c) {
51
        this.valueElement.setForeColor(c);
52
    }
53
}