summaryrefslogtreecommitdiffstats
path: root/examples/showimg/imagetexteditor.cpp
blob: 5f950b337402dfddc31ff445e15f7259e2498782 (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
/****************************************************************************
**
** Copyright (C) 1992-2008 Trolltech ASA.  All rights reserved.
**
** This file is part of an example program for TQt.  This example
** program may be used, distributed and modified without limitation.
**
*****************************************************************************/

#include "imagetexteditor.h"
#include <ntqimage.h>
#include <ntqlayout.h>
#include <ntqgrid.h>
#include <ntqvbox.h>
#include <ntqhbox.h>
#include <ntqcombobox.h>
#include <ntqmultilineedit.h>
#include <ntqlabel.h>
#include <ntqlineedit.h>
#include <ntqlistbox.h>
#include <ntqpushbutton.h>


ImageTextEditor::ImageTextEditor( TQImage& i, TQWidget *parent, const char *name, WFlags f ) :
    TQDialog(parent,name,TRUE,f),
    image(i)
{
    TQVBoxLayout* vbox = new TQVBoxLayout(this,8);
    vbox->setAutoAdd(TRUE);

    TQGrid* controls = new TQGrid(3,TQGrid::Horizontal,this);
    controls->setSpacing(8);
    TQLabel* l;
    l=new TQLabel("Language",controls); l->setAlignment(AlignCenter);
    l=new TQLabel("Key",controls); l->setAlignment(AlignCenter);
    (void)new TQLabel("",controls); // dummy
    languages = new TQComboBox(controls);
    keys = new TQComboBox(controls);
    TQPushButton* remove = new TQPushButton("Remove",controls);

    newlang = new TQLineEdit(controls);
    newkey = new TQLineEdit(controls);
    TQPushButton* add = new TQPushButton("Add",controls);

    text = new TQMultiLineEdit(this);

    TQHBox* hbox = new TQHBox(this);
    TQPushButton* cancel = new TQPushButton("Cancel",hbox);
    TQPushButton* ok = new TQPushButton("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();
}

ImageTextEditor::~ImageTextEditor()
{
}

void ImageTextEditor::imageChanged()
{
    languages->clear();
    keys->clear();
    text->clear();
    languages->insertItem("<any>");

    languages->insertStringList(image.textLanguages());
    keys->insertStringList(image.textKeys());

    updateText();
}

void ImageTextEditor::accept()
{
    storeText();
    TQDialog::accept();
}

void ImageTextEditor::updateText()
{
    storeText();
    newlang->setText(languages->currentText());
    newkey->setText(keys->currentText());
    TQString t = image.text(currKey(),currLang());

    text->setText(t);
}

TQString ImageTextEditor::currKey()
{
    return newkey->text();
}

TQString ImageTextEditor::currLang()
{
    TQString l = newlang->text();
    if ( l=="<any>" )
	l = TQString::null;
    return l;
}

TQString ImageTextEditor::currText()
{
    TQString t = text->text();
    if ( t.isNull() ) t = "";
    return t;
}


void ImageTextEditor::removeText()
{
    image.setText(currKey(),currLang(),TQString::null);
}

void ImageTextEditor::addText()
{
    storeText();
}

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