00001 /*************************************************************************** 00002 * Copyright (C) 2003 by Tomeu Borras Riera * 00003 * tborras@conetxia.com * 00004 * * 00005 * This program is free software; you can redistribute it and/or modify * 00006 * it under the terms of the GNU General Public License as published by * 00007 * the Free Software Foundation; either version 2 of the License, or * 00008 * (at your option) any later version. * 00009 * * 00010 * This program is distributed in the hope that it will be useful, * 00011 * but WITHOUT ANY WARRANTY; without even the implied warranty of * 00012 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * 00013 * GNU General Public License for more details. * 00014 * * 00015 * You should have received a copy of the GNU General Public License * 00016 * along with this program; if not, write to the * 00017 * Free Software Foundation, Inc., * 00018 * 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. * 00019 ***************************************************************************/ 00020 00021 #ifndef CORRECTORWIDGET_H 00022 #define CORRECTORWIDGET_H 00023 00024 #include <QDockWidget> 00025 #include <QString> 00026 #include <QObject> 00027 00028 #include "ui_correctorbase.h" 00029 #include "postgresiface2.h" 00030 #include "empresa.h" 00031 #include "funcaux.h" 00032 00033 00044 class correctorwidget : public QWidget, public Ui_correctorbase { 00045 Q_OBJECT 00046 00047 public: 00049 postgresiface2 *conexionbase; 00051 Empresa *empresaactual; 00053 QString textBrowser; 00057 QDockWidget *dock; 00058 00059 public: 00060 correctorwidget(QWidget* parent = 0, Qt::WFlags fl = 0); 00061 ~correctorwidget(); 00066 00067 void setEmpresa(Empresa *empres) { 00068 empresaactual = empres; 00069 conexionbase = empres->bdempresa(); 00070 } 00071 void agregarError(QString, QString, QString); 00072 00073 public slots: 00074 virtual void on_mui_corregir_clicked(); 00075 virtual void on_mui_configurar_clicked(); 00076 virtual void alink(const QUrl &url); 00077 virtual void cambia(bool a) { 00078 if (a) { 00079 dock->hide(); 00080 dock->show(); 00081 dock->showMaximized(); 00082 } else { 00083 dock->hide(); 00084 } // end if 00085 }; 00086 }; 00087 00088 #endif 00089
1.5.1