You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
47 lines
1.1 KiB
47 lines
1.1 KiB
/****************************************************************************
|
|
**
|
|
** Copyright (C) 1992-2008 Trolltech ASA. All rights reserved.
|
|
**
|
|
** This file is part of an example program for Qt. This example
|
|
** program may be used, distributed and modified without limitation.
|
|
**
|
|
*****************************************************************************/
|
|
|
|
#ifndef IMAGETEXTEDITOR_H
|
|
#define IMAGETEXTEDITOR_H
|
|
|
|
#include <qdialog.h>
|
|
|
|
class QImage;
|
|
class QComboBox;
|
|
class QListBox;
|
|
class QLineEdit;
|
|
class QMultiLineEdit;
|
|
|
|
class ImageTextEditor : public QDialog
|
|
{
|
|
Q_OBJECT
|
|
public:
|
|
ImageTextEditor( QImage& i, QWidget *parent=0, const char *name=0, WFlags f=0 );
|
|
~ImageTextEditor();
|
|
void accept();
|
|
public slots:
|
|
void imageChanged();
|
|
void updateText();
|
|
void addText();
|
|
void removeText();
|
|
private:
|
|
void storeText();
|
|
QImage& image;
|
|
QComboBox* languages;
|
|
QComboBox* keys;
|
|
QMultiLineEdit* text;
|
|
QLineEdit* newlang;
|
|
QLineEdit* newkey;
|
|
QString currKey();
|
|
QString currLang();
|
|
QString currText();
|
|
};
|
|
|
|
#endif // IMAGETEXTEDITOR_H
|