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

FXMenuTitle.h

00001 /******************************************************************************** 00002 * * 00003 * M e n u T i t l 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: FXMenuTitle.h,v 1.18 2004/02/08 17:17:34 fox Exp $ * 00023 ********************************************************************************/ 00024 #ifndef FXMENUTITLE_H 00025 #define FXMENUTITLE_H 00026 00027 #ifndef FXMENUCAPTION_H 00028 #include "FXMenuCaption.h" 00029 #endif 00030 00031 namespace FX { 00032 00033 00034 class FXPopup; 00035 00036 00037 /** 00038 * A menu title is a child of a menu bar which is responsible 00039 * for popping up a pulldown menu. 00040 */ 00041 class FXAPI FXMenuTitle : public FXMenuCaption { 00042 FXDECLARE(FXMenuTitle) 00043 protected: 00044 FXPopup *pane; // Pane to pop up 00045 protected: 00046 FXMenuTitle(){} 00047 private: 00048 FXMenuTitle(const FXMenuTitle&); 00049 FXMenuTitle &operator=(const FXMenuTitle&); 00050 public: 00051 long onPaint(FXObject*,FXSelector,void*); 00052 long onEnter(FXObject*,FXSelector,void*); 00053 long onLeave(FXObject*,FXSelector,void*); 00054 long onLeftBtnPress(FXObject*,FXSelector,void*); 00055 long onLeftBtnRelease(FXObject*,FXSelector,void*); 00056 long onKeyPress(FXObject*,FXSelector,void*); 00057 long onKeyRelease(FXObject*,FXSelector,void*); 00058 long onHotKeyPress(FXObject*,FXSelector,void*); 00059 long onHotKeyRelease(FXObject*,FXSelector,void*); 00060 long onFocusUp(FXObject*,FXSelector,void*); 00061 long onFocusDown(FXObject*,FXSelector,void*); 00062 long onFocusIn(FXObject*,FXSelector,void*); 00063 long onFocusOut(FXObject*,FXSelector,void*); 00064 long onCmdPost(FXObject*,FXSelector,void*); 00065 long onCmdUnpost(FXObject*,FXSelector,void*); 00066 public: 00067 00068 /// Constructor 00069 FXMenuTitle(FXComposite* p,const FXString& text,FXIcon* ic=NULL,FXPopup* pup=NULL,FXuint opts=0); 00070 00071 /// Create server-side resources 00072 virtual void create(); 00073 00074 /// Detach server-side resources 00075 virtual void detach(); 00076 00077 /// Return default width 00078 virtual FXint getDefaultWidth(); 00079 00080 /// Return default height 00081 virtual FXint getDefaultHeight(); 00082 00083 /// Yes it can receive the focus 00084 virtual FXbool canFocus() const; 00085 00086 /// Move the focus to this window 00087 virtual void setFocus(); 00088 00089 /// Remove the focus from this window 00090 virtual void killFocus(); 00091 00092 /// Set popup menu to pop up 00093 void setMenu(FXPopup *menu){ pane=menu; } 00094 00095 /// Return popup menu 00096 FXPopup* getMenu() const { return pane; } 00097 00098 /// True if this menu or is popup logically contains the mouse 00099 virtual FXbool contains(FXint parentx,FXint parenty) const; 00100 00101 /// Save menu to a stream 00102 virtual void save(FXStream& store) const; 00103 00104 /// Load menu from a stream 00105 virtual void load(FXStream& store); 00106 00107 /// Destructor 00108 virtual ~FXMenuTitle(); 00109 }; 00110 00111 } 00112 00113 #endif

Copyright © 1997-2004 Jeroen van der Zijp