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

FXToolBarGrip.h
1 /********************************************************************************
2 * *
3 * T o o l B a r G r i p W i d g e t *
4 * *
5 *********************************************************************************
6 * Copyright (C) 2000,2022 by Jeroen van der Zijp. All Rights Reserved. *
7 *********************************************************************************
8 * This library is free software; you can redistribute it and/or modify *
9 * it under the terms of the GNU Lesser General Public License as published by *
10 * the Free Software Foundation; either version 3 of the License, or *
11 * (at your option) any later version. *
12 * *
13 * This library is distributed in the hope that it will be useful, *
14 * but WITHOUT ANY WARRANTY; without even the implied warranty of *
15 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the *
16 * GNU Lesser General Public License for more details. *
17 * *
18 * You should have received a copy of the GNU Lesser General Public License *
19 * along with this program. If not, see <http://www.gnu.org/licenses/> *
20 ********************************************************************************/
21 #ifndef FXTOOLBARGRIP_H
22 #define FXTOOLBARGRIP_H
23 
24 #ifndef FXDOCKHANDLER_H
25 #include "FXDockHandler.h"
26 #endif
27 
28 namespace FX {
29 
30 
32 enum {
33  TOOLBARGRIP_SINGLE = 0,
34  TOOLBARGRIP_DOUBLE = 0x00008000
35  };
36 
37 
49 class FXAPI FXToolBarGrip : public FXDockHandler {
50  FXDECLARE(FXToolBarGrip)
51 protected:
52  FXColor activeColor; // Color when active
53 protected:
54  FXToolBarGrip();
55 private:
57  FXToolBarGrip& operator=(const FXToolBarGrip&);
58 public:
59  long onPaint(FXObject*,FXSelector,void*);
60  long onEnter(FXObject*,FXSelector,void*);
61  long onLeave(FXObject*,FXSelector,void*);
62 public:
63 
65  FXToolBarGrip(FXComposite* p,FXObject* tgt=nullptr,FXSelector sel=0,FXuint opts=TOOLBARGRIP_SINGLE,FXint x=0,FXint y=0,FXint w=0,FXint h=0,FXint pl=0,FXint pr=0,FXint pt=0,FXint pb=0);
66 
68  virtual FXint getDefaultWidth();
69 
71  virtual FXint getDefaultHeight();
72 
74  virtual FXbool canFocus() const;
75 
77  void setDoubleBar(FXbool dbl=true);
78 
80  FXbool isDoubleBar() const;
81 
83  void setActiveColor(FXColor clr);
84 
86  FXColor getActiveColor() const { return activeColor; }
87 
89  virtual void save(FXStream& store) const;
90 
92  virtual void load(FXStream& store);
93  };
94 
95 }
96 
97 #endif
A toolbar grip is used to move its container, a dock bar.
Definition: FXToolBarGrip.h:49
FXColor getActiveColor() const
Get the active color.
Definition: FXToolBarGrip.h:86
Base composite.
Definition: FXComposite.h:32
A stream is a way to serialize data and objects into a byte stream.
Definition: FXStream.h:81
Definition: FX4Splitter.h:28
Object is the base class for all objects in FOX; in order to receive messages from the user interface...
Definition: FXObject.h:134
The dock handler exists as a common base class for tool bar grip and dock title.
Definition: FXDockHandler.h:35

Copyright © 1997-2022 Jeroen van der Zijp