mirror of
				https://github.com/ElvishArtisan/rivendell.git
				synced 2025-10-30 17:23:53 +01:00 
			
		
		
		
	* Removed all CVS tags. * Removed 'const char *name' parameter from all QObject contructors.
		
			
				
	
	
		
			65 lines
		
	
	
		
			1.8 KiB
		
	
	
	
		
			C++
		
	
	
	
	
	
			
		
		
	
	
			65 lines
		
	
	
		
			1.8 KiB
		
	
	
	
		
			C++
		
	
	
	
	
	
| // list_reports.h
 | |
| //
 | |
| // List and Generate RDLibrary Reports
 | |
| //
 | |
| //   (C) Copyright 2002-2006,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.
 | |
| //
 | |
| 
 | |
| #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);
 | |
|  ~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
 |