2002-06-19 03:38:44 +00:00
|
|
|
// -*- C++ -*-
|
|
|
|
/**
|
|
|
|
* \file QtView.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-06-19 03:38:44 +00:00
|
|
|
*
|
2002-09-24 13:57:09 +00:00
|
|
|
* \author Lars Gullik Bjornes
|
|
|
|
* \author John Levon
|
|
|
|
*
|
2003-08-23 00:17:00 +00:00
|
|
|
* Full author contact details are available in file CREDITS.
|
2002-06-19 03:38:44 +00:00
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef QTVIEW_H
|
|
|
|
#define QTVIEW_H
|
|
|
|
|
2003-05-08 18:05:07 +00:00
|
|
|
// Must be here because of moc.
|
|
|
|
#include <config.h>
|
2002-06-19 03:38:44 +00:00
|
|
|
|
|
|
|
#include "frontends/LyXView.h"
|
2002-09-24 13:57:09 +00:00
|
|
|
|
2002-06-19 03:38:44 +00:00
|
|
|
#include <qmainwindow.h>
|
2002-07-19 23:04:55 +00:00
|
|
|
#include <qtimer.h>
|
2002-09-24 13:57:09 +00:00
|
|
|
|
2003-09-21 18:57:15 +00:00
|
|
|
class FuncRequest;
|
2002-09-24 13:57:09 +00:00
|
|
|
|
2004-05-19 15:11:37 +00:00
|
|
|
namespace lyx {
|
|
|
|
namespace frontend {
|
|
|
|
|
|
|
|
class QCommandBuffer;
|
|
|
|
|
2002-06-19 03:38:44 +00:00
|
|
|
/**
|
|
|
|
* QtView - Qt implementation of LyXView
|
|
|
|
*
|
|
|
|
* Qt-private implementation of the main LyX window.
|
|
|
|
*/
|
|
|
|
class QtView : public QMainWindow, public LyXView {
|
|
|
|
Q_OBJECT
|
|
|
|
public:
|
|
|
|
/// create a main window of the given dimensions
|
|
|
|
QtView(unsigned int w, unsigned int h);
|
|
|
|
|
|
|
|
~QtView();
|
2002-09-24 13:57:09 +00:00
|
|
|
|
2003-01-05 22:38:42 +00:00
|
|
|
/// show - display the top-level window
|
|
|
|
void show();
|
2002-09-24 13:57:09 +00:00
|
|
|
|
2003-02-14 14:49:51 +00:00
|
|
|
/// show busy cursor
|
|
|
|
virtual void busy(bool) const;
|
2002-09-24 13:57:09 +00:00
|
|
|
|
2002-07-19 23:04:55 +00:00
|
|
|
/// display a status message
|
2003-10-06 15:43:21 +00:00
|
|
|
virtual void message(std::string const & str);
|
2003-04-07 16:57:38 +00:00
|
|
|
|
|
|
|
/// clear status message
|
|
|
|
virtual void clearMessage();
|
|
|
|
|
2003-04-15 01:06:13 +00:00
|
|
|
/// add the command buffer
|
|
|
|
void addCommandBuffer(QWidget * parent);
|
|
|
|
|
2002-06-19 03:38:44 +00:00
|
|
|
/// menu item has been selected
|
2003-09-21 18:57:15 +00:00
|
|
|
void activated(FuncRequest const &);
|
2002-09-24 13:57:09 +00:00
|
|
|
|
2004-11-16 10:46:23 +00:00
|
|
|
// returns true if this view has the focus.
|
|
|
|
virtual bool hasFocus() const;
|
|
|
|
|
2003-09-21 18:57:15 +00:00
|
|
|
public slots:
|
2002-07-19 23:04:55 +00:00
|
|
|
/// idle timeout
|
|
|
|
void update_view_state_qt();
|
2002-06-19 03:38:44 +00:00
|
|
|
protected:
|
|
|
|
/// make sure we quit cleanly
|
|
|
|
virtual void closeEvent(QCloseEvent * e);
|
|
|
|
private:
|
2002-07-19 23:04:55 +00:00
|
|
|
/// focus the command buffer widget
|
|
|
|
void focus_command_widget();
|
|
|
|
|
2002-07-17 04:13:41 +00:00
|
|
|
/// update status bar
|
|
|
|
void update_view_state();
|
2002-09-24 13:57:09 +00:00
|
|
|
|
|
|
|
/**
|
2002-06-19 03:38:44 +00:00
|
|
|
* setWindowTitle - set title of window
|
|
|
|
* @param t main window title
|
|
|
|
* @param it iconified (short) title
|
|
|
|
*/
|
2003-10-06 15:43:21 +00:00
|
|
|
virtual void setWindowTitle(std::string const & t, std::string const & it);
|
2002-07-19 23:04:55 +00:00
|
|
|
|
2003-04-07 05:20:07 +00:00
|
|
|
QTimer statusbar_timer_;
|
2002-09-24 13:57:09 +00:00
|
|
|
|
2002-07-19 23:04:55 +00:00
|
|
|
/// command buffer
|
|
|
|
QCommandBuffer * commandbuffer_;
|
2002-06-19 03:38:44 +00:00
|
|
|
};
|
2002-09-24 13:57:09 +00:00
|
|
|
|
2004-05-19 15:11:37 +00:00
|
|
|
} // namespace frontend
|
|
|
|
} // namespace lyx
|
|
|
|
|
2002-06-19 03:38:44 +00:00
|
|
|
#endif // QTVIEW_H
|