]> git.lyx.org Git - lyx.git/blob - src/frontends/kde/formcopyrightdialog.C
Changed so one can specify a images without extension and so use pdflatex AND
[lyx.git] / src / frontends / kde / formcopyrightdialog.C
1 /***************************************************************************
2                           formcopyrightdialog.C  -  description
3                              -------------------
4     begin                : Fri Feb 4 2000
5     copyright            : (C) 2000 by Jürgen Vigna
6     email                : jug@sad.it
7  ***************************************************************************/
8
9 /***************************************************************************
10  *                                                                         *
11  *   This program is free software; you can redistribute it and/or modify  *
12  *   it under the terms of the GNU General Public License as published by  *
13  *   the Free Software Foundation; either version 2 of the License, or     *
14  *   (at your option) any later version.                                   *
15  *                                                                         *
16  ***************************************************************************/
17 #include "formcopyrightdialog.h"
18
19 FormCopyrightDialog::FormCopyrightDialog(QWidget *parent, const char *name,
20                                          bool, WFlags)
21         : QDialog(parent,name,false)
22 {
23         initDialog();
24         labelWho->setAlignment(AlignHCenter | AlignVCenter);
25         labelWho->setFrameStyle(QFrame::Box | QFrame::Sunken);
26         labelGNU->setAlignment(AlignHCenter | AlignVCenter);
27         labelGNU->setFrameStyle(QFrame::Box | QFrame::Sunken);
28         labelLyX->setAlignment(AlignHCenter | AlignVCenter);
29         labelLyX->setFrameStyle(QFrame::Box | QFrame::Sunken);
30     connect(buttonOk, SIGNAL(clicked()), this, SLOT(reject()));
31 }
32
33 FormCopyrightDialog::~FormCopyrightDialog()
34 {
35 }