00001
00002
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012
00013
00014
00015
00016
00017
00018
00019
00020
00021
00022 #include <QToolButton>
00023
00024
00025 #include "informeqtoolbutton.h"
00026
00027
00028 #include "plugininformeclientes.h"
00029 #include "company.h"
00030 #include "funcaux.h"
00031
00032
00034
00036 void entryPoint(Bulmafact *) {
00037 _depura("Estoy dentro del plugin de informe Clientes", 0);
00038 }
00039
00040
00042
00046 int ClientsList_ClientsList(ClientsList *l) {
00047 _depura("ClientsList_ClientsList", 0);
00048
00049 InformeQToolButton *mui_exporta_efactura2 = new InformeQToolButton( l, l->mui_plugbotones);
00050
00051 QHBoxLayout *m_hboxLayout1 = l->mui_plugbotones->findChild<QHBoxLayout *>("hboxLayout1");
00052 if (!m_hboxLayout1) {
00053 m_hboxLayout1 = new QHBoxLayout(l->mui_plugbotones);
00054 m_hboxLayout1->setSpacing(5);
00055 m_hboxLayout1->setMargin(5);
00056 m_hboxLayout1->setObjectName(QString::fromUtf8("hboxLayout1"));
00057 }
00058 m_hboxLayout1->addWidget(mui_exporta_efactura2);
00059
00060 _depura("END ClientsList_ClientsList", 0);
00061 return 0;
00062 }
00063
00064
00066
00070 int ArticuloList_ArticuloList(ArticuloList *l) {
00071 _depura("ArticuloList_ArticuloList", 0);
00072
00073 InformeArtQToolButton *mui_exporta_efactura2 = new InformeArtQToolButton( l, l->mui_plugbotones);
00074
00075 QHBoxLayout *m_hboxLayout1 = l->mui_plugbotones->findChild<QHBoxLayout *>("hboxLayout1");
00076 if (!m_hboxLayout1) {
00077 m_hboxLayout1 = new QHBoxLayout(l->mui_plugbotones);
00078 m_hboxLayout1->setSpacing(5);
00079 m_hboxLayout1->setMargin(5);
00080 m_hboxLayout1->setObjectName(QString::fromUtf8("hboxLayout1"));
00081 }
00082 m_hboxLayout1->addWidget(mui_exporta_efactura2);
00083
00084 _depura("END ArticuloList_ArticuloList", 0);
00085 return 0;
00086 }
00087
00088