/* -*- mode: C++; tab-width: 4; c-basic-offset: 4; -*- */ /* AbiSource Application Framework * Copyright (C) 1998 AbiSource, Inc. * * This program is free software; you can redistribute it and/or * modify it under the terms of the GNU General Public License * as published by the Free Software Foundation; either version 2 * of the License, or (at your option) any later version. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU General Public License for more details. * * You should have received a copy of the GNU General Public License * along with this program; if not, write to the Free Software * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA * 02111-1307, USA. */ #ifndef XAP_UNIXCLIPBOARD_H #define XAP_UNIXCLIPBOARD_H #include #include #include #include "ut_types.h" #include "ut_vector.h" #include "ut_bytebuf.h" #include "xap_FakeClipboard.h" #include "xap_UnixApp.h" #include "xap_EditMethods.h" #include "ev_EditMethod.h" ////////////////////////////////////////////////////////////////// class XAP_UnixClipboard { public: typedef enum _T_AllowGet { TAG_ClipboardOnly, TAG_PrimaryOnly } T_AllowGet; XAP_UnixClipboard(XAP_UnixApp * pUnixApp); virtual ~XAP_UnixClipboard(); void initialize(); bool assertSelection(); bool addData(T_AllowGet tTo, const char* format, const void* pData, UT_sint32 iNumBytes); void clearData(bool bClipboard, bool bPrimary); void finishedAddingData(void); bool getData(T_AllowGet tFrom, const char** formatList, void ** ppData, UT_uint32 * pLen, const char **pszFormatFound); bool getTextData(T_AllowGet tFrom, void ** ppData, UT_uint32 * pLen); bool canPaste(T_AllowGet tFrom); GtkTargetEntry * getTargets () const { return m_Targets ; } UT_uint32 getNumTargets () const { return m_nTargets; } protected: void AddFmt(const char * fmt); void deleteFmt(const char * fmt); private: GtkClipboard * gtkClipboardForTarget(XAP_UnixClipboard::_T_AllowGet get); bool _getDataFromServer(T_AllowGet tFrom, const char** formatList, void ** ppData, UT_uint32 * pLen, const char **pszFormatFound); bool _getDataFromFakeClipboard(T_AllowGet tFrom, const char** formatList, void ** ppData, UT_uint32 * pLen, const char **pszFormatFound); static inline void s_primary_get_func(GtkClipboard *clipboard, GtkSelectionData *selection_data, guint info, gpointer ptr) { XAP_UnixClipboard * pThis = static_cast(ptr); pThis->primary_get_func(clipboard, selection_data, info); } static inline void s_primary_clear_func (GtkClipboard *clipboard, gpointer ptr) { XAP_UnixClipboard * pThis = static_cast(ptr); pThis->primary_clear_func(clipboard); } void primary_get_func(GtkClipboard *clipboard, GtkSelectionData *selection_data, guint info); void primary_clear_func (GtkClipboard *clipboard); static inline void s_clipboard_get_func(GtkClipboard *clipboard, GtkSelectionData *selection_data, guint info, gpointer ptr) { XAP_UnixClipboard * pThis = static_cast(ptr); pThis->clipboard_get_func(clipboard, selection_data, info); } static inline void s_clipboard_clear_func (GtkClipboard *clipboard, gpointer ptr) { XAP_UnixClipboard * pThis = static_cast(ptr); pThis->clipboard_clear_func(clipboard); } void clipboard_get_func(GtkClipboard *clipboard, GtkSelectionData *selection_data, guint info); void clipboard_clear_func (GtkClipboard *clipboard); void common_get_func(GtkClipboard *clipboard, GtkSelectionData *selection_data, guint info, T_AllowGet which); UT_GenericVector m_vecFormat_AP_Name; UT_GenericVector m_vecFormat_GdkAtom; UT_ByteBuf m_databuf; // for gets only XAP_UnixApp * m_pUnixApp; XAP_FakeClipboard m_fakeClipboard; // internal clipboard to short-circut the XServer. XAP_FakeClipboard m_fakePrimaryClipboard; GtkTargetEntry * m_Targets ; UT_uint32 m_nTargets; GtkClipboard * m_clip; GtkClipboard * m_primary; }; #endif /* XAP_UNIXCLIPBOARD_H */