Main Page   Class Hierarchy   Alphabetical List   Compound List   File List   Compound Members

FXComposite.h

00001 /******************************************************************************** 00002 * * 00003 * C o m p o s i t e W i d g e t * 00004 * * 00005 ********************************************************************************* 00006 * Copyright (C) 1997,2004 by Jeroen van der Zijp. All Rights Reserved. * 00007 ********************************************************************************* 00008 * This library is free software; you can redistribute it and/or * 00009 * modify it under the terms of the GNU Lesser General Public * 00010 * License as published by the Free Software Foundation; either * 00011 * version 2.1 of the License, or (at your option) any later version. * 00012 * * 00013 * This library is distributed in the hope that it will be useful, * 00014 * but WITHOUT ANY WARRANTY; without even the implied warranty of * 00015 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU * 00016 * Lesser General Public License for more details. * 00017 * * 00018 * You should have received a copy of the GNU Lesser General Public * 00019 * License along with this library; if not, write to the Free Software * 00020 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA. * 00021 ********************************************************************************* 00022 * $Id: FXComposite.h,v 1.21 2004/02/08 17:17:33 fox Exp $ * 00023 ********************************************************************************/ 00024 #ifndef FXCOMPOSITE_H 00025 #define FXCOMPOSITE_H 00026 00027 #ifndef FXWINDOW_H 00028 #include "FXWindow.h" 00029 #endif 00030 00031 namespace FX { 00032 00033 00034 /// Base composite 00035 class FXAPI FXComposite : public FXWindow { 00036 FXDECLARE(FXComposite) 00037 protected: 00038 FXComposite(){} 00039 FXComposite(FXApp* a,FXVisual *vis); 00040 FXComposite(FXApp* a,FXWindow* own,FXuint opts,FXint x,FXint y,FXint w,FXint h); 00041 private: 00042 FXComposite(const FXComposite&); 00043 FXComposite &operator=(const FXComposite&); 00044 public: 00045 long onKeyPress(FXObject*,FXSelector,void*); 00046 long onKeyRelease(FXObject*,FXSelector,void*); 00047 long onFocusNext(FXObject*,FXSelector,void*); 00048 long onFocusPrev(FXObject*,FXSelector,void*); 00049 long onCmdUpdate(FXObject*,FXSelector,void*); 00050 public: 00051 00052 /// Constructor 00053 FXComposite(FXComposite* p,FXuint opts=0,FXint x=0,FXint y=0,FXint w=0,FXint h=0); 00054 00055 /// Create server-side resources 00056 virtual void create(); 00057 00058 /// Detach server-side resources 00059 virtual void detach(); 00060 00061 /// Destroy server-side resources 00062 virtual void destroy(); 00063 00064 /// Perform layout 00065 virtual void layout(); 00066 00067 /// Return default width 00068 virtual FXint getDefaultWidth(); 00069 00070 /// Return default height 00071 virtual FXint getDefaultHeight(); 00072 00073 /// Return the width of the widest child window 00074 FXint maxChildWidth() const; 00075 00076 /// Return the height of the tallest child window 00077 FXint maxChildHeight() const; 00078 00079 /// Overrides this virtual function to return TRUE 00080 virtual FXbool isComposite() const; 00081 00082 /// Destructor 00083 virtual ~FXComposite(); 00084 }; 00085 00086 } 00087 00088 #endif

Copyright © 1997-2004 Jeroen van der Zijp