Source: ksendfax/formedit.h
|
|
|
|
/***************************************************************************
formedit.h - description
-------------------
begin : Sun 11 November 2001
copyright : (C) 2000 by Jürgen Vigna
email : jug@lyx.org
***************************************************************************/
/***************************************************************************
* *
* 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. *
* *
***************************************************************************/
#ifndef FormEdit_included
#define FormEdit_included
#include
#include "dialogs/formeditdata.h"
class FormEdit : public FormEditData
{
Q_OBJECT
public:
FormEdit(QWidget* parent=0, const char* name=0, bool modal=false, WFlags fl=0);
virtual ~FormEdit();
void load(QString const filename);
QString const fileName() const;
int exec();
void removeTmpFile();
void init();
protected slots:
void selectFont();
void okCB();
void replace();
void saveas();
protected:
void createTmpFile();
private:
QDir tmpWorkDir;
QString tmpfile;
};
#endif // FormEdit_included
Generated by: pb00074 on phx00060.it.wuerth.com on Wed Aug 7 11:16:39 2002, using kdoc 2.0a54. |