lyx_mirror/src/frontends/qt4/GuiBranch.h
André Pönitz a1cec91afa move our stuff off the Q* namespace
git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@19935 a592a061-630c-0410-9148-cb99ea01b6c8
2007-08-31 05:53:55 +00:00

62 lines
1.2 KiB
C++

// -*- C++ -*-
/**
* \file GuiBranch.h
* This file is part of LyX, the document processor.
* Licence details can be found in the file COPYING.
*
* \author Jürgen Spitzmüller
*
* Full author contact details are available in file CREDITS.
*/
#ifndef QBRANCH_H
#define QBRANCH_H
#include "GuiDialogView.h"
#include "ui_BranchUi.h"
#include <QCloseEvent>
#include <QDialog>
namespace lyx {
namespace frontend {
class GuiBranch;
class GuiBranchDialog : public QDialog, public Ui::BranchUi {
Q_OBJECT
public:
GuiBranchDialog(GuiBranch * form);
protected Q_SLOTS:
virtual void change_adaptor();
protected:
virtual void closeEvent(QCloseEvent * e);
private:
GuiBranch * form_;
};
class ControlBranch;
/** This class provides a QT implementation of the Branch Dialog.
*/
class GuiBranch : public QController<ControlBranch, GuiView<GuiBranchDialog> >
{
public:
friend class GuiBranchDialog;
/// Constructor
GuiBranch(Dialog &);
private:
/// Apply changes
virtual void apply();
/// Build the dialog
virtual void build_dialog();
/// Update dialog before showing it
virtual void update_contents();
};
} // namespace frontend
} // namespace lyx
#endif // QBRANCH_H