00001 /*************************************************************************** 00002 * Copyright (C) 2003 by Tomeu Borras Riera * 00003 * tborras@conetxia.com * 00004 * Copyright (C) 2003 by Antoni Mirabete i Teres * 00005 * amirabet@biada.org * 00006 * http://www.iglues.org Asociación Iglues -- Contabilidad Linux * 00007 * * 00008 * This program is free software; you can redistribute it and/or modify * 00009 * it under the terms of the GNU General Public License as published by * 00010 * the Free Software Foundation; either version 2 of the License, or * 00011 * (at your option) any later version. * 00012 * * 00013 * This program is distributed in the hope that it will be useful, * 00014 * but WITHOUT ANY WARRANTY; without even the implied warranty of * 00015 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * 00016 * GNU General Public License for more details. * 00017 * * 00018 * You should have received a copy of the GNU General Public License * 00019 * along with this program; if not, write to the * 00020 * Free Software Foundation, Inc., * 00021 * 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. * 00022 ***************************************************************************/ 00023 00024 #ifndef EXTRACTOPRINTVIEW_H 00025 #define EXTRACTOPRINTVIEW_H 00026 00027 #include <errno.h> 00028 00029 #include <QWidget> 00030 #include <QLineEdit> 00031 #include <QToolButton> 00032 #include <QRadioButton> 00033 00034 #include "ui_extractoprintbase.h" 00035 #include "blwidget.h" 00036 00037 00038 class Empresa; 00039 00040 00042 00044 class ExtractoPrintView : public QDialog, public Ui_ExtractoPrintBase, PEmpresaBase { 00045 Q_OBJECT 00046 00047 public: 00048 char *fichero; 00049 ExtractoPrintView(Empresa *, QWidget *); 00050 void presentar(char *tipus); 00051 ~ExtractoPrintView(); 00052 00053 private: 00054 QString montaQuery(); 00055 00056 public slots: 00057 virtual void accept(); 00058 }; 00059 00060 #endif 00061
1.5.1