/* AbiWord * 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. */ /***************************************************************** ****************************************************************** ** Only one of these is created by the application. ****************************************************************** *****************************************************************/ #ifndef AP_QNXAPP_H #define AP_QNXAPP_H #include "ut_bytebuf.h" #include "xap_Args.h" #include "xap_QNXApp.h" #include "ap_QNXPrefs.h" #include "ap_QNXClipboard.h" #include "pt_Types.h" class XAP_StringSet; class AV_View; class AP_QNXApp : public XAP_QNXApp { public: AP_QNXApp(XAP_Args * pArgs, const char * szAppName); virtual ~AP_QNXApp(void); virtual UT_Bool initialize(void); virtual XAP_Frame * newFrame(void); virtual UT_Bool forgetFrame(XAP_Frame * pFrame); virtual UT_Bool shutdown(void); virtual UT_Bool getPrefsValueDirectory(UT_Bool bAppSpecific, const XML_Char * szKey, const XML_Char ** pszValue) const; virtual const XAP_StringSet * getStringSet(void) const; virtual const char * getAbiSuiteAppDir(void) const; virtual void copyToClipboard(PD_DocumentRange * pDocRange); virtual void pasteFromClipboard(PD_DocumentRange * pDocRange, UT_Bool bUseClipboard); virtual UT_Bool canPasteFromClipboard(void); UT_Bool parseCommandLine(void); virtual void setSelectionStatus(AV_View * pView); virtual void clearSelection(void); virtual UT_Bool getCurrentSelection(const char** formatList, void ** ppData, UT_uint32 * pLen, const char **pszFormatFound); virtual void cacheCurrentSelection(AV_View *); virtual void catchSignals(int sig_num); static int main (const char * szAppName, int argc, char ** argv); protected: void _printUsage(void); //AP_QNXPrefs * m_prefs; XAP_StringSet * m_pStringSet; AP_QNXClipboard * m_pClipboard; UT_Bool m_bHasSelection; UT_Bool m_bSelectionInFlux; UT_Bool m_cacheDeferClear; AV_View * m_pViewSelection; AV_View * m_cacheSelectionView; XAP_Frame * m_pFrameSelection; UT_ByteBuf m_selectionByteBuf; PD_DocumentRange m_cacheDocumentRangeOfSelection; }; #endif /* AP_QNXAPP_H */