summaryrefslogtreecommitdiff
path: root/noncore/tools/opie-sh/mbox.cpp
Unidiff
Diffstat (limited to 'noncore/tools/opie-sh/mbox.cpp') (more/less context) (ignore whitespace changes)
-rw-r--r--noncore/tools/opie-sh/mbox.cpp90
1 files changed, 90 insertions, 0 deletions
diff --git a/noncore/tools/opie-sh/mbox.cpp b/noncore/tools/opie-sh/mbox.cpp
new file mode 100644
index 0000000..cb3ea1b
--- a/dev/null
+++ b/noncore/tools/opie-sh/mbox.cpp
@@ -0,0 +1,90 @@
1/*
2Opie-sh. convinience app to allow you to use qdialogs in scripts (mainly shell scripts)
3Copyright (C) 2002 Thomas Stephens
4
5This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public
6License as published by the Free Software Foundation; either version 2 of the License, or (at your option) any later
7version.
8
9This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the
10implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General
11Public License for more details.
12
13You should have received a copy of the GNU General Public License along with this program; if not, write to the Free
14Software Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
15*/
16
17#include "mbox.h"
18
19MBox::MBox(int w, int h, int type, QString title, QString message, QString *btext0 = 0, QString *btext1= 0, QString *btext2 = 0, QWidget *parent=0, const char*name=0, bool modal=true, WFlags f=0):QDialog(parent, name, modal, f)
20{
21 QVBoxLayout *layout = new QVBoxLayout(this);
22
23 QHBoxLayout *hlayout1 = new QHBoxLayout(this);
24 QHBoxLayout *hlayout2 = new QHBoxLayout(this);
25
26 int x, y;
27
28 layout->addLayout(hlayout1);
29 layout->addLayout(hlayout2);
30
31 setCaption(title);
32
33 QLabel *image = new QLabel(this, "image");
34 QLabel *text = new QLabel(message, this, "text");
35
36 switch (type)
37 {
38 case 0:
39 image->setPixmap(Resource::loadPixmap("opie-sh/info"));
40 break;
41 case 1:
42 image->setPixmap(Resource::loadPixmap("opie-sh/warning"));
43 break;
44 case 2:
45 image->setPixmap(Resource::loadPixmap("opie-sh/error"));
46 break;
47 }
48
49 hlayout1->addWidget(image);
50 hlayout1->addSpacing(5);
51 hlayout1->addWidget(text);
52
53 if(!btext0->isNull())
54 {
55 QPushButton *button0 = new QPushButton((const QString)*btext0, this, "button0");
56 hlayout2->addSpacing(5);
57 hlayout2->addWidget(button0);
58 hlayout2->addSpacing(5);
59 connect(button0, SIGNAL(clicked()), this, SLOT(b0pressed()) );
60 }
61 else
62 {
63 QPushButton *button0 = new QPushButton("Ok", this, "button0");
64 hlayout2->addSpacing(5);
65 hlayout2->addWidget(button0);
66 hlayout2->addSpacing(5);
67 connect(button0, SIGNAL(clicked()), this, SLOT(b0pressed()) );
68 }
69
70 if(!btext1->isNull())
71 {
72 QPushButton *button1 = new QPushButton((const QString)*btext1, this, "button1");
73 hlayout2->addWidget(button1);
74 hlayout2->addSpacing(5);
75 connect(button1, SIGNAL(clicked()), this, SLOT(b1pressed()) );
76 }
77
78 if(!btext2->isNull())
79 {
80 QPushButton *button2 = new QPushButton((const QString)*btext2, this, "button2");
81 hlayout2->addWidget(button2);
82 hlayout2->addSpacing(5);
83 connect(button2, SIGNAL(clicked()), this, SLOT(b2pressed()) );
84 }
85
86 x=(w/2)-(width()/2);
87 y=(h/2)-(height()/2);
88
89 move(x, y);
90}