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

FXMenuBar.h

Go to the documentation of this file.
00001 /********************************************************************************
00002 *                                                                               *
00003 *                             M e n u B a r   W i d g e t                       *
00004 *                                                                               *
00005 *********************************************************************************
00006 * Copyright (C) 1998,2006 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: FXMenuBar.h,v 1.15 2006/01/22 17:58:06 fox Exp $                         *
00023 ********************************************************************************/
00024 #ifndef FXMENUBAR_H
00025 #define FXMENUBAR_H
00026 
00027 #ifndef FXTOOLBAR_H
00028 #include "FXToolBar.h"
00029 #endif
00030 
00031 namespace FX {
00032 
00033 
00034 /// Menu bar
00035 class FXAPI FXMenuBar : public FXToolBar {
00036   FXDECLARE(FXMenuBar)
00037 protected:
00038   FXMenuBar(){}
00039 private:
00040   FXMenuBar(const FXMenuBar&);
00041   FXMenuBar &operator=(const FXMenuBar&);
00042 public:
00043   long onFocusLeft(FXObject*,FXSelector,void*);
00044   long onFocusRight(FXObject*,FXSelector,void*);
00045   long onEnter(FXObject*,FXSelector,void*);
00046   long onLeave(FXObject*,FXSelector,void*);
00047   long onMotion(FXObject*,FXSelector,void*);
00048   long onButtonPress(FXObject*,FXSelector,void*);
00049   long onButtonRelease(FXObject*,FXSelector,void*);
00050   long onCmdUnpost(FXObject*,FXSelector,void*);
00051 public:
00052 
00053   /**
00054   * Construct a floatable menubar
00055   * Normally, the menubar is docked under window p.
00056   * When floated, the menubar can be docked under window q, which is
00057   * typically an FXToolbarShell window.
00058   */
00059   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);
00060 
00061   /**
00062   * Construct a non-floatable menubar.
00063   * The menubar can not be undocked.
00064   */
00065   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);
00066 
00067   /// Returns true if specified coordinate (in parent's coordinate system) is in menubar
00068   virtual bool contains(FXint parentx,FXint parenty) const;
00069   };
00070 
00071 }
00072 
00073 #endif

Copyright © 1997-2005 Jeroen van der Zijp