mirror of
https://git.lyx.org/repos/lyx.git
synced 2024-11-13 14:32:04 +00:00
0c5c06c8c4
All still VERY primitive, in fact even more primitive since some stuff got re-horked after the meeting, and still needs working on. Won't actually compile out of the box, but the tweaks should be pretty obvious for any body sufficiently daring. git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@4427 a592a061-630c-0410-9148-cb99ea01b6c8
77 lines
1.6 KiB
C++
77 lines
1.6 KiB
C++
// -*- 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();
|
|
|
|
/// set the x,y of the top level window
|
|
virtual void setPosition(unsigned int, unsigned int);
|
|
|
|
/**
|
|
* show - display the top-level window
|
|
* @param place general placement (FIXME: GUII)
|
|
* @param border border border type (FIXME: GUII)
|
|
* @param title window title
|
|
*/
|
|
virtual void show(int, int, string const & t = string("LyX"));
|
|
|
|
/// start modal operation
|
|
virtual void prohibitInput() const;
|
|
/// end modal operation
|
|
virtual void allowInput() const;
|
|
|
|
/// redraw the main form.
|
|
void redraw();
|
|
|
|
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
|