summaryrefslogtreecommitdiff
path: root/noncore/tools/opie-sh/mbox.cpp
Side-by-side diff
Diffstat (limited to 'noncore/tools/opie-sh/mbox.cpp') (more/less context) (ignore whitespace changes)
-rw-r--r--noncore/tools/opie-sh/mbox.cpp8
1 files changed, 5 insertions, 3 deletions
diff --git a/noncore/tools/opie-sh/mbox.cpp b/noncore/tools/opie-sh/mbox.cpp
index 04b397d..45145d9 100644
--- a/noncore/tools/opie-sh/mbox.cpp
+++ b/noncore/tools/opie-sh/mbox.cpp
@@ -1,69 +1,71 @@
/*
Opie-sh. convinience app to allow you to use qdialogs in scripts (mainly shell scripts)
Copyright (C) 2002 Thomas Stephens
This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public
License as published by the Free Software Foundation; either version 2 of the License, or (at your option) any later
version.
This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the
implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General
Public License for more details.
You should have received a copy of the GNU General Public License along with this program; if not, write to the Free
Software Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
*/
#include "mbox.h"
+#include <opie2/oresource.h>
+
MBox::MBox(int w, int h, int type, QString title, QString message, QString *btext0, QString *btext1, QString *btext2, QWidget *parent, const char*name, bool modal, WFlags f):QDialog(parent, name, modal, f)
{
QVBoxLayout *layout = new QVBoxLayout(this);
QHBoxLayout *hlayout1 = new QHBoxLayout(this);
QHBoxLayout *hlayout2 = new QHBoxLayout(this);
int x, y;
layout->addLayout(hlayout1);
layout->addLayout(hlayout2);
setCaption(title);
QLabel *image = new QLabel(this, "image");
QLabel *text = new QLabel(message, this, "text");
switch (type)
{
case 0:
- image->setPixmap(Resource::loadPixmap("opie-sh/info"));
+ image->setPixmap(Opie::Core::OResource::loadPixmap("opie-sh/info", Opie::Core::OResource::SmallIcon));
break;
case 1:
- image->setPixmap(Resource::loadPixmap("opie-sh/warning"));
+ image->setPixmap(Opie::Core::OResource::loadPixmap("opie-sh/warning", Opie::Core::OResource::SmallIcon));
break;
case 2:
- image->setPixmap(Resource::loadPixmap("opie-sh/error"));
+ image->setPixmap(Opie::Core::OResource::loadPixmap("opie-sh/error", Opie::Core::OResource::SmallIcon));
break;
}
hlayout1->addWidget(image);
hlayout1->addSpacing(5);
hlayout1->addWidget(text);
if(!btext0->isNull())
{
QPushButton *button0 = new QPushButton((const QString)*btext0, this, "button0");
hlayout2->addSpacing(5);
hlayout2->addWidget(button0);
hlayout2->addSpacing(5);
connect(button0, SIGNAL(clicked()), this, SLOT(b0pressed()) );
}
else
{
QPushButton *button0 = new QPushButton("Ok", this, "button0");
hlayout2->addSpacing(5);
hlayout2->addWidget(button0);
hlayout2->addSpacing(5);
connect(button0, SIGNAL(clicked()), this, SLOT(b0pressed()) );
}