2002-01-19 13:48:05 +00:00
|
|
|
// -*- C++ -*-
|
|
|
|
/**
|
|
|
|
* \file QTexinfo.h
|
2002-09-24 13:57:09 +00:00
|
|
|
* This file is part of LyX, the document processor.
|
|
|
|
* Licence details can be found in the file COPYING.
|
2002-01-19 13:48:05 +00:00
|
|
|
*
|
2002-09-24 13:57:09 +00:00
|
|
|
* \author Edwin Leuven
|
|
|
|
*
|
|
|
|
* Full author contact details are available in file CREDITS
|
2002-01-19 13:48:05 +00:00
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef QTEXINFO_H
|
|
|
|
#define QTEXINFO_H
|
|
|
|
|
|
|
|
#ifdef __GNUG__
|
|
|
|
#pragma interface
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#include "Qt2Base.h"
|
|
|
|
|
|
|
|
#include "ControlTexinfo.h"
|
|
|
|
|
|
|
|
class QTexinfoDialog;
|
|
|
|
|
|
|
|
///
|
|
|
|
class QTexinfo
|
2002-03-21 21:21:28 +00:00
|
|
|
: public Qt2CB<ControlTexinfo, Qt2DB<QTexinfoDialog> >
|
2002-01-19 13:48:05 +00:00
|
|
|
{
|
|
|
|
public:
|
|
|
|
///
|
|
|
|
friend class QTexinfoDialog;
|
|
|
|
///
|
2002-08-12 14:28:43 +00:00
|
|
|
QTexinfo();
|
2002-01-19 13:48:05 +00:00
|
|
|
private:
|
|
|
|
/// Apply changes
|
|
|
|
virtual void apply() { };
|
|
|
|
/// update (do we need this?)
|
|
|
|
virtual void update_contents() {};
|
|
|
|
/// build the dialog
|
|
|
|
virtual void build_dialog();
|
|
|
|
///
|
|
|
|
void updateStyles(ControlTexinfo::texFileSuffix);
|
|
|
|
///
|
|
|
|
void updateStyles();
|
|
|
|
///
|
|
|
|
bool warningPosted;
|
|
|
|
///
|
|
|
|
ControlTexinfo::texFileSuffix activeStyle;
|
2002-07-23 13:12:55 +00:00
|
|
|
///
|
2002-07-24 07:35:59 +00:00
|
|
|
std::vector<string> cls_;
|
2002-07-23 13:12:55 +00:00
|
|
|
///
|
2002-07-24 07:35:59 +00:00
|
|
|
std::vector<string> sty_;
|
2002-07-23 13:12:55 +00:00
|
|
|
///
|
2002-07-24 07:35:59 +00:00
|
|
|
std::vector<string> bst_;
|
2002-01-19 13:48:05 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
#endif // QTEXINFO_H
|