X-Git-Url: https://git.lyx.org/gitweb/?a=blobdiff_plain;f=src%2FWorkArea.h;h=715f1f56e59b68a26958d310aa1f4dfd3a313acd;hb=98c966c64594611e469313314abd1e59524adb4a;hp=31af5a2bd11936d8d19e9de14b1e81cd22b1bbda;hpb=74b224fcba406f4ea4d1f1fa91a63aea39ca2712;p=lyx.git diff --git a/src/WorkArea.h b/src/WorkArea.h index 31af5a2bd1..715f1f56e5 100644 --- a/src/WorkArea.h +++ b/src/WorkArea.h @@ -1,11 +1,11 @@ // -*- C++ -*- /* This file is part of * ====================================================== - * + * * LyX, The Document Processor - * + * * Copyright 1995 Matthias Ettrich - * Copyright 1995-2000 The LyX Team. + * Copyright 1995-2001 The LyX Team. * * ======================================================*/ @@ -23,26 +23,11 @@ #include FORMS_H_LOCATION #include "Painter.h" -#ifdef SIGC_CXX_NAMESPACES -using SigC::Signal0; -using SigC::Signal1; -using SigC::Signal2; -using SigC::Signal3; -#endif - -#if 0 -class BufferView; -#endif - /// class WorkArea { public: /// - WorkArea( -#if 0 - BufferView *, -#endif - int xpos, int ypos, int width, int height); + WorkArea(int xpos, int ypos, int width, int height); /// ~WorkArea(); /// @@ -51,12 +36,16 @@ public: int workWidth() const { return work_area->w; } /// unsigned int width() const { return work_area->w + scrollbar->w; } + //unsigned int width() const { return backgroundbox->w + 15; } /// unsigned int height() const { return work_area->h; } + //unsigned int height() const { return backgroundbox->h; } /// int xpos() const { return work_area->x; } + //int xpos() const { return backgroundbox->x; } /// int ypos() const { return work_area->y; } + //int ypos() const { return backgroundbox->y; } /// void resize(int xpos, int ypos, int width, int height); /// @@ -106,58 +95,62 @@ public: int /*key*/, void * xev); /// xforms callback static void scroll_cb(FL_OBJECT *, long); + /// a selection exists + void haveSelection(bool) const; /// string const getClipboard() const; /// void putClipboard(string const &) const; -#if 0 - /// - BufferView * owner() const { return owner_; } -#endif // Signals /// - Signal0 workAreaExpose; + SigC::Signal0 workAreaExpose; /// - Signal1 scrollCB; + SigC::Signal1 scrollCB; /// - Signal2 workAreaKeyPress; + SigC::Signal2 workAreaKeyPress; /// - Signal3 workAreaButtonPress; + SigC::Signal3 workAreaButtonPress; /// - Signal3 workAreaButtonRelease; + SigC::Signal3 workAreaButtonRelease; /// - Signal3 workAreaMotionNotify; + SigC::Signal3 workAreaMotionNotify; /// - Signal0 workAreaFocus; + SigC::Signal0 workAreaFocus; /// - Signal0 workAreaUnfocus; + SigC::Signal0 workAreaUnfocus; /// - Signal0 workAreaEnter; + SigC::Signal0 workAreaEnter; /// - Signal0 workAreaLeave; + SigC::Signal0 workAreaLeave; /// - Signal3 workAreaDoubleClick; + SigC::Signal3 workAreaDoubleClick; /// - Signal3 workAreaTripleClick; + SigC::Signal3 workAreaTripleClick; + /// emitted when an X client has requested our selection + SigC::Signal0 selectionRequested; + /// emitted when another X client has stolen our selection + SigC::Signal0 selectionLost; + + /// handles SelectionRequest X Event, to fill the clipboard + int event_cb(XEvent * xev); private: /// void createPixmap(int, int); + /// FL_OBJECT * backgroundbox; - /// + /// FL_OBJECT * work_area; /// FL_OBJECT * scrollbar; -#if 0 /// - BufferView * owner_; -#endif + mutable FL_OBJECT * splash_; + /// + mutable FL_OBJECT * splash_text_; /// The pixmap overlay on the workarea Pixmap workareapixmap; /// Painter painter_; - /// - FL_OBJECT * figinset_canvas; /// if we call redraw with true needed for locking-insets bool screen_cleared; };