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

FXSeparator.h
1 /********************************************************************************
2 * *
3 * S e p a r a t o r W i d g e t s *
4 * *
5 *********************************************************************************
6 * Copyright (C) 1998,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 FXSEPARATOR_H
22 #define FXSEPARATOR_H
23 
24 #ifndef FXFRAME_H
25 #include "FXFrame.h"
26 #endif
27 
28 namespace FX {
29 
30 
32 enum {
33  SEPARATOR_NONE = 0,
34  SEPARATOR_GROOVE = 0x00008000,
35  SEPARATOR_RIDGE = 0x00010000,
36  SEPARATOR_LINE = 0x00020000
37  };
38 
39 
47 class FXAPI FXSeparator : public FXFrame {
48  FXDECLARE(FXSeparator)
49 protected:
50  FXSeparator(){}
51 private:
52  FXSeparator(const FXSeparator&);
53  FXSeparator &operator=(const FXSeparator&);
54 public:
55  long onPaint(FXObject*,FXSelector,void*);
56 public:
57 
59  FXSeparator(FXComposite* p,FXuint opts=SEPARATOR_GROOVE|LAYOUT_FILL_X,FXint x=0,FXint y=0,FXint w=0,FXint h=0,FXint pl=0,FXint pr=0,FXint pt=0,FXint pb=0);
60 
62  virtual FXint getDefaultWidth();
63 
65  virtual FXint getDefaultHeight();
66 
68  void setSeparatorStyle(FXuint style);
69 
71  FXuint getSeparatorStyle() const;
72  };
73 
74 
75 
77 class FXAPI FXHorizontalSeparator : public FXSeparator {
78  FXDECLARE(FXHorizontalSeparator)
79 protected:
81 private:
84 public:
85 
87  FXHorizontalSeparator(FXComposite* p,FXuint opts=SEPARATOR_GROOVE|LAYOUT_FILL_X,FXint x=0,FXint y=0,FXint w=0,FXint h=0,FXint pl=1,FXint pr=1,FXint pt=0,FXint pb=0);
88  };
89 
90 
91 
93 class FXAPI FXVerticalSeparator : public FXSeparator {
94  FXDECLARE(FXVerticalSeparator)
95 protected:
97 private:
99  FXVerticalSeparator &operator=(const FXVerticalSeparator&);
100 public:
101 
103  FXVerticalSeparator(FXComposite* p,FXuint opts=SEPARATOR_GROOVE|LAYOUT_FILL_Y,FXint x=0,FXint y=0,FXint w=0,FXint h=0,FXint pl=0,FXint pr=0,FXint pt=1,FXint pb=1);
104  };
105 
106 }
107 
108 #endif
The Frame widget provides borders around some contents.
Definition: FXFrame.h:58
Vertical separator widget.
Definition: FXSeparator.h:93
Base composite.
Definition: FXComposite.h:32
A Separator widget is used to draw a horizontal or vertical divider between groups of controls...
Definition: FXSeparator.h:47
Horizontal separator widget.
Definition: FXSeparator.h:77
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

Copyright © 1997-2022 Jeroen van der Zijp