mirror of
https://git.lyx.org/repos/lyx.git
synced 2024-11-11 13:46:43 +00:00
44cd0fc9a1
git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@7862 a592a061-630c-0410-9148-cb99ea01b6c8
85 lines
1.7 KiB
C++
85 lines
1.7 KiB
C++
// -*- C++ -*-
|
|
/**
|
|
* \file QtView.h
|
|
* This file is part of LyX, the document processor.
|
|
* Licence details can be found in the file COPYING.
|
|
*
|
|
* \author Lars Gullik Bjornes
|
|
* \author John Levon
|
|
*
|
|
* Full author contact details are available in file CREDITS.
|
|
*/
|
|
|
|
#ifndef QTVIEW_H
|
|
#define QTVIEW_H
|
|
|
|
// Must be here because of moc.
|
|
#include <config.h>
|
|
|
|
#include "frontends/LyXView.h"
|
|
|
|
#include <qmainwindow.h>
|
|
#include <qtimer.h>
|
|
|
|
class QCommandBuffer;
|
|
class FuncRequest;
|
|
|
|
/**
|
|
* 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();
|
|
|
|
/// show - display the top-level window
|
|
void show();
|
|
|
|
/// show busy cursor
|
|
virtual void busy(bool) const;
|
|
|
|
/// display a status message
|
|
virtual void message(std::string const & str);
|
|
|
|
/// clear status message
|
|
virtual void clearMessage();
|
|
|
|
/// add the command buffer
|
|
void addCommandBuffer(QWidget * parent);
|
|
|
|
/// menu item has been selected
|
|
void activated(FuncRequest const &);
|
|
|
|
public slots:
|
|
/// idle timeout
|
|
void update_view_state_qt();
|
|
protected:
|
|
/// make sure we quit cleanly
|
|
virtual void closeEvent(QCloseEvent * e);
|
|
private:
|
|
/// focus the command buffer widget
|
|
void focus_command_widget();
|
|
|
|
/// update status bar
|
|
void update_view_state();
|
|
|
|
/**
|
|
* setWindowTitle - set title of window
|
|
* @param t main window title
|
|
* @param it iconified (short) title
|
|
*/
|
|
virtual void setWindowTitle(std::string const & t, std::string const & it);
|
|
|
|
QTimer statusbar_timer_;
|
|
|
|
/// command buffer
|
|
QCommandBuffer * commandbuffer_;
|
|
};
|
|
|
|
#endif // QTVIEW_H
|