00001 /* -*- mode: C++; tab-width: 4; c-basic-offset: 4; -*- */ 00002 00003 /* AbiSource Application Framework 00004 * Copyright (C) 1998 AbiSource, Inc. 00005 * Copyright (C) 2002 William Lachance 00006 * Copyright (C) 2005 INdT 00007 * Author: Renato Araujo <renato.filho@indt.org.br> 00008 * 00009 * This program is free software; you can redistribute it and/or 00010 * modify it under the terms of the GNU General Public License 00011 * as published by the Free Software Foundation; either version 2 00012 * of the License, or (at your option) any later version. 00013 * 00014 * This program is distributed in the hope that it will be useful, 00015 * but WITHOUT ANY WARRANTY; without even the implied warranty of 00016 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 00017 * GNU General Public License for more details. 00018 * 00019 * You should have received a copy of the GNU General Public License 00020 * along with this program; if not, write to the Free Software 00021 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 00022 * 02110-1301 USA. 00023 * 00024 */ 00025 00026 00027 #ifndef AP_UNIXHILDONFRAMEIMPL_H 00028 #define AP_UNIXHILDONFRAMEIMPL_H 00029 00030 #include <gtk/gtkwidget.h> 00031 #include <gtk/gtkadjustment.h> 00032 #include <gdk/gdktypes.h> 00033 #include <gtk/gtk.h> 00034 #include "ap_UnixFrameImpl.h" 00035 #include "ap_UnixFrame.h" 00036 #include "xap_UnixApp.h" 00037 00038 00039 /******************************************************************** 00040 ********************************************************************* 00041 ** This file defines the unixhildon-platform-specific class for the 00042 ** cross-platform application frame helper. This is used to hold all 00043 ** unixhildon-specific data. One of these is created for each top-level 00044 ** document window. 00045 ********************************************************************* 00046 ********************************************************************/ 00047 00048 class AP_UnixHildonFrameImpl : public AP_UnixFrameImpl 00049 { 00050 public: 00051 AP_UnixHildonFrameImpl(AP_UnixFrame *pUnixFrame); 00052 virtual ~AP_UnixHildonFrameImpl(); 00053 00054 virtual XAP_FrameImpl * createInstance(XAP_Frame *pFrame); 00055 00056 protected: 00057 GtkWidget * _createInternalWindow(void); 00058 }; 00059 #endif /* AP_UNIXHILDONFRAMEIMPL_H */ 00060 00061 00062