mirror of
				https://github.com/ElvishArtisan/rivendell.git
				synced 2025-11-04 08:04:12 +01:00 
			
		
		
		
	
		
			
				
	
	
		
			68 lines
		
	
	
		
			1.9 KiB
		
	
	
	
		
			C++
		
	
	
	
	
	
			
		
		
	
	
			68 lines
		
	
	
		
			1.9 KiB
		
	
	
	
		
			C++
		
	
	
	
	
	
// list_reports.h
 | 
						|
//
 | 
						|
// List and Generate RDLibrary Reports
 | 
						|
//
 | 
						|
//   (C) Copyright 2002-2006 Fred Gleason <fredg@paravelsystems.com>
 | 
						|
//
 | 
						|
//      $Id: list_reports.h,v 1.6.4.1 2013/09/12 23:26:10 cvs Exp $
 | 
						|
//
 | 
						|
//   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.
 | 
						|
//
 | 
						|
 | 
						|
#ifndef LIST_REPORTS_H
 | 
						|
#define LIST_REPORTS_H
 | 
						|
 | 
						|
#include <qdialog.h>
 | 
						|
#include <qcombobox.h>
 | 
						|
#include <qcheckbox.h>
 | 
						|
#include <qlabel.h>
 | 
						|
#include <qsqldatabase.h>
 | 
						|
 | 
						|
#include <rdsvc.h>
 | 
						|
 | 
						|
 | 
						|
class ListReports : public QDialog
 | 
						|
{
 | 
						|
 Q_OBJECT
 | 
						|
 public:
 | 
						|
 ListReports(const QString &filter,const QString &type_filter,
 | 
						|
	     const QString &group,const QString &schedcode,
 | 
						|
	     QWidget *parent=0,const char *name=0);
 | 
						|
 ~ListReports();
 | 
						|
 QSize sizeHint() const;
 | 
						|
 QSizePolicy sizePolicy() const;
 | 
						|
 
 | 
						|
 private slots:
 | 
						|
  void typeActivatedData(int index);
 | 
						|
  void generateData();
 | 
						|
  void closeData();
 | 
						|
 | 
						|
 private:
 | 
						|
  void GenerateCartReport(QString *report);
 | 
						|
  void GenerateCutReport(QString *report);
 | 
						|
  void GenerateCartDumpFixed(QString *report,bool prepend_names);
 | 
						|
  void GenerateCartDumpCsv(QString *report,bool prepend_names);
 | 
						|
  QLabel *list_reports_label;
 | 
						|
  QComboBox *list_reports_box;
 | 
						|
  QCheckBox *list_fieldnames_check;
 | 
						|
  QLabel *list_fieldnames_label;
 | 
						|
  QString list_filter;
 | 
						|
  QString list_type_filter;
 | 
						|
  QString list_group;
 | 
						|
  QString list_schedcode;
 | 
						|
};
 | 
						|
 | 
						|
 | 
						|
#endif  // LIST_REPORTS_H
 |