2006-03-05 17:24:44 +00:00
|
|
|
|
// -*- C++ -*-
|
|
|
|
|
/**
|
2007-08-31 05:53:55 +00:00
|
|
|
|
* \file GuiSendto.h
|
2006-03-05 17:24:44 +00:00
|
|
|
|
* This file is part of LyX, the document processor.
|
|
|
|
|
* Licence details can be found in the file COPYING.
|
|
|
|
|
*
|
|
|
|
|
* \author J<EFBFBD>rgen Spitzm<EFBFBD>ller
|
|
|
|
|
*
|
|
|
|
|
* Full author contact details are available in file CREDITS.
|
|
|
|
|
*/
|
|
|
|
|
|
2007-08-31 22:16:11 +00:00
|
|
|
|
#ifndef GUISENDTO_H
|
|
|
|
|
#define GUISENDTO_H
|
2006-03-05 17:24:44 +00:00
|
|
|
|
|
2007-09-05 20:33:29 +00:00
|
|
|
|
#include "GuiDialog.h"
|
2007-08-31 22:16:11 +00:00
|
|
|
|
#include "ControlSendto.h"
|
2007-08-11 15:48:15 +00:00
|
|
|
|
#include "ui_SendtoUi.h"
|
2007-04-25 10:57:54 +00:00
|
|
|
|
|
2006-03-05 17:24:44 +00:00
|
|
|
|
#include <vector>
|
|
|
|
|
|
2007-04-25 10:57:54 +00:00
|
|
|
|
class QListWidgetItem;
|
|
|
|
|
|
2006-10-21 00:16:43 +00:00
|
|
|
|
namespace lyx {
|
|
|
|
|
|
2006-03-05 17:24:44 +00:00
|
|
|
|
class Format;
|
|
|
|
|
|
|
|
|
|
namespace frontend {
|
|
|
|
|
|
2007-09-05 20:33:29 +00:00
|
|
|
|
class GuiSendtoDialog : public GuiDialog, public Ui::SendtoUi
|
|
|
|
|
{
|
2007-04-25 10:57:54 +00:00
|
|
|
|
Q_OBJECT
|
2007-09-05 20:33:29 +00:00
|
|
|
|
|
2007-04-25 10:57:54 +00:00
|
|
|
|
public:
|
2007-09-05 20:33:29 +00:00
|
|
|
|
GuiSendtoDialog(LyXView & lv);
|
2007-04-25 10:57:54 +00:00
|
|
|
|
|
2007-09-05 20:33:29 +00:00
|
|
|
|
private Q_SLOTS:
|
|
|
|
|
void changed_adaptor();
|
|
|
|
|
void slotFormatHighlighted(QListWidgetItem *) {}
|
|
|
|
|
void slotFormatSelected(QListWidgetItem *) {}
|
2007-04-25 10:57:54 +00:00
|
|
|
|
|
2006-03-05 17:24:44 +00:00
|
|
|
|
private:
|
2007-09-05 20:33:29 +00:00
|
|
|
|
void closeEvent(QCloseEvent * e);
|
|
|
|
|
/// parent controller
|
|
|
|
|
ControlSendto & controller() const;
|
|
|
|
|
///
|
|
|
|
|
bool isValid();
|
2006-03-05 17:24:44 +00:00
|
|
|
|
/// Apply from dialog
|
2007-09-05 20:33:29 +00:00
|
|
|
|
void applyView();
|
2006-03-05 17:24:44 +00:00
|
|
|
|
/// Update the dialog
|
2007-09-05 20:33:29 +00:00
|
|
|
|
void update_contents();
|
|
|
|
|
|
2006-03-05 17:24:44 +00:00
|
|
|
|
///
|
|
|
|
|
std::vector<Format const *> all_formats_;
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
} // namespace frontend
|
|
|
|
|
} // namespace lyx
|
|
|
|
|
|
2007-08-31 22:16:11 +00:00
|
|
|
|
#endif // GUISENDTO_H
|