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.
konversation/konversation/src/insertchardialog.cpp

58 lines
1.4 KiB

/*
This program is free software; you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
the Free Software Foundation; either version 2 of the License, or
(at your option) any later version.
*/
/*
copyright: (C) 2004 by Peter Simonsson
email: psn@linux.se
*/
#include "insertchardialog.h"
#include <kcharselect.h>
#include <tdelocale.h>
#include <kguiitem.h>
namespace Konversation
{
InsertCharDialog::InsertCharDialog(const TQString& font, TQWidget *parent, const char *name)
: KDialogBase(parent, name, false, i18n("Insert Character"),
KDialogBase::Ok | KDialogBase::Close,
KDialogBase::Ok, false)
{
setButtonOK(KGuiItem(i18n("&Insert"), "ok", i18n("Insert a character")));
m_charTable = new KCharSelect(this, "charTable", font);
m_charTable->enableFontCombo(false);
setMainWidget(m_charTable);
connect(m_charTable, TQT_SIGNAL(doubleClicked()), this, TQT_SLOT(slotOk()));
}
InsertCharDialog::~InsertCharDialog()
{
}
void InsertCharDialog::setFont(const TQFont &font)
{
m_charTable->setFont(TQString(font.family()));
}
TQChar InsertCharDialog::chr()
{
return m_charTable->chr();
}
void InsertCharDialog::slotOk()
{
emit insertChar(m_charTable->chr());
}
}
#include "insertchardialog.moc"