summaryrefslogtreecommitdiffstats
path: root/kexi/widget/tableview/kexiinputtableedit.h
diff options
context:
space:
mode:
Diffstat (limited to 'kexi/widget/tableview/kexiinputtableedit.h')
-rw-r--r--kexi/widget/tableview/kexiinputtableedit.h31
1 files changed, 16 insertions, 15 deletions
diff --git a/kexi/widget/tableview/kexiinputtableedit.h b/kexi/widget/tableview/kexiinputtableedit.h
index df770287..3b4cf015 100644
--- a/kexi/widget/tableview/kexiinputtableedit.h
+++ b/kexi/widget/tableview/kexiinputtableedit.h
@@ -22,7 +22,7 @@
#define KEXIINPUTTABLEEDIT_H
#include <klineedit.h>
-#include <qvariant.h>
+#include <tqvariant.h>
#include "kexitableedit.h"
#include "kexicelleditorfactory.h"
@@ -33,9 +33,10 @@
class KEXIDATATABLE_EXPORT KexiInputTableEdit : public KexiTableEdit
{
Q_OBJECT
+ TQ_OBJECT
public:
- KexiInputTableEdit(KexiTableViewColumn &column, QWidget *parent=0);
+ KexiInputTableEdit(KexiTableViewColumn &column, TQWidget *tqparent=0);
virtual ~KexiInputTableEdit();
@@ -44,7 +45,7 @@ class KEXIDATATABLE_EXPORT KexiInputTableEdit : public KexiTableEdit
/*! \return text for \a value and \a field.
\a add is a text that should be added to the value if possible.
Used in setValueInternal(), by form widgets and for reporting/printing. */
- static QString valueToText(KexiDB::Field* field, const QVariant& value, const QString& add);
+ static TQString valueToText(KexiDB::Field* field, const TQVariant& value, const TQString& add);
#endif
virtual bool valueChanged();
@@ -57,36 +58,36 @@ class KEXIDATATABLE_EXPORT KexiInputTableEdit : public KexiTableEdit
//! (check this with KexiDB::Field::hasEmptyProperty()),
virtual bool valueIsEmpty();
- virtual QVariant value();
+ virtual TQVariant value();
virtual bool cursorAtStart();
virtual bool cursorAtEnd();
-// virtual bool eventFilter(QObject* watched, QEvent* e);
+// virtual bool eventFilter(TQObject* watched, TQEvent* e);
//js void end(bool mark);
//js void backspace();
virtual void clear();
/*! \return total size of this editor, including any buttons, etc. (if present). */
- virtual QSize totalSize();
+ virtual TQSize totalSize();
/*! Handles action having standard name \a actionName.
Action could be: "edit_cut", "edit_paste", etc. */
- virtual void handleAction(const QString& actionName);
+ virtual void handleAction(const TQString& actionName);
/*! Handles copy action for value. The \a value is copied to clipboard in format appropriate
for the editor's impementation, e.g. for image cell it can be a pixmap.
\a visibleValue is unused here. Reimplemented after KexiTableEdit. */
- virtual void handleCopyAction(const QVariant& value, const QVariant& visibleValue);
+ virtual void handleCopyAction(const TQVariant& value, const TQVariant& visibleValue);
/*! Shows a special tooltip for \a value if needed, i.e. if the value could not fit inside \a rect
for a given font metrics \a fm.
- \return true a normal tooltip should be displayed (using QToolTip,) and false if
+ \return true a normal tooltip should be displayed (using TQToolTip,) and false if
no tooltip should be displayed or a custom tooltip was displayed internally (not yet supported).
This implementation converts the value to text using valueToText() if \a calue is not string to see
whether it can fit inside the cell's \a rect.
If the cell is currentl focused (selected), \a focused is true. */
- virtual bool showToolTipIfNeeded(const QVariant& value, const QRect& rect, const QFontMetrics& fm,
+ virtual bool showToolTipIfNeeded(const TQVariant& value, const TQRect& rect, const TQFontMetrics& fm,
bool focused);
public slots:
@@ -101,20 +102,20 @@ class KEXIDATATABLE_EXPORT KexiInputTableEdit : public KexiTableEdit
protected slots:
void setRestrictedCompletion();
- void completed(const QString &);
+ void completed(const TQString &);
protected:
//! initializes this editor with \a add value
- virtual void setValueInternal(const QVariant& add, bool removeOld);
+ virtual void setValueInternal(const TQVariant& add, bool removeOld);
void showHintButton();
void init();
- virtual void paintEvent( QPaintEvent *e );
+ virtual void paintEvent( TQPaintEvent *e );
KexiTextFormatter m_textFormatter;
bool m_calculatedCell;
- QString m_decsym; //! decimal symbol
- QString m_origText; //! orig. Line Edit's text after conversion - for easy comparing
+ TQString m_decsym; //! decimal symbol
+ TQString m_origText; //! orig. Line Edit's text after conversion - for easy comparing
KLineEdit *m_lineedit;
signals: