summaryrefslogtreecommitdiff
path: root/noncore/net/opieirc/irctab.cpp
Unidiff
Diffstat (limited to 'noncore/net/opieirc/irctab.cpp') (more/less context) (ignore whitespace changes)
-rw-r--r--noncore/net/opieirc/irctab.cpp19
1 files changed, 19 insertions, 0 deletions
diff --git a/noncore/net/opieirc/irctab.cpp b/noncore/net/opieirc/irctab.cpp
new file mode 100644
index 0000000..36976ab
--- a/dev/null
+++ b/noncore/net/opieirc/irctab.cpp
@@ -0,0 +1,19 @@
1#include <qpe/resource.h>
2#include <qpixmap.h>
3#include <qpushbutton.h>
4#include "irctab.h"
5
6IRCTab::IRCTab(QWidget *parent, const char *name, WFlags f) : QWidget(parent, name, f) {
7 m_layout = new QVBoxLayout(this);
8 QHBoxLayout *descLayout = new QHBoxLayout(m_layout);
9 descLayout->setMargin(5);
10 m_description = new QLabel(tr("Missing description"), this);
11 descLayout->addWidget(m_description);
12 descLayout->setStretchFactor(m_description, 5);
13 QPushButton *close = new QPushButton(this);
14 close->setPixmap(Resource::loadPixmap("opieirc/close"));
15 connect(close, SIGNAL(clicked()), this, SLOT(remove()));
16 descLayout->addWidget(close);
17 descLayout->setStretchFactor(m_description, 1);
18}
19