summaryrefslogtreecommitdiff
path: root/noncore/apps/opie-console/transferdialog.cpp
authorjosef <josef>2002-10-07 10:03:39 (UTC)
committer josef <josef>2002-10-07 10:03:39 (UTC)
commit399828740380aa59273cce8ddd9cc05588e2aeac (patch) (side-by-side diff)
treeb55316c98555f529239c1fcc841aad96ad69a18d /noncore/apps/opie-console/transferdialog.cpp
parent46171dcd991e8c3bfff8e662b3913f454714560a (diff)
downloadopie-399828740380aa59273cce8ddd9cc05588e2aeac.zip
opie-399828740380aa59273cce8ddd9cc05588e2aeac.tar.gz
opie-399828740380aa59273cce8ddd9cc05588e2aeac.tar.bz2
- add first widget for transfer dialog
Diffstat (limited to 'noncore/apps/opie-console/transferdialog.cpp') (more/less context) (ignore whitespace changes)
-rw-r--r--noncore/apps/opie-console/transferdialog.cpp92
1 files changed, 92 insertions, 0 deletions
diff --git a/noncore/apps/opie-console/transferdialog.cpp b/noncore/apps/opie-console/transferdialog.cpp
new file mode 100644
index 0000000..08fb32b
--- a/dev/null
+++ b/noncore/apps/opie-console/transferdialog.cpp
@@ -0,0 +1,92 @@
+#include "transferdialog.h"
+
+#include "qlayout.h"
+#include "qcombobox.h"
+#include "qlabel.h"
+#include "qlineedit.h"
+#include "qpushbutton.h"
+#include "qmessagebox.h"
+#include "qprogressbar.h"
+
+#include "opie/ofiledialog.h"
+
+TransferDialog::TransferDialog(QWidget *parent, const char *name)
+: QWidget(parent, name)
+{
+ QVBoxLayout *vbox;
+ QHBoxLayout *hbox, *hbox2;
+ QLabel *file, *mode, *progress, *status;
+ QPushButton *selector, *ok, *cancel;
+
+ file = new QLabel(QObject::tr("Send file"), this);
+ mode = new QLabel(QObject::tr("Transfer mode"), this);
+ progress = new QLabel(QObject::tr("Progress"), this);
+ status = new QLabel(QObject::tr("Status"), this);
+
+ statusbar = new QLabel(QObject::tr("ready"), this);
+ statusbar->setFrameStyle(QFrame::Panel | QFrame::Sunken);
+
+ protocol = new QComboBox(this);
+ protocol->insertItem("XModem");
+ protocol->insertItem("YModem");
+ protocol->insertItem("ZModem");
+
+ filename = new QLineEdit(this);
+
+ progressbar = new QProgressBar(this);
+ progressbar->setProgress(0);
+
+ selector = new QPushButton("...", this);
+ ok = new QPushButton(QObject::tr("OK"), this);
+ cancel = new QPushButton(QObject::tr("Cancel"), this);
+
+ vbox = new QVBoxLayout(this, 2);
+ vbox->add(file);
+ hbox = new QHBoxLayout(vbox, 0);
+ hbox->add(filename);
+ hbox->add(selector);
+ vbox->add(mode);
+ vbox->add(protocol);
+ vbox->add(progress);
+ vbox->add(progressbar);
+ vbox->add(status);
+ vbox->add(statusbar);
+ vbox->addStretch(1);
+ hbox2 = new QHBoxLayout(vbox, 2);
+ hbox2->add(ok);
+ hbox2->add(cancel);
+
+ setCaption(QObject::tr("File transfer"));
+ show();
+
+ connect(selector, SIGNAL(clicked()), SLOT(slotFilename()));
+ connect(ok, SIGNAL(clicked()), SLOT(slotTransfer()));
+ connect(cancel, SIGNAL(clicked()), SLOT(close()));
+}
+
+TransferDialog::~TransferDialog()
+{
+}
+
+void TransferDialog::slotFilename()
+{
+ QString f;
+
+ f = OFileDialog::getOpenFileName(0);
+ if(!f.isNull()) filename->setText(f);
+}
+
+void TransferDialog::slotTransfer()
+{
+ if(filename->text().isEmpty())
+ {
+ QMessageBox::information(this,
+ QObject::tr("Attention"),
+ QObject::tr("No file has been specified."));
+ return;
+ }
+
+ statusbar->setText(QObject::tr("Sending..."));
+ progressbar->setProgress(1);
+}
+