00001 /*************************************************************************** 00002 * Copyright (C) 2004 by Tomeu Borras Riera * 00003 * tborras@conetxia.com * 00004 * Copyright (C) 2006 by Fco. Javier M. C. (Porting to QT4) * 00005 * fcojavmc@todo-redes.com * 00006 * http://www.iglues.org * 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 LISTTIPOIVAVIEW_H 00025 #define LISTTIPOIVAVIEW_H 00026 00027 #include <QLineEdit> 00028 #include <QLabel> 00029 #include <QCheckBox> 00030 00031 #include "postgresiface2.h" 00032 #include "busquedacliente.h" 00033 #include "busquedafecha.h" 00034 #include "subform2bf.h" 00035 #include "fichabf.h" 00036 00037 00039 00040 class ListTipoIVASubForm : public SubForm2Bf { 00041 Q_OBJECT 00042 00043 public: 00044 ListTipoIVASubForm(QWidget *parent = 0); 00045 virtual ~ListTipoIVASubForm() {}; 00046 00047 public slots: 00048 virtual void cargar(); 00049 }; 00050 00051 00052 #include "ui_listtipoivabase.h" 00053 00054 00056 00057 class ListTipoIVAView : public FichaBf, public Ui_ListTipoIVABase { 00058 Q_OBJECT 00059 public: 00060 ListTipoIVAView(Company *comp, QWidget *parent); 00061 ~ListTipoIVAView(); 00062 public slots: 00063 virtual void on_mui_aceptar_clicked(); 00064 }; 00065 00066 #endif 00067
1.5.1