00001 /*************************************************************************** 00002 filtrardiarioview.h - description 00003 ------------------- 00004 begin : mar jul 29 2003 00005 copyright : (C) 2003 by Tomeu Borrás Riera 00006 email : tborras@conetxia.com 00007 ***************************************************************************/ 00008 /*************************************************************************** 00009 * * 00010 * This program is free software; you can redistribute it and/or modify * 00011 * it under the terms of the GNU General Public License as published by * 00012 * the Free Software Foundation; either version 2 of the License, or * 00013 * (at your option) any later version. * 00014 * * 00015 ***************************************************************************/ 00016 00017 #ifndef FILTRARDIARIOVIEW_H 00018 #define FILTRARDIARIOVIEW_H 00019 00020 #include <qwidget.h> 00021 #include <qpopupmenu.h> 00022 #include <qcombobox.h> 00023 00024 #include "filtrardiariodlg.h" 00025 #include "postgresiface2.h" 00026 00027 00028 /***@author Tomeu Borrás Riera */ 00029 class empresa; 00030 00031 class filtrardiarioview : public filtrardiariodlg { 00032 Q_OBJECT 00033 public: 00034 postgresiface2* conexionbase; 00035 int numdigitos; 00036 int ccostes[200]; 00037 empresa *empresaactual; 00038 QString idcontrapartida; // Si hay una este campo vale su id 00039 00040 filtrardiarioview(empresa *, QWidget *parent=0, const char *name=0); 00041 ~filtrardiarioview(); 00042 00043 public slots: 00044 virtual void buscacontrapartida(); 00045 virtual void boton_canales(); 00046 virtual void boton_ccostes(); 00047 }; 00048 #endif