![]() |
Main Page Class Hierarchy Alphabetical List Compound List File List Compound Members
![]() |
00001 /******************************************************************************** 00002 * * 00003 * M e n u B a r W i d g e t * 00004 * * 00005 ********************************************************************************* 00006 * Copyright (C) 1998,2009 by Jeroen van der Zijp. All Rights Reserved. * 00007 ********************************************************************************* 00008 * This library is free software; you can redistribute it and/or modify * 00009 * it under the terms of the GNU Lesser General Public License as published by * 00010 * the Free Software Foundation; either version 3 of the License, or * 00011 * (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 * 00016 * GNU Lesser General Public License for more details. * 00017 * * 00018 * You should have received a copy of the GNU Lesser General Public License * 00019 * along with this program. If not, see <http://www.gnu.org/licenses/> * 00020 ********************************************************************************* 00021 * $Id: FXMenuBar.h,v 1.20 2009/01/06 13:07:25 fox Exp $ * 00022 ********************************************************************************/ 00023 #ifndef FXMENUBAR_H 00024 #define FXMENUBAR_H 00025 00026 #ifndef FXTOOLBAR_H 00027 #include "FXToolBar.h" 00028 #endif 00029 00030 namespace FX { 00031 00032 00033 /// Menu bar 00034 class FXAPI FXMenuBar : public FXToolBar { 00035 FXDECLARE(FXMenuBar) 00036 protected: 00037 FXMenuBar(){} 00038 private: 00039 FXMenuBar(const FXMenuBar&); 00040 FXMenuBar &operator=(const FXMenuBar&); 00041 public: 00042 long onFocusLeft(FXObject*,FXSelector,void*); 00043 long onFocusRight(FXObject*,FXSelector,void*); 00044 long onEnter(FXObject*,FXSelector,void*); 00045 long onLeave(FXObject*,FXSelector,void*); 00046 long onMotion(FXObject*,FXSelector,void*); 00047 long onButtonPress(FXObject*,FXSelector,void*); 00048 long onButtonRelease(FXObject*,FXSelector,void*); 00049 long onCmdUnpost(FXObject*,FXSelector,void*); 00050 public: 00051 00052 /** 00053 * Construct a floatable menubar 00054 * Normally, the menubar is docked under window p. 00055 * When floated, the menubar can be docked under window q, which is 00056 * typically an FXToolbarShell window. 00057 */ 00058 FXMenuBar(FXComposite* p,FXComposite* q,FXuint opts=LAYOUT_TOP|LAYOUT_LEFT|LAYOUT_FILL_X,FXint x=0,FXint y=0,FXint w=0,FXint h=0,FXint pl=3,FXint pr=3,FXint pt=2,FXint pb=2,FXint hs=DEFAULT_SPACING,FXint vs=DEFAULT_SPACING); 00059 00060 /** 00061 * Construct a non-floatable menubar. 00062 * The menubar can not be undocked. 00063 */ 00064 FXMenuBar(FXComposite* p,FXuint opts,FXint x=0,FXint y=0,FXint w=0,FXint h=0,FXint pl=3,FXint pr=3,FXint pt=2,FXint pb=2,FXint hs=DEFAULT_SPACING,FXint vs=DEFAULT_SPACING); 00065 00066 /// Returns true if specified coordinate (in parent's coordinate system) is in menubar 00067 virtual FXbool contains(FXint parentx,FXint parenty) const; 00068 }; 00069 00070 } 00071 00072 #endif
![]() |