mirror of
https://git.lyx.org/repos/lyx.git
synced 2024-11-24 10:40:48 +00:00
a97c4f51c3
http://www.mail-archive.com/lyx-devel@lists.lyx.org/msg38939.html git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@4393 a592a061-630c-0410-9148-cb99ea01b6c8
69 lines
1.6 KiB
C++
69 lines
1.6 KiB
C++
// -*- C++ -*-
|
|
/* This file is part of
|
|
* ======================================================
|
|
*
|
|
* LyX, The Document Processor
|
|
*
|
|
* Copyright 1995 Matthias Ettrich
|
|
* Copyright 1995-2001 The LyX Team.
|
|
*
|
|
* ====================================================== */
|
|
|
|
#ifndef LyXView_H
|
|
#define LyXView_H
|
|
|
|
#ifdef __GNUG__
|
|
#pragma interface
|
|
#endif
|
|
|
|
#include "forms_fwd.h"
|
|
|
|
#include "frontends/LyXView.h"
|
|
|
|
/**
|
|
* XFormsView - xforms implementation of LyXView
|
|
*
|
|
* xforms-private implementation of the main LyX window.
|
|
*/
|
|
class XFormsView : public LyXView {
|
|
public:
|
|
/// create a main window of the given dimensions
|
|
XFormsView(int w, int h);
|
|
|
|
~XFormsView();
|
|
|
|
/**
|
|
* show - display the top-level window
|
|
* @param xpos requested x position (or 0)
|
|
* @param xpos requested y position (or 0)
|
|
* @param title window title
|
|
*/
|
|
void show(int xpos, int ypos, string const & t = string("LyX"));
|
|
|
|
/// get the xforms main form
|
|
FL_FORM * getForm() const;
|
|
/// redraw the main form.
|
|
virtual void redraw();
|
|
///
|
|
virtual void prohibitInput() const;
|
|
///
|
|
virtual void allowInput() const;
|
|
|
|
/// callback for close event from window manager
|
|
static int atCloseMainFormCB(FL_FORM *, void *);
|
|
|
|
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);
|
|
|
|
/// makes the main form.
|
|
void create_form_form_main(int width, int height);
|
|
/// the main form.
|
|
boost::scoped_ptr<FL_FORM> form_;
|
|
};
|
|
#endif
|