FXMenuCommand.h

Go to the documentation of this file.
00001 /********************************************************************************
00002 *                                                                               *
00003 *                       M e n u C o m m a n d   W i d g e t                     *
00004 *                                                                               *
00005 *********************************************************************************
00006 * Copyright (C) 1997,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: FXMenuCommand.h,v 1.30 2006/01/22 17:58:06 fox Exp $                     *
00023 ********************************************************************************/
00024 #ifndef FX_DISABLEMENUS
00025 
00026 #ifndef FXMENUCOMMAND_H
00027 #define FXMENUCOMMAND_H
00028 
00029 #ifndef FXMENUCAPTION_H
00030 #include "FXMenuCaption.h"
00031 #endif
00032 
00033 namespace FX {
00034 
00035 
00042 class FXAPI FXMenuCommand : public FXMenuCaption {
00043   FXDECLARE(FXMenuCommand)
00044 protected:
00045   FXString     accel;       // Accelerator string
00046   FXHotKey     acckey;      // Accelerator key
00047 protected:
00048   FXMenuCommand();
00049 private:
00050   FXMenuCommand(const FXMenuCommand&);
00051   FXMenuCommand &operator=(const FXMenuCommand&);
00052 public:
00053   long onPaint(FXObject*,FXSelector,void*);
00054   long onEnter(FXObject*,FXSelector,void*);
00055   long onLeave(FXObject*,FXSelector,void*);
00056   long onButtonPress(FXObject*,FXSelector,void*);
00057   long onButtonRelease(FXObject*,FXSelector,void*);
00058   long onKeyPress(FXObject*,FXSelector,void*);
00059   long onKeyRelease(FXObject*,FXSelector,void*);
00060   long onHotKeyPress(FXObject*,FXSelector,void*);
00061   long onHotKeyRelease(FXObject*,FXSelector,void*);
00062   long onCmdAccel(FXObject*,FXSelector,void*);
00063 public:
00064 
00066   FXMenuCommand(FXComposite* p,const FXString& text,FXIcon* ic=NULL,FXObject* tgt=NULL,FXSelector sel=0,FXuint opts=0);
00067 
00069   virtual FXint getDefaultWidth();
00070 
00072   virtual FXint getDefaultHeight();
00073 
00075   virtual bool canFocus() const;
00076 
00078   virtual void setFocus();
00079 
00081   virtual void killFocus();
00082 
00084   void setAccelText(const FXString& text);
00085 
00087   FXString getAccelText() const { return accel; }
00088 
00090   virtual void save(FXStream& store) const;
00091 
00093   virtual void load(FXStream& store);
00094 
00096   virtual ~FXMenuCommand();
00097   };
00098 
00099 }
00100 
00101 #endif
00102 #endif

(C) 2002-2009 Niall Douglas. Some parts (C) to assorted authors.
Generated on Fri Nov 20 18:31:23 2009 for TnFOX by doxygen v1.4.7