~ubuntu-branches/ubuntu/jaunty/psi/jaunty

« back to all changes in this revision

Viewing changes to src/showtextdlg.cpp

  • Committer: Bazaar Package Importer
  • Author(s): Jan Niehusmann
  • Date: 2002-04-19 02:28:44 UTC
  • Revision ID: james.westby@ubuntu.com-20020419022844-za7xgai5qyfd9xv6
Tags: upstream-0.8.5
ImportĀ upstreamĀ versionĀ 0.8.5

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
/****************************************************************************
 
2
** showtextdlg.cpp - simple dialog to display a text file
 
3
** Copyright (C) 2001, 2002  Justin Karneges
 
4
**
 
5
** This program is free software; you can redistribute it and/or
 
6
** modify it under the terms of the GNU General Public License
 
7
** as published by the Free Software Foundation; either version 2
 
8
** of the License, or (at your option) any later version.
 
9
**
 
10
** This program is distributed in the hope that it will be useful,
 
11
** but WITHOUT ANY WARRANTY; without even the implied warranty of
 
12
** MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 
13
** GNU General Public License for more details.
 
14
**
 
15
** You should have received a copy of the GNU General Public License
 
16
** along with this program; if not, write to the Free Software
 
17
** Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA  02111-1307,USA.
 
18
**
 
19
****************************************************************************/
 
20
 
 
21
#include"showtextdlg.h"
 
22
 
 
23
#include<qlayout.h>
 
24
#include<qtextedit.h>
 
25
#include<qpushbutton.h>
 
26
#include<qfile.h>
 
27
#include<qtextstream.h>
 
28
 
 
29
 
 
30
ShowTextDlg::ShowTextDlg(const QString &fname, bool rich, QWidget *parent, const char *name)
 
31
:QDialog(parent, name, FALSE, WDestructiveClose)
 
32
{
 
33
        QString text;
 
34
 
 
35
        QFile f(fname);
 
36
        if(f.open(IO_ReadOnly)) {
 
37
                QTextStream t(&f);
 
38
                while(!t.eof())
 
39
                        text += t.readLine() + '\n';
 
40
                f.close();
 
41
        }
 
42
 
 
43
        QVBoxLayout *vb1 = new QVBoxLayout(this, 8);
 
44
        QTextEdit *te = new QTextEdit(this);
 
45
        te->setReadOnly(TRUE);
 
46
        te->setTextFormat(rich ? QTextEdit::RichText : QTextEdit::PlainText);
 
47
        te->setText(text);
 
48
 
 
49
        vb1->addWidget(te);
 
50
 
 
51
        QHBoxLayout *hb1 = new QHBoxLayout(vb1);
 
52
        hb1->addStretch(1);
 
53
        QPushButton *pb = new QPushButton("Ok", this);
 
54
        connect(pb, SIGNAL(clicked()), SLOT(accept()));
 
55
        hb1->addWidget(pb);
 
56
        hb1->addStretch(1);
 
57
 
 
58
        resize(560, 384);
 
59
}
 
60