summaryrefslogtreecommitdiffstats
path: root/qtjava/javalib/examples/showimg/ImageTextEditor.java
blob: 6c11c1a465ce7f8f8cf6f3b26ae62831d74d2ed4 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
/***************************************************************************
* $Id$
**
* Copyright (C) 1992-2000 Trolltech AS.  All rights reserved.
**
* This file is part of an example program for Qt.  This example
* program may be used, distributed and modified without limitation.
**
****************************************************************************/

import org.kde.qt.*;


class ImageTextEditor  extends QDialog
{
private QImage image;
private QComboBox languages;
private QComboBox keys;
private QMultiLineEdit text;
private QLineEdit newlang;
private QLineEdit newkey;



ImageTextEditor( QImage i, QWidget parent )
{
	this(i, parent, null, 0);
}

ImageTextEditor( QImage i, QWidget parent, String name, int f )
{
    super(parent,name,true,f);
    image = i;
    QVBoxLayout vbox = new QVBoxLayout(this,8);
    vbox.setAutoAdd(true);

    QGrid controls = new QGrid(3,QGrid.Horizontal,this);
    controls.setSpacing(8);
    QLabel l;
    l=new QLabel("Language",controls); l.setAlignment(AlignCenter);
    l=new QLabel("Key",controls); l.setAlignment(AlignCenter);
    new QLabel("",controls); // dummy
    languages = new QComboBox(controls);
    keys = new QComboBox(controls);
    QPushButton remove = new QPushButton("Remove",controls);

    newlang = new QLineEdit(controls);
    newkey = new QLineEdit(controls);
    QPushButton add = new QPushButton("Add",controls);

    text = new QMultiLineEdit(this);

    QHBox hbox = new QHBox(this);
    QPushButton cancel = new QPushButton("Cancel",hbox);
    QPushButton ok = new QPushButton("OK",hbox);

    connect(add,SIGNAL("clicked()"),
	this,SLOT("addText()"));

    connect(remove,SIGNAL("clicked()"),
	this,SLOT("removeText()"));

    connect(ok,SIGNAL("clicked()"),
	this,SLOT("accept()"));

    connect(cancel,SIGNAL("clicked()"),
	this,SLOT("reject()"));

    connect(languages,SIGNAL("activated(int)"),
	this,SLOT("updateText()"));

    connect(keys,SIGNAL("activated(int)"),
	this,SLOT("updateText()"));

    imageChanged();
}

void imageChanged()
{
    languages.clear();
    keys.clear();
    text.clear();
    languages.insertItem("<any>");

    languages.insertStringList( (String[]) image.textLanguages().toArray(new String[0]) );
    keys.insertStringList( (String[]) image.textKeys().toArray(new String[0]) );

    updateText();
}

public void accept()
{
    storeText();
    super.accept();
}

void updateText()
{
    storeText();
    newlang.setText(languages.currentText());
    newkey.setText(keys.currentText());
    String t = image.text(currKey(),currLang());

    text.setText(t);
}

String currKey()
{
    return newkey.text();
}

String currLang()
{
    String l = newlang.text();
    if ( l.equals("<any>") )
	l = "";
    return l;
}

String currText()
{
    String t = text.text();
    if ( t == null ) t = "";
    return t;
}


void removeText()
{
    image.setText(currKey(),currLang(),"");
}

void addText()
{
    storeText();
}

void storeText()
{
    if ( currKey().length() > 0 ) {
	image.setText(currKey(),currLang(),currText());
    }
}
}