2006-03-05 17:24:44 +00:00
|
|
|
// -*- C++ -*-
|
|
|
|
/**
|
|
|
|
* \file QInclude.h
|
|
|
|
* This file is part of LyX, the document processor.
|
|
|
|
* Licence details can be found in the file COPYING.
|
|
|
|
*
|
|
|
|
* \author John Levon
|
|
|
|
*
|
|
|
|
* Full author contact details are available in file CREDITS.
|
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef QINCLUDE_H
|
|
|
|
#define QINCLUDE_H
|
|
|
|
|
|
|
|
#include "QDialogView.h"
|
2007-04-25 10:57:54 +00:00
|
|
|
|
2007-08-11 15:48:15 +00:00
|
|
|
#include "ui_IncludeUi.h"
|
2007-04-25 10:57:54 +00:00
|
|
|
|
|
|
|
#include <QDialog>
|
2006-03-05 17:24:44 +00:00
|
|
|
|
|
|
|
namespace lyx {
|
|
|
|
namespace frontend {
|
|
|
|
|
2007-04-25 10:57:54 +00:00
|
|
|
class QInclude;
|
|
|
|
|
|
|
|
class QIncludeDialog : public QDialog, public Ui::QIncludeUi {
|
|
|
|
Q_OBJECT
|
|
|
|
public:
|
|
|
|
QIncludeDialog(QInclude * form);
|
|
|
|
|
|
|
|
void updateLists();
|
|
|
|
|
|
|
|
virtual void show();
|
2007-07-27 18:17:00 +00:00
|
|
|
/// validate listings parameters and return an error message, if any
|
|
|
|
docstring validate_listings_params();
|
2007-04-25 10:57:54 +00:00
|
|
|
protected Q_SLOTS:
|
|
|
|
virtual void change_adaptor();
|
2007-08-07 18:39:34 +00:00
|
|
|
virtual void editClicked();
|
2007-04-25 10:57:54 +00:00
|
|
|
virtual void browseClicked();
|
|
|
|
virtual void typeChanged(int v);
|
2007-07-27 18:17:00 +00:00
|
|
|
/// AFAIK, QValidator only works for QLineEdit so
|
|
|
|
/// I have to validate listingsED (QTextEdit) manually.
|
|
|
|
/// This function displays a hint or error message returned by
|
|
|
|
/// validate_listings_params
|
|
|
|
void set_listings_msg();
|
2007-04-25 10:57:54 +00:00
|
|
|
protected:
|
|
|
|
virtual void closeEvent(QCloseEvent * e);
|
|
|
|
private:
|
|
|
|
QInclude * form_;
|
|
|
|
};
|
|
|
|
|
|
|
|
|
2006-03-05 17:24:44 +00:00
|
|
|
class ControlInclude;
|
|
|
|
|
|
|
|
///
|
|
|
|
class QInclude : public QController<ControlInclude, QView<QIncludeDialog> >
|
|
|
|
{
|
|
|
|
public:
|
|
|
|
///
|
|
|
|
friend class QIncludeDialog;
|
|
|
|
///
|
|
|
|
QInclude(Dialog &);
|
|
|
|
protected:
|
|
|
|
virtual bool isValid();
|
|
|
|
private:
|
|
|
|
/// Apply changes
|
|
|
|
virtual void apply();
|
|
|
|
/// update
|
|
|
|
virtual void update_contents();
|
|
|
|
/// build the dialog
|
|
|
|
virtual void build_dialog();
|
|
|
|
|
2007-08-07 18:39:34 +00:00
|
|
|
/// edit the child document, .lyx file will be opened in lyx
|
|
|
|
/// other formats will be edited by external applications.
|
|
|
|
void edit();
|
2006-03-05 17:24:44 +00:00
|
|
|
|
|
|
|
/// browse for a file
|
|
|
|
void browse();
|
|
|
|
};
|
|
|
|
|
|
|
|
} // namespace frontend
|
|
|
|
} // namespace lyx
|
|
|
|
|
|
|
|
#endif // QINCLUDE_H
|