Rivendellaudio/rdlogmanager/clock_listview.cpp
Fred Gleason 698b475933 2016-05-24 Fred Gleason <fredg@paravelsystems.com>
* Removed all CVS tags.
	* Removed 'const char *name' parameter from all QObject contructors.
2016-05-24 13:13:26 -04:00

80 lines
2.0 KiB
C++

// clock_listview.cpp
//
// The Clock Carts ListView widget for RDLogManager.
//
// (C) Copyright 2002-2004,2016 Fred Gleason <fredg@paravelsystems.com>
//
// This program is free software; you can redistribute it and/or modify
// it under the terms of the GNU General Public License version 2 as
// published by the Free Software Foundation.
//
// 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., 675 Mass Ave, Cambridge, MA 02139, USA.
//
//
#include <qdragobject.h>
#include <qheader.h>
#include <rdcart.h>
#include <edit_note.h>
#include <clock_listview.h>
ClockListView::ClockListView(QWidget *parent)
: RDListView(parent)
{
clock_parent=parent;
//
// Right Button Menu
//
clock_menu=new QPopupMenu(this);
connect(clock_menu,SIGNAL(aboutToShow()),this,SLOT(aboutToShowData()));
clock_menu->
insertItem(tr("Edit Event"),this,SLOT(editEventData()),0,0);
}
void ClockListView::aboutToShowData()
{
clock_menu->setItemEnabled(0,(clock_menu_item!=NULL)&&
(!clock_menu_item->text(4).isEmpty()));
}
void ClockListView::editEventData()
{
emit editLine(clock_menu_item->text(4).toInt());
}
void ClockListView::contentsMousePressEvent(QMouseEvent *e)
{
QListView::contentsMousePressEvent(e);
clock_menu_item=(RDListViewItem *)selectedItem();
switch(e->button()) {
case QMouseEvent::RightButton:
clock_menu->setGeometry(clock_parent->geometry().x()+
geometry().x()+e->pos().x()+2,
clock_parent->geometry().y()+
geometry().y()+e->pos().y()+
header()->geometry().height()+2-
contentsY(),
clock_menu->sizeHint().width(),
clock_menu->sizeHint().height());
clock_menu->exec();
break;
default:
e->ignore();
break;
}
}