summaryrefslogtreecommitdiffstats
path: root/charselectapplet
diff options
context:
space:
mode:
authortpearson <tpearson@283d02a7-25f6-0310-bc7c-ecb5cbfe19da>2010-07-31 19:52:55 +0000
committertpearson <tpearson@283d02a7-25f6-0310-bc7c-ecb5cbfe19da>2010-07-31 19:52:55 +0000
commit5f5ee2367157176ed223b86343eb0a9e4022e020 (patch)
tree6a9c87f14ee38e90eff3c77c784f14e4f38fd5a1 /charselectapplet
parent4facf42feec57b22dcf46badc115ad6c5b5cc512 (diff)
downloadtdeutils-5f5ee2367157176ed223b86343eb0a9e4022e020.tar.gz
tdeutils-5f5ee2367157176ed223b86343eb0a9e4022e020.zip
Trinity Qt initial conversion
git-svn-id: svn://anonsvn.kde.org/home/kde/branches/trinity/kdeutils@1157653 283d02a7-25f6-0310-bc7c-ecb5cbfe19da
Diffstat (limited to 'charselectapplet')
-rw-r--r--charselectapplet/charselectapplet.cpp98
-rw-r--r--charselectapplet/charselectapplet.h38
2 files changed, 68 insertions, 68 deletions
diff --git a/charselectapplet/charselectapplet.cpp b/charselectapplet/charselectapplet.cpp
index f2fccbc..24cc55a 100644
--- a/charselectapplet/charselectapplet.cpp
+++ b/charselectapplet/charselectapplet.cpp
@@ -23,12 +23,12 @@ CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
#include <math.h>
-#include <qlayout.h>
-#include <qpainter.h>
-#include <qclipboard.h>
-#include <qvbox.h>
-#include <qspinbox.h>
-#include <qlabel.h>
+#include <tqlayout.h>
+#include <tqpainter.h>
+#include <tqclipboard.h>
+#include <tqvbox.h>
+#include <tqspinbox.h>
+#include <tqlabel.h>
#include <klocale.h>
#include <kglobal.h>
@@ -41,7 +41,7 @@ CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
extern "C"
{
- KDE_EXPORT KPanelApplet* init(QWidget *parent, const QString& configFile)
+ KDE_EXPORT KPanelApplet* init(TQWidget *parent, const TQString& configFile)
{
KGlobal::locale()->insertCatalogue("kcharselectapplet");
return new CharSelectApplet(configFile, KPanelApplet::Normal,
@@ -54,8 +54,8 @@ static int cell_width = 16;
static int cell_height = 16;
static int char_count = 0;
-CharSelectApplet::CharSelectApplet(const QString& configFile, Type type, int actions,
- QWidget *parent, const char *name)
+CharSelectApplet::CharSelectApplet(const TQString& configFile, Type type, int actions,
+ TQWidget *parent, const char *name)
: KPanelApplet(configFile, type, actions, parent, name),
_aboutData(0), _configDialog(0)
{
@@ -64,10 +64,10 @@ CharSelectApplet::CharSelectApplet(const QString& configFile, Type type, int act
c->setGroup("General");
cell_width = c->readNumEntry("CellWidth", cell_width);
cell_height = c->readNumEntry("CellHeight", cell_height);
- QString characters = c->readEntry("Characters", "ÄäÖöÜüß©®§");
+ TQString characters = c->readEntry("Characters", "ÄäÖöÜüß©®§");
// setup layout
- QHBoxLayout *_layout = new QHBoxLayout(this);
+ TQHBoxLayout *_layout = new TQHBoxLayout(this);
_layout->setAutoAdd(true);
// setup table view
@@ -118,7 +118,7 @@ void CharSelectApplet::preferences()
_configDialog->setCharacters(_table->characters());
_configDialog->setCellWidth(cell_width);
_configDialog->setCellHeight(cell_height);
- _configDialog->setInitialSize(QSize(300, 100));
+ _configDialog->setInitialSize(TQSize(300, 100));
_configDialog->exec();
cell_width = _configDialog->cellWidth();
@@ -151,14 +151,14 @@ void CharSelectApplet::about()
dialog.exec();
}
-CharTable::CharTable(QWidget* parent, const char* name)
- : QFrame(parent, name), _rows(2), _cols(2),
+CharTable::CharTable(TQWidget* parent, const char* name)
+ : TQFrame(parent, name), _rows(2), _cols(2),
_activeRow(-1), _activeCol(-1),
_cWidth(cell_width), _cHeight(cell_height)
{
- setFrameStyle(QFrame::StyledPanel | QFrame::Sunken);
- setFocusPolicy(QWidget::NoFocus);
- setBackgroundMode(QWidget::NoBackground);
+ setFrameStyle(TQFrame::StyledPanel | TQFrame::Sunken);
+ setFocusPolicy(TQWidget::NoFocus);
+ setBackgroundMode(TQWidget::NoBackground);
}
void CharTable::setRowsAndColumns(int r, int c)
@@ -167,27 +167,27 @@ void CharTable::setRowsAndColumns(int r, int c)
_cols = c;
}
-void CharTable::insertChar(QChar c)
+void CharTable::insertChar(TQChar c)
{
_map.insert(char_count++, c);
}
-void CharTable::insertString(QString s)
+void CharTable::insertString(TQString s)
{
for (unsigned int i = 0; i < s.length(); i++)
insertChar(s[i]);
}
-void CharTable::setCharacters(const QString& characters)
+void CharTable::setCharacters(const TQString& characters)
{
_map.clear();
char_count = 0;
insertString(characters);
}
-QString CharTable::characters()
+TQString CharTable::characters()
{
- QString characters;
+ TQString characters;
for (int r = 0; r <_rows; r++)
for (int c = 0; c <_cols; c++)
characters += _map[c + r * _cols];
@@ -205,15 +205,15 @@ int CharTable::findCol(int x)
return x / _cWidth;
}
-void CharTable::resizeEvent(QResizeEvent*)
+void CharTable::resizeEvent(TQResizeEvent*)
{
_cWidth = contentsRect().width() / _cols;
_cHeight = contentsRect().height() / _rows;
}
-void CharTable::paintEvent(QPaintEvent* e)
+void CharTable::paintEvent(TQPaintEvent* e)
{
- QPainter p(this);
+ TQPainter p(this);
int xoffset = contentsRect().x();
int yoffset = contentsRect().y();
@@ -225,12 +225,12 @@ void CharTable::paintEvent(QPaintEvent* e)
paintCell(&p, r, c);
}
}
- QFrame::paintEvent(e);
+ TQFrame::paintEvent(e);
}
void CharTable::repaintCell(int r, int c)
{
- QPainter p(this);
+ TQPainter p(this);
int xoffset = contentsRect().x();
int yoffset = contentsRect().y();
@@ -240,7 +240,7 @@ void CharTable::repaintCell(int r, int c)
paintCell(&p, r, c);
}
-void CharTable::paintCell(QPainter* p, int row, int col)
+void CharTable::paintCell(TQPainter* p, int row, int col)
{
int w = _cWidth;
int h = _cHeight;
@@ -251,28 +251,28 @@ void CharTable::paintCell(QPainter* p, int row, int col)
// draw background
if (active) {
- p->setBrush(QBrush(colorGroup().highlight()));
+ p->setBrush(TQBrush(colorGroup().highlight()));
p->setPen(NoPen);
p->drawRect(0, 0, w, h);
p->setPen(colorGroup().highlightedText());
}
else {
- p->setBrush(QBrush(colorGroup().base()));
+ p->setBrush(TQBrush(colorGroup().base()));
p->setPen(NoPen);
p->drawRect(0, 0, w, h);
p->setPen(colorGroup().text());
}
// set font
- QFont f = font();
+ TQFont f = font();
f.setPixelSize(10);
p->setFont(f);
// draw char
- p->drawText(0, 0, x2, y2, AlignHCenter | AlignVCenter, QString(_map[col + row * _cols]));
+ p->drawText(0, 0, x2, y2, AlignHCenter | AlignVCenter, TQString(_map[col + row * _cols]));
}
-void CharTable::mousePressEvent(QMouseEvent *e)
+void CharTable::mousePressEvent(TQMouseEvent *e)
{
int row = findRow(e->y());
if (row == -1) return;
@@ -283,7 +283,7 @@ void CharTable::mousePressEvent(QMouseEvent *e)
selectCell(row, col);
}
-void CharTable::mouseMoveEvent(QMouseEvent *e)
+void CharTable::mouseMoveEvent(TQMouseEvent *e)
{
if(!(e->state() & (LeftButton | RightButton | MidButton))) return;
@@ -310,16 +310,16 @@ void CharTable::selectCell(int row, int col)
repaintCell(oldRow, oldCol);
repaintCell(_activeRow, _activeCol);
- QClipboard *cb = QApplication::clipboard();
- QObject::disconnect( cb, SIGNAL(dataChanged()), this, SLOT(clearCell()) );
- QString text = QString(_map[col + row * _cols]);
+ QClipboard *cb = TQApplication::clipboard();
+ TQObject::disconnect( cb, TQT_SIGNAL(dataChanged()), this, TQT_SLOT(clearCell()) );
+ TQString text = TQString(_map[col + row * _cols]);
bool oldMode = cb->selectionModeEnabled();
cb->setSelectionMode( true );
cb->setText( text );
cb->setSelectionMode( false );
cb->setText( text );
cb->setSelectionMode( oldMode );
- QObject::connect( cb, SIGNAL(dataChanged()), this, SLOT(clearCell()) );
+ TQObject::connect( cb, TQT_SIGNAL(dataChanged()), this, TQT_SLOT(clearCell()) );
}
void CharTable::clearCell()
@@ -332,27 +332,27 @@ void CharTable::clearCell()
repaintCell(oldRow, oldCol);
- QObject::disconnect( QApplication::clipboard(), SIGNAL(dataChanged()), this, SLOT(clearCell()) );
+ TQObject::disconnect( TQApplication::clipboard(), TQT_SIGNAL(dataChanged()), this, TQT_SLOT(clearCell()) );
}
-ConfigDialog::ConfigDialog(QWidget* parent, const char* name)
+ConfigDialog::ConfigDialog(TQWidget* parent, const char* name)
: KDialogBase(parent, name, true, i18n("Configuration"),
Ok | Cancel, Ok, true)
{
- QVBox *page = makeVBoxMainWidget();
+ TQVBox *page = makeVBoxMainWidget();
- QHBox *whbox = new QHBox(page);
- QHBox *hhbox = new QHBox(page);
- QHBox *chbox = new QHBox(page);
+ TQHBox *whbox = new TQHBox(page);
+ TQHBox *hhbox = new TQHBox(page);
+ TQHBox *chbox = new TQHBox(page);
- QLabel *wlabel = new QLabel(i18n("Cell width:"), whbox);
- QLabel *hlabel = new QLabel(i18n("Cell height:"), hhbox);
- (void) new QLabel(i18n("Characters:"), chbox);
+ TQLabel *wlabel = new TQLabel(i18n("Cell width:"), whbox);
+ TQLabel *hlabel = new TQLabel(i18n("Cell height:"), hhbox);
+ (void) new TQLabel(i18n("Characters:"), chbox);
- _widthSpinBox = new QSpinBox(whbox);
+ _widthSpinBox = new TQSpinBox(whbox);
_widthSpinBox->setMinValue(1);
- _heightSpinBox = new QSpinBox(hhbox);
+ _heightSpinBox = new TQSpinBox(hhbox);
_heightSpinBox->setMinValue(1);
_characterInput = new KLineEdit(chbox);
diff --git a/charselectapplet/charselectapplet.h b/charselectapplet/charselectapplet.h
index b54dc55..12855a1 100644
--- a/charselectapplet/charselectapplet.h
+++ b/charselectapplet/charselectapplet.h
@@ -24,7 +24,7 @@ CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
#ifndef __charselectapplet_h__
#define __charselectapplet_h__
-#include <qmap.h>
+#include <tqmap.h>
#include <kpanelapplet.h>
#include <kdialogbase.h>
@@ -38,19 +38,19 @@ class ConfigDialog : public KDialogBase
Q_OBJECT
public:
- ConfigDialog(QWidget* parent = 0, const char* name = 0);
+ ConfigDialog(TQWidget* parent = 0, const char* name = 0);
- void setCharacters(const QString& s) { _characterInput->setText(s); }
+ void setCharacters(const TQString& s) { _characterInput->setText(s); }
void setCellWidth(int w) { _widthSpinBox->setValue(w); }
void setCellHeight(int h) { _heightSpinBox->setValue(h); }
- QString characters() { return _characterInput->text(); }
+ TQString characters() { return _characterInput->text(); }
int cellWidth() { return _widthSpinBox->value(); }
int cellHeight() { return _heightSpinBox->value(); }
private:
- QSpinBox *_widthSpinBox;
- QSpinBox *_heightSpinBox;
+ TQSpinBox *_widthSpinBox;
+ TQSpinBox *_heightSpinBox;
KLineEdit *_characterInput;
};
@@ -59,25 +59,25 @@ class CharTable : public QFrame
Q_OBJECT
public:
- CharTable(QWidget* parent = 0, const char* name = 0);
+ CharTable(TQWidget* parent = 0, const char* name = 0);
void setRowsAndColumns(int, int);
- void setCharacters(const QString&);
- QString characters();
+ void setCharacters(const TQString&);
+ TQString characters();
protected:
- void paintEvent(QPaintEvent*);
- void resizeEvent(QResizeEvent*);
- void mousePressEvent(QMouseEvent*);
- void mouseMoveEvent(QMouseEvent*);
+ void paintEvent(TQPaintEvent*);
+ void resizeEvent(TQResizeEvent*);
+ void mousePressEvent(TQMouseEvent*);
+ void mouseMoveEvent(TQMouseEvent*);
- void paintCell(QPainter*, int, int);
+ void paintCell(TQPainter*, int, int);
void repaintCell(int, int);
void selectCell(int row, int col);
- void insertString(QString s);
- void insertChar(QChar c);
+ void insertString(TQString s);
+ void insertChar(TQChar c);
int findRow(int y);
int findCol(int x);
@@ -89,7 +89,7 @@ private:
int _activeRow, _activeCol;
int _cWidth, _cHeight;
int _charcount;
- QMap<int, QChar> _map;
+ TQMap<int, TQChar> _map;
};
class CharSelectApplet : public KPanelApplet
@@ -97,8 +97,8 @@ class CharSelectApplet : public KPanelApplet
Q_OBJECT
public:
- CharSelectApplet(const QString& configFile, Type t = Stretch, int actions = 0,
- QWidget *parent = 0, const char *name = 0);
+ CharSelectApplet(const TQString& configFile, Type t = Stretch, int actions = 0,
+ TQWidget *parent = 0, const char *name = 0);
int widthForHeight(int height) const;
int heightForWidth(int width) const;