2002-06-19 03:38:44 +00:00
|
|
|
// -*- C++ -*-
|
|
|
|
/**
|
|
|
|
* \file QtView.h
|
|
|
|
* Copyright 1995-2002 the LyX Team
|
|
|
|
* Read the file COPYING
|
|
|
|
*
|
|
|
|
* \author Lars Gullik Bjornes <larsbj@lyx.org>
|
|
|
|
* \author John Levon <moz@compsoc.man.ac.uk>
|
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef QTVIEW_H
|
|
|
|
#define QTVIEW_H
|
|
|
|
|
|
|
|
#ifdef __GNUG__
|
|
|
|
#pragma interface
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#include <config.h>
|
|
|
|
|
|
|
|
#include "frontends/LyXView.h"
|
|
|
|
|
|
|
|
#include <qmainwindow.h>
|
|
|
|
|
|
|
|
/**
|
|
|
|
* 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
|
2002-07-12 01:59:01 +00:00
|
|
|
* @param x x position
|
|
|
|
* @param y y position
|
2002-06-19 03:38:44 +00:00
|
|
|
* @param title window title
|
|
|
|
*/
|
2002-07-12 01:59:01 +00:00
|
|
|
void show(int x, int y, string const & t = string("LyX"));
|
2002-06-19 03:38:44 +00:00
|
|
|
|
|
|
|
/// start modal operation
|
|
|
|
virtual void prohibitInput() const;
|
|
|
|
/// end modal operation
|
|
|
|
virtual void allowInput() const;
|
|
|
|
|
|
|
|
public slots:
|
|
|
|
/// menu item has been selected
|
|
|
|
void activated(int id);
|
|
|
|
|
|
|
|
protected:
|
|
|
|
/// make sure we quit cleanly
|
|
|
|
virtual void closeEvent(QCloseEvent * e);
|
|
|
|
|
|
|
|
private:
|
|
|
|
/**
|
|
|
|
* setWindowTitle - set title of window
|
|
|
|
* @param t main window title
|
|
|
|
* @param it iconified (short) title
|
|
|
|
*/
|
|
|
|
virtual void setWindowTitle(string const & t, string const & it) {
|
|
|
|
setCaption(t.c_str());
|
|
|
|
setIconText(it.c_str());
|
|
|
|
}
|
|
|
|
};
|
|
|
|
|
|
|
|
#endif // QTVIEW_H
|