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.

72 lines
1.8 KiB

/***************************************************************************
spdeletedialog.h
-------------------
begin : 01-January-2000
copyright : (C) 2000 by Kamil Dobkowski
email : kamildobk@poczta.onet.pl
***************************************************************************/
/***************************************************************************
* *
* 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. *
* *
***************************************************************************/
#ifndef KSDELETEDIALOG_H
#define KSDELETEDIALOG_H
#include"ksdatasetdlginterf.h"
class QListViewItem;
class KSChannelList;
class QSAxes;
class KSWorkbook;
/**
* Delete dialog.
* @author Kamil Dobkowski
*/
class KSDatasetDlg : public KSDatasetDlgInterf
{
Q_OBJECT
public:
/**
* Constructor.
*/
KSDatasetDlg( KSWorkbook *workbook, QSAxes *axes, QWidget *parent=0, const char *name=0);
/**
* Destructor.
*/
~KSDatasetDlg();
private slots:
void slot_to_front();
void slot_to_back();
void slot_raise();
void slot_lower();
void slot_show_menu(QListViewItem*,const QPoint&,int);
private:
KSWorkbook *m_workbook;
QSAxes *m_axes;
};
#endif