lyx_mirror/src/frontends/qt/GuiTexinfo.h
Jean-Marc Lasgouttes c293be56bd Rename frontend qt4 to qt
In particular, the directory frontends/qt4 is renamed to frontends/qt.

Many configurations file have to be updated. All mentions of qt4 in
the source have been audited, and changed to qt if necessary.

The only part that has not been updated is the CMake build system.
2019-07-20 23:39:40 +02:00

89 lines
1.5 KiB
C++

// -*- C++ -*-
/**
* \file GuiTexInfo.h
* This file is part of LyX, the document processor.
* Licence details can be found in the file COPYING.
*
* \author Edwin Leuven
* \author Herbert Voß
*
* Full author contact details are available in file CREDITS.
*/
#ifndef GUITEXINFO_H
#define GUITEXINFO_H
#include "GuiDialog.h"
#include "ui_TexinfoUi.h"
namespace lyx {
namespace frontend {
class GuiTexInfo : public GuiDialog, public Ui::TexinfoUi
{
Q_OBJECT
public:
///
GuiTexInfo(GuiView & lv);
/// the file extensions. order matters in GuiTexInfo::fileType()
enum TexFileType {
ClsType = 0,
StyType,
BstType,
BibType,
BbxType,
CbxType,
DummyLastType
};
public Q_SLOTS:
///
void updateView();
private Q_SLOTS:
///
void change_adaptor();
///
void rescanClicked();
///
void viewClicked();
///
void enableViewPB();
private:
/// Nothing to initialise in this case.
bool initialiseParams(std::string const &) { return true; }
///
void clearParams() {}
///
void dispatchParams() {}
///
bool isBufferDependent() const { return false; }
///
void apply() {}
///
void updateStyles(TexFileType);
///
void updateStyles();
///
bool warningPosted_;
///
TexFileType activeStyle_;
/// show contents af a file
void viewFile(QString const & filename) const;
/// show all classoptions
//std::string classOptions(std::string const & filename) const;
QStringList texdata_[DummyLastType];
};
} // namespace frontend
} // namespace lyx
#endif // GUITEXINFO_H