summaryrefslogtreecommitdiff
path: root/noncore/apps/opie-console/function_keyboard.cpp
Side-by-side diff
Diffstat (limited to 'noncore/apps/opie-console/function_keyboard.cpp') (more/less context) (ignore whitespace changes)
-rw-r--r--noncore/apps/opie-console/function_keyboard.cpp18
1 files changed, 5 insertions, 13 deletions
diff --git a/noncore/apps/opie-console/function_keyboard.cpp b/noncore/apps/opie-console/function_keyboard.cpp
index 6613183..0abe0d9 100644
--- a/noncore/apps/opie-console/function_keyboard.cpp
+++ b/noncore/apps/opie-console/function_keyboard.cpp
@@ -2,6 +2,2 @@
-/* OPIE */
-#include <opie2/odebug.h>
-using namespace Opie::Core;
-
/* QT */
@@ -44,3 +40,2 @@ FunctionKeyboard::FunctionKeyboard(QWidget *parent) :
}
- //owarn << "loaded " << keys.count() << " keys" << oendl;
*/
@@ -263,5 +258,2 @@ FunctionKeyboardConfig::FunctionKeyboardConfig(const QString& name, QWidget* par
{
- owarn << "FunctionKeyboardConfig" << oendl;
-
-
kb = new FunctionKeyboard(this);
@@ -271,6 +263,6 @@ FunctionKeyboardConfig::FunctionKeyboardConfig(const QString& name, QWidget* par
QGroupBox *dimentions = new QGroupBox(2, Qt::Horizontal, tr("Dimensions"), this);
- QLabel *l = new QLabel("Rows", dimentions);
+ QLabel *l = new QLabel(tr("Rows"), dimentions);
m_rowBox = new QSpinBox(1, 15, 1, dimentions);
connect (m_rowBox, SIGNAL(valueChanged(int)), this, SLOT(slotChangeRows(int)));
- l = new QLabel("Columns", dimentions);
+ l = new QLabel(tr("Columns"), dimentions);
m_colBox = new QSpinBox(1, 15, 1, dimentions);
@@ -279,3 +271,3 @@ FunctionKeyboardConfig::FunctionKeyboardConfig(const QString& name, QWidget* par
QGroupBox *editKey = new QGroupBox(2, Qt::Horizontal, tr("Edit Key"), this);
- l = new QLabel("Label", editKey);
+ l = new QLabel(tr("Label"), editKey);
m_labels = new QComboBox(true, editKey);
@@ -293,3 +285,3 @@ FunctionKeyboardConfig::FunctionKeyboardConfig(const QString& name, QWidget* par
- l = new QLabel("Q Keycode", editKey);
+ l = new QLabel(tr("Q Keycode", "Qt Key Code for the OnScreen Keyboard"), editKey);
m_qvalues = new QComboBox(true, editKey);
@@ -300,3 +292,3 @@ FunctionKeyboardConfig::FunctionKeyboardConfig(const QString& name, QWidget* par
- l = new QLabel("Unicode Value", editKey);
+ l = new QLabel(tr("Unicode Value", "The Unicode value of the key"), editKey);
m_uniValues = new QComboBox(true, editKey);