// -*- C++ -*- /** * \file QShowFile.h * Copyright 2001 the LyX Team * Read the file COPYING * * \author John Levon */ #ifndef QSHOWFILE_H #define QSHOWFILE_H #include "Qt2Base.h" class ControlShowFile; class QShowFileDialog; class QShowFile : public Qt2CB > { friend class QShowFileDialog; public: QShowFile(ControlShowFile &); private: /// Apply changes virtual void apply() {}; /// update virtual void update_contents(); /// build the dialog virtual void build_dialog(); }; #endif // QSHOWFILE_H