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

FXToolBar.h

00001 /******************************************************************************** 00002 * * 00003 * T o o l B a r W i d g e t * 00004 * * 00005 ********************************************************************************* 00006 * Copyright (C) 2004,2005 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: FXToolBar.h,v 1.20.2.1 2005/02/10 15:41:36 fox Exp $ * 00023 ********************************************************************************/ 00024 #ifndef FXTOOLBAR_H 00025 #define FXTOOLBAR_H 00026 00027 #ifndef FXDOCKBAR_H 00028 #include "FXDockBar.h" 00029 #endif 00030 00031 namespace FX { 00032 00033 class FXDockSite; 00034 00035 00036 /** 00037 * A tool bar widget can be docked in a dock site; it automatically 00038 * adjusts its orientation based on the orientation of the dock site, 00039 * and adjusts the layout options accordingly. 00040 * See dock bar widget for more information on the docking behavior. 00041 */ 00042 class FXAPI FXToolBar : public FXDockBar { 00043 FXDECLARE(FXToolBar) 00044 protected: 00045 FXToolBar(){} 00046 private: 00047 FXToolBar(const FXToolBar&); 00048 FXToolBar &operator=(const FXToolBar&); 00049 public: 00050 long onCmdDockFlip(FXObject*,FXSelector,void*); 00051 long onUpdDockFlip(FXObject*,FXSelector,void*); 00052 public: 00053 00054 /// Construct floatable toolbar, initially docked under parent p 00055 FXToolBar(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); 00056 00057 /// Construct a non-floatable toolbar 00058 FXToolBar(FXComposite* p,FXuint opts,FXint x=0,FXint y=0,FXint w=0,FXint h=0,FXint pl=2,FXint pr=3,FXint pt=3,FXint pb=2,FXint hs=DEFAULT_SPACING,FXint vs=DEFAULT_SPACING); 00059 00060 /// Perform layout 00061 virtual void layout(); 00062 00063 /// Return default width 00064 virtual FXint getDefaultWidth(); 00065 00066 /// Return default height 00067 virtual FXint getDefaultHeight(); 00068 00069 /// Dock and optionally flip orientation of toolbar 00070 virtual void dock(FXDockSite* docksite,FXWindow* before=NULL); 00071 00072 /// Dock and optionally flip orientation of toolbar 00073 virtual void dock(FXDockSite* docksite,FXint localx,FXint localy); 00074 00075 /// Set docking side 00076 void setDockingSide(FXuint side=LAYOUT_SIDE_TOP); 00077 00078 /// Return docking side 00079 FXuint getDockingSide() const; 00080 }; 00081 00082 } 00083 00084 #endif

Copyright © 1997-2005 Jeroen van der Zijp