You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
abakus/src/resultlistview.cpp

150 lines
4.3 KiB

/*
* resultlistview.cpp - part of abakus
* Copyright (C) 2004, 2005 Michael Pyne <michael.pyne@kdemail.net>
*
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU 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 General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program; if not, write to the Free Software
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
*/
#include <kdebug.h>
#include <kpopupmenu.h>
#include <klocale.h>
#include <tqclipboard.h>
#include <tqapplication.h>
#include <tqevent.h>
#include <tqcursor.h>
#include <tqdragobject.h>
#include <tqheader.h>
#include "resultlistview.h"
#include "resultlistviewtext.h"
#include "dragsupport.h"
using DragSupport::makePixmap;
using namespace ResultList;
ResultListView::ResultListView(TQWidget *parent, const char *name) :
TDEListView(parent, name), m_itemRightClicked(0)
{
connect(this, TQT_SIGNAL(doubleClicked(TQListViewItem *, const TQPoint &, int)),
TQT_SLOT(slotDoubleClicked(TQListViewItem *, const TQPoint &, int)));
addColumn(i18n("Expression"));
addColumn(i18n("Result"));
addColumn(i18n("Shortcut"));
header()->hide(); // I hate that header
header()->setStretchEnabled(ResultColumn, true);
setDragEnabled(true);
setItemMargin(2);
setColumnAlignment(ResultColumn, AlignLeft);
setColumnAlignment(ShortcutColumn, AlignHCenter);
setColumnWidthMode(ResultColumn, Maximum);
setSortColumn(-1);
}
bool ResultListView::getStackValue(unsigned stackPosition, Abakus::number_t &result)
{
TQListViewItem *it = firstChild();
for(; it; it = it->itemBelow()) {
ResultListViewText *resultItem = dynamic_cast<ResultListViewText *>(it);
if(!resultItem->wasError() && resultItem->stackPosition() == stackPosition) {
result = Abakus::number_t(resultItem->resultText().latin1());
return true;
}
}
return false;
}
TQDragObject *ResultListView::dragObject()
{
TQPoint viewportPos = viewport()->mapFromGlobal(TQCursor::pos());
ResultListViewText *item = itemUnderCursor();
if(item) {
TQString text = item->resultText();
int column = header()->sectionAt(viewportPos.x());
if(column == ExpressionColumn)
text = item->expressionText();
TQDragObject *drag = new TQTextDrag(text, this);
drag->setPixmap(makePixmap(text, font()));
return drag;
}
return 0;
}
void ResultListView::contextMenuEvent(TQContextMenuEvent *e)
{
m_itemRightClicked = itemUnderCursor();
TDEPopupMenu *menu = constructPopupMenu(m_itemRightClicked);
menu->popup(e->globalPos());
}
void ResultListView::slotDoubleClicked(TQListViewItem *item, const TQPoint &, int c)
{
ResultListViewText *textItem = dynamic_cast<ResultListViewText *>(item);
if(!textItem)
return;
if(c == ExpressionColumn)
emit signalEntrySelected(textItem->expressionText());
else if(c == ResultColumn)
emit signalResultSelected(textItem->resultText());
}
TDEPopupMenu *ResultListView::constructPopupMenu(const ResultListViewText *item)
{
TDEPopupMenu *menu = new TDEPopupMenu(this, "list view context menu");
menu->insertItem(i18n("Clear &History"), this, TQT_SLOT(clear()), ALT+Key_R);
int id = menu->insertItem(i18n("Copy Result to Clipboard"), this, TQT_SLOT(slotCopyResult()));
if(!item || item->wasError())
menu->setItemEnabled(id, false);
return menu;
}
void ResultListView::slotCopyResult()
{
if(!m_itemRightClicked)
return;
TQClipboard *clipboard = TQApplication::clipboard();
clipboard->setText(m_itemRightClicked->resultText(), TQClipboard::Clipboard);
}
ResultListViewText *ResultListView::lastItem() const
{
return static_cast<ResultListViewText *>(TDEListView::lastItem());
}
ResultListViewText *ResultListView::itemUnderCursor() const
{
TQPoint viewportPos = viewport()->mapFromGlobal(TQCursor::pos());
TQListViewItem *underCursor = itemAt(viewportPos);
return static_cast<ResultListViewText *>(underCursor);
}
#include "resultlistview.moc"