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 "catalogoqtoolbutton.h"
00026
00027
00028 #include "plugincatalogo.h"
00029 #include "company.h"
00030 #include "funcaux.h"
00031
00032
00034
00036 void entryPoint(Bulmafact *) {
00037 _depura("Estoy dentro del plugin de catalogo", 0);
00038 }
00039
00040
00042
00046 int ArticuloList_ArticuloList(ArticuloList *l) {
00047 _depura("ArticuloList_ArticuloList", 0);
00048
00049 CatalogoQToolButton *mui_exporta_efactura2 = new CatalogoQToolButton( 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 ArticuloList_ArticuloList", 0);
00061 return 0;
00062 }
00063
00064
00065
00066
00067