00001
00002
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012
00013
00014
00015
00016
00017
00018
00019
00020
00021
00022
00023 #include <QToolButton>
00024
00025 #include "pluginq19.h"
00026 #include "funcaux.h"
00027 #include "presupuestolist.h"
00028 #include "q19qtoolbutton.h"
00029 #include "bulmafact.h"
00030
00031
00033
00036 int entryPoint(Bulmafact *) {
00037 _depura("Estoy dentro del plugin de Q19", 0);
00038 return 0;
00039 }
00040
00041
00043
00047 int CobrosList_CobrosList(CobrosList *l) {
00048 _depura("CobrosList_CobrosList", 0);
00049
00050 Q19QToolButton *sel = new Q19QToolButton( l, l->mui_plugbotones);
00051
00052 QHBoxLayout *m_hboxLayout1 = l->mui_plugbotones->findChild<QHBoxLayout *>("hboxLayout1");
00053 if (!m_hboxLayout1) {
00054 m_hboxLayout1 = new QHBoxLayout(l->mui_plugbotones);
00055 m_hboxLayout1->setSpacing(5);
00056 m_hboxLayout1->setMargin(5);
00057 m_hboxLayout1->setObjectName(QString::fromUtf8("hboxLayout1"));
00058 }
00059 m_hboxLayout1->addWidget(sel);
00060
00061 _depura("END CobrosList_CobrosList", 0);
00062 return 0;
00063 }