/* AbiHello * Copyright (C) 1999 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 AP_UNIXAPP_H #define AP_UNIXAPP_H #include "xap_Args.h" #include "xap_UnixApp.h" #include "ap_UnixPrefs.h" class XAP_StringSet; #ifdef ABI_OPT_JS class PerlInterpreter; #endif class AP_UnixApp : public XAP_UnixApp { public: AP_UnixApp(XAP_Args* pArgs, const char* szAppName); ~AP_UnixApp(void); virtual bool initialize(void); virtual XAP_Frame* newFrame(void); virtual bool shutdown(void); 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, bool bUseClipboard); virtual bool canPasteFromClipboard(void); virtual bool parseCommandLine(void); virtual void setSelectionStatus(AV_View * pView); virtual void clearSelection(void); virtual bool getCurrentSelection(const char** formatList, void ** ppData, UT_uint32 * pLen, const char **pszFormatFound); virtual void cacheCurrentSelection(AV_View *); #ifdef ABI_OPT_JS PerlInterpreter * getPerlInterp(); #endif static int main(const char* szAppName, int argc, char** argv); protected: XAP_StringSet* m_pStringSet; private: static PerlInterpreter * m_pPerlInstance; }; #endif // AP_UNIXAPP_H