/* This file is part of the KDE project Copyright (C) 2003 Lucijan Busch Copyright (C) 2004 Jaroslaw Staniek 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 #include #include #include #include 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 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