summaryrefslogtreecommitdiff
path: root/noncore/net/opieirc/irctab.cpp
Side-by-side diff
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 @@
+#include <qpe/resource.h>
+#include <qpixmap.h>
+#include <qpushbutton.h>
+#include "irctab.h"
+
+IRCTab::IRCTab(QWidget *parent, const char *name, WFlags f) : QWidget(parent, name, f) {
+ m_layout = new QVBoxLayout(this);
+ QHBoxLayout *descLayout = new QHBoxLayout(m_layout);
+ descLayout->setMargin(5);
+ m_description = new QLabel(tr("Missing description"), this);
+ descLayout->addWidget(m_description);
+ descLayout->setStretchFactor(m_description, 5);
+ QPushButton *close = new QPushButton(this);
+ close->setPixmap(Resource::loadPixmap("opieirc/close"));
+ connect(close, SIGNAL(clicked()), this, SLOT(remove()));
+ descLayout->addWidget(close);
+ descLayout->setStretchFactor(m_description, 1);
+}
+