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

FXComposite.h
1 /********************************************************************************
2 * *
3 * C o m p o s i t e W i d g e t *
4 * *
5 *********************************************************************************
6 * Copyright (C) 1997,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 FXCOMPOSITE_H
22 #define FXCOMPOSITE_H
23 
24 #ifndef FXWINDOW_H
25 #include "FXWindow.h"
26 #endif
27 
28 namespace FX {
29 
30 
32 class FXAPI FXComposite : public FXWindow {
33  FXDECLARE(FXComposite)
34 protected:
35  FXComposite(){}
36  FXComposite(FXApp* a,FXVisual *vis);
37  FXComposite(FXApp* a,FXWindow* own,FXuint opts,FXint x,FXint y,FXint w,FXint h);
38 private:
39  FXComposite(const FXComposite&);
40  FXComposite &operator=(const FXComposite&);
41 public:
42  long onKeyPress(FXObject*,FXSelector,void*);
43  long onKeyRelease(FXObject*,FXSelector,void*);
44  long onFocusNext(FXObject*,FXSelector,void*);
45  long onFocusPrev(FXObject*,FXSelector,void*);
46  long onCmdUpdate(FXObject*,FXSelector,void*);
47 public:
48 
50  FXComposite(FXComposite* p,FXuint opts=0,FXint x=0,FXint y=0,FXint w=0,FXint h=0);
51 
53  virtual void create();
54 
56  virtual void detach();
57 
59  virtual void destroy();
60 
62  virtual void layout();
63 
65  virtual FXint getDefaultWidth();
66 
68  virtual FXint getDefaultHeight();
69 
71  FXint maxChildWidth() const;
72 
74  FXint maxChildHeight() const;
75 
77  virtual FXbool isComposite() const;
78 
80  virtual ~FXComposite();
81  };
82 
83 }
84 
85 #endif
Window is the base class for all widgets in FOX.
Definition: FXWindow.h:130
The Application object is the central point of a FOX user-interface.
Definition: FXApp.h:134
Base composite.
Definition: FXComposite.h:32
Definition: FX4Splitter.h:28
Visual describes pixel format of a drawable.
Definition: FXVisual.h:58
Object is the base class for all objects in FOX; in order to receive messages from the user interface...
Definition: FXObject.h:134

Copyright © 1997-2022 Jeroen van der Zijp