/usr/include/fox-1.6/FXSeparator.h is in libfox-1.6-dev 1.6.49-2ubuntu1.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 | /********************************************************************************
* *
* S e p a r a t o r W i d g e t s *
* *
*********************************************************************************
* Copyright (C) 1998,2006 by Jeroen van der Zijp. All Rights Reserved. *
*********************************************************************************
* This library is free software; you can redistribute it and/or *
* modify it under the terms of the GNU Lesser General Public *
* License as published by the Free Software Foundation; either *
* version 2.1 of the License, or (at your option) any later version. *
* *
* This library is distributed in the hope that it will be useful, *
* but WITHOUT ANY WARRANTY; without even the implied warranty of *
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU *
* Lesser General Public License for more details. *
* *
* You should have received a copy of the GNU Lesser General Public *
* License along with this library; if not, write to the Free Software *
* Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA. *
*********************************************************************************
* $Id: FXSeparator.h,v 1.18 2006/01/22 17:58:09 fox Exp $ *
********************************************************************************/
#ifndef FXSEPARATOR_H
#define FXSEPARATOR_H
#ifndef FXFRAME_H
#include "FXFrame.h"
#endif
namespace FX {
/// Separator Options
enum {
SEPARATOR_NONE = 0, /// Nothing visible
SEPARATOR_GROOVE = 0x00008000, /// Etched-in looking groove
SEPARATOR_RIDGE = 0x00010000, /// Embossed looking ridge
SEPARATOR_LINE = 0x00020000 /// Simple line
};
/**
* A Separator widget is used to draw a horizontal or vertical divider between
* groups of controls. It is purely decorative. The separator may be drawn
* in various styles as determined by the SEPARATOR_NONE, SEPARATOR_GROOVE,
* SEPARATOR_RIDGE, and SEPARATOR_LINE options. Since its derived from Frame,
* it can also have the frame's border styles.
*/
class FXAPI FXSeparator : public FXFrame {
FXDECLARE(FXSeparator)
protected:
FXSeparator(){}
private:
FXSeparator(const FXSeparator&);
FXSeparator &operator=(const FXSeparator&);
public:
long onPaint(FXObject*,FXSelector,void*);
public:
/// Constructor
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);
/// Return default width
virtual FXint getDefaultWidth();
/// Return default height
virtual FXint getDefaultHeight();
/// Change separator style
void setSeparatorStyle(FXuint style);
/// Get separator style
FXuint getSeparatorStyle() const;
};
/// Horizontal separator widget
class FXAPI FXHorizontalSeparator : public FXSeparator {
FXDECLARE(FXHorizontalSeparator)
protected:
FXHorizontalSeparator(){}
private:
FXHorizontalSeparator(const FXHorizontalSeparator&);
FXHorizontalSeparator &operator=(const FXHorizontalSeparator&);
public:
/// Constructor
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);
};
/// Vertical separator widget
class FXAPI FXVerticalSeparator : public FXSeparator {
FXDECLARE(FXVerticalSeparator)
protected:
FXVerticalSeparator(){}
private:
FXVerticalSeparator(const FXVerticalSeparator&);
FXVerticalSeparator &operator=(const FXVerticalSeparator&);
public:
/// Constructor
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);
};
}
#endif
|