diff options
author | tpearson <tpearson@283d02a7-25f6-0310-bc7c-ecb5cbfe19da> | 2010-01-20 01:29:50 +0000 |
---|---|---|
committer | tpearson <tpearson@283d02a7-25f6-0310-bc7c-ecb5cbfe19da> | 2010-01-20 01:29:50 +0000 |
commit | 8362bf63dea22bbf6736609b0f49c152f975eb63 (patch) | |
tree | 0eea3928e39e50fae91d4e68b21b1e6cbae25604 /kexi/plugins/queries/kexiquerydesignersqlhistory.h | |
download | koffice-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/plugins/queries/kexiquerydesignersqlhistory.h')
-rw-r--r-- | kexi/plugins/queries/kexiquerydesignersqlhistory.h | 104 |
1 files changed, 104 insertions, 0 deletions
diff --git a/kexi/plugins/queries/kexiquerydesignersqlhistory.h b/kexi/plugins/queries/kexiquerydesignersqlhistory.h new file mode 100644 index 00000000..a8d0c2e0 --- /dev/null +++ b/kexi/plugins/queries/kexiquerydesignersqlhistory.h @@ -0,0 +1,104 @@ +/* This file is part of the KDE project + Copyright (C) 2003 Lucijan Busch <lucijan@kde.org> + Copyright (C) 2004 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 KEXIQUERYDESIGNERSQLHISTORY_H +#define KEXIQUERYDESIGNERSQLHISTORY_H + +#include <qscrollview.h> +#include <qdatetime.h> +#include <qptrlist.h> +#include <qmap.h> +#include <qsimplerichtext.h> + +class QSimpleRichText; +class KPopupMenu; + +class HistoryEntry +{ + public: + HistoryEntry(bool success, const QTime &time, const QString &statement, /*int y,*/ const QString &error = QString::null); + ~HistoryEntry(); + + QRect geometry(int y, int width, QFontMetrics f); + void drawItem(QPainter *p, int width, const QColorGroup &cg); + + void setSelected(bool selected, const QColorGroup &cg); + bool isSelected() const { return m_selected; } + void highlight(const QColorGroup &selected); + + QString statement() { return m_statement; } + void updateTime(const QTime &execTime); + + private: + bool m_succeed; + QTime m_execTime; + QString m_statement; + QString m_error; + QSimpleRichText *m_formated; + + int m_y; + bool m_selected; +}; + +typedef QPtrList<HistoryEntry> History; + +class KexiQueryDesignerSQLHistory : public QScrollView +{ + Q_OBJECT + + public: + KexiQueryDesignerSQLHistory(QWidget *parent, const char *name=0); + virtual ~KexiQueryDesignerSQLHistory(); + + KPopupMenu* popupMenu() const; + +// void contextMenu(const QPoint &pos, HistoryEntry *e); + + void setHistory(History *h); + + QString selectedStatement() const; + + public slots: + void addEvent(const QString& q, bool s, const QString &error); + + void slotToClipboard(); + void slotEdit(); + + void clear(); + +// HistoryItem itemAt(int y); + + protected: + void addEntry(HistoryEntry *e); + virtual void drawContents(QPainter *p, int cx, int cy, int cw, int ch); + virtual void contentsMousePressEvent(QMouseEvent * e); + virtual void contentsMouseDoubleClickEvent(QMouseEvent * e); + + signals: + void editRequested(const QString &text); + void currentItemDoubleClicked(); + + private: + History *m_history; + HistoryEntry *m_selected; + KPopupMenu *m_popup; +}; + +#endif |