summaryrefslogtreecommitdiffstats
path: root/kexi/widget/tableview/kexiinputtableedit.h
diff options
context:
space:
mode:
authortpearson <tpearson@283d02a7-25f6-0310-bc7c-ecb5cbfe19da>2010-01-20 01:29:50 +0000
committertpearson <tpearson@283d02a7-25f6-0310-bc7c-ecb5cbfe19da>2010-01-20 01:29:50 +0000
commit8362bf63dea22bbf6736609b0f49c152f975eb63 (patch)
tree0eea3928e39e50fae91d4e68b21b1e6cbae25604 /kexi/widget/tableview/kexiinputtableedit.h
downloadkoffice-8362bf63dea22bbf6736609b0f49c152f975eb63.tar.gz
koffice-8362bf63dea22bbf6736609b0f49c152f975eb63.zip
Added old abandoned KDE3 version of koffice
git-svn-id: svn://anonsvn.kde.org/home/kde/branches/trinity/applications/koffice@1077364 283d02a7-25f6-0310-bc7c-ecb5cbfe19da
Diffstat (limited to 'kexi/widget/tableview/kexiinputtableedit.h')
-rw-r--r--kexi/widget/tableview/kexiinputtableedit.h126
1 files changed, 126 insertions, 0 deletions
diff --git a/kexi/widget/tableview/kexiinputtableedit.h b/kexi/widget/tableview/kexiinputtableedit.h
new file mode 100644
index 00000000..df770287
--- /dev/null
+++ b/kexi/widget/tableview/kexiinputtableedit.h
@@ -0,0 +1,126 @@
+/* This file is part of the KDE project
+ Copyright (C) 2002 Lucijan Busch <lucijan@gmx.at>
+ Copyright (C) 2003-2007 Jaroslaw Staniek <js@iidea.pl>
+
+ This program is free software; you can redistribute it and/or
+ modify it under the terms of the GNU Library General Public
+ License as published by the Free Software Foundation; either
+ version 2 of the License, or (at your option) any later version.
+
+ This program is distributed in the hope that it will be useful,
+ but WITHOUT ANY WARRANTY; without even the implied warranty of
+ MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
+ Library General Public License for more details.
+
+ You should have received a copy of the GNU Library General Public License
+ along with this program; see the file COPYING. If not, write to
+ the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
+ * Boston, MA 02110-1301, USA.
+ */
+
+#ifndef KEXIINPUTTABLEEDIT_H
+#define KEXIINPUTTABLEEDIT_H
+
+#include <klineedit.h>
+#include <qvariant.h>
+
+#include "kexitableedit.h"
+#include "kexicelleditorfactory.h"
+#include "kexitextformatter.h"
+
+/*! @short General purpose cell editor using line edit widget.
+*/
+class KEXIDATATABLE_EXPORT KexiInputTableEdit : public KexiTableEdit
+{
+ Q_OBJECT
+
+ public:
+ KexiInputTableEdit(KexiTableViewColumn &column, QWidget *parent=0);
+
+ virtual ~KexiInputTableEdit();
+
+#if 0
+//moved to KexiTextFormatter
+ /*! \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);
+#endif
+
+ virtual bool valueChanged();
+
+ //! \return true if editor's value is null (not empty)
+ virtual bool valueIsNull();
+
+ //! \return true if editor's value is empty (not null).
+ //! Only few field types can accept "EMPTY" property
+ //! (check this with KexiDB::Field::hasEmptyProperty()),
+ virtual bool valueIsEmpty();
+
+ virtual QVariant value();
+
+ virtual bool cursorAtStart();
+ virtual bool cursorAtEnd();
+
+// virtual bool eventFilter(QObject* watched, QEvent* 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();
+
+ /*! Handles action having standard name \a actionName.
+ Action could be: "edit_cut", "edit_paste", etc. */
+ virtual void handleAction(const QString& 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);
+
+ /*! 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
+ 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,
+ bool focused);
+
+ public slots:
+ //! Implemented for KexiDataItemInterface
+ virtual void moveCursorToEnd();
+
+ //! Implemented for KexiDataItemInterface
+ virtual void moveCursorToStart();
+
+ //! Implemented for KexiDataItemInterface
+ virtual void selectAll();
+
+ protected slots:
+ void setRestrictedCompletion();
+ void completed(const QString &);
+
+ protected:
+ //! initializes this editor with \a add value
+ virtual void setValueInternal(const QVariant& add, bool removeOld);
+
+ void showHintButton();
+ void init();
+ virtual void paintEvent( QPaintEvent *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
+ KLineEdit *m_lineedit;
+
+ signals:
+ void hintClicked();
+};
+
+KEXI_DECLARE_CELLEDITOR_FACTORY_ITEM(KexiInputEditorFactoryItem)
+
+#endif