From 59222a752fa4c8a1e8c2a00ee2f9e22855f12bb2 Mon Sep 17 00:00:00 2001 From: llornkcor Date: Mon, 01 Jul 2002 23:24:08 +0000 Subject: initial --- (limited to 'noncore/apps/opie-reader/infowin.cpp') diff --git a/noncore/apps/opie-reader/infowin.cpp b/noncore/apps/opie-reader/infowin.cpp new file mode 100644 index 0000000..f9a6f5f --- a/dev/null +++ b/noncore/apps/opie-reader/infowin.cpp @@ -0,0 +1,41 @@ +#include "infowin.h" +#include "version.h" + +#define VERSION_STRING "QT Reader v" ## MAJOR ## "." ## MINOR ## " (" ## RELEASE_TYPE ## ")\nA small e-text reader" + +infowin::infowin( QWidget *parent=0, const char *name=0, WFlags f = 0) : + QWidget(parent, name, f) +{ + grid = new QGridLayout(this, 6, 2); + QLabel* l; + l = new QLabel("Compressed file size", this); + grid->addWidget(l, 0, 0); + fileSize = new QLabel("0", this); + fileSize->setAlignment( AlignVCenter | AlignRight ); + grid->addWidget(fileSize, 0, 1); + l = new QLabel("Original text size", this); + grid->addWidget(l, 1, 0); + textSize = new QLabel("0", this); + textSize->setAlignment( AlignVCenter | AlignRight ); + grid->addWidget(textSize, 1, 1); + l = new QLabel("Compression Ratio", this); + grid->addWidget(l, 2, 0); + ratio = new QLabel("0", this); + grid->addWidget(ratio, 2, 1); + ratio->setAlignment( AlignVCenter | AlignRight ); + l = new QLabel("Current location", this); + grid->addWidget(l, 3, 0); + location = new QLabel("0", this); + location->setAlignment( AlignVCenter | AlignRight ); + grid->addWidget(location, 3, 1); + l = new QLabel("Per centage read", this); + grid->addWidget(l, 4, 0); + read = new QLabel("0", this); + read->setAlignment( AlignVCenter | AlignRight ); + grid->addWidget(read, 4, 1); + l = new QLabel(VERSION_STRING, this); + grid->addWidget(l, 5, 0); + QPushButton* exitbutton = new QPushButton("Cancel", this); + connect( exitbutton, SIGNAL( released() ), this, SLOT( infoClose() ) ); + grid->addWidget(exitbutton, 5, 1); +} -- cgit v0.9.0.2