mirror of
https://github.com/ElvishArtisan/rivendell.git
synced 2025-10-16 23:51:20 +02:00
2021-02-06 Fred Gleason <fredg@paravelsystems.com>
* Removed 'Q3DateTimeEdit' dependencies from rdadmin(1). * Removed 'Q3ListBox' dependencies from rdadmin(1). * Removed 'Q3TextEdit' dependencies from rdadmin(1). Signed-off-by: Fred Gleason <fredg@paravelsystems.com>
This commit is contained in:
@@ -2,7 +2,7 @@
|
||||
//
|
||||
// List Rivendell Reports
|
||||
//
|
||||
// (C) Copyright 2002-2019 Fred Gleason <fredg@paravelsystems.com>
|
||||
// (C) Copyright 2002-2021 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
|
||||
@@ -21,28 +21,26 @@
|
||||
#ifndef LIST_REPORTS_H
|
||||
#define LIST_REPORTS_H
|
||||
|
||||
#include <q3listbox.h>
|
||||
|
||||
#include <qlabel.h>
|
||||
#include <qpushbutton.h>
|
||||
#include <QListWidget>
|
||||
#include <QPushButton>
|
||||
|
||||
#include <rddialog.h>
|
||||
|
||||
class ListReports : public RDDialog
|
||||
{
|
||||
Q_OBJECT
|
||||
public:
|
||||
ListReports(QWidget *parent=0);
|
||||
~ListReports();
|
||||
QSize sizeHint() const;
|
||||
QSizePolicy sizePolicy() const;
|
||||
public:
|
||||
ListReports(QWidget *parent=0);
|
||||
~ListReports();
|
||||
QSize sizeHint() const;
|
||||
QSizePolicy sizePolicy() const;
|
||||
|
||||
private slots:
|
||||
void addData();
|
||||
void editData();
|
||||
void deleteData();
|
||||
void doubleClickedData(Q3ListBoxItem *item);
|
||||
void closeData();
|
||||
private slots:
|
||||
void addData();
|
||||
void editData();
|
||||
void deleteData();
|
||||
void doubleClickedData(const QModelIndex &index);
|
||||
void closeData();
|
||||
|
||||
protected:
|
||||
void resizeEvent(QResizeEvent *e);
|
||||
@@ -51,7 +49,7 @@ class ListReports : public RDDialog
|
||||
void DeleteReport(QString rptname);
|
||||
void RefreshList(QString rptname="");
|
||||
QLabel *list_title_label;
|
||||
Q3ListBox *list_box;
|
||||
QListWidget *list_box;
|
||||
QPushButton *list_add_button;
|
||||
QPushButton *list_edit_button;
|
||||
QPushButton *list_delete_button;
|
||||
|
Reference in New Issue
Block a user