fluxbox/src/FbTk/GContext.hh

134 lines
3.8 KiB
C++
Raw Normal View History

2003-08-27 13:45:11 +00:00
// GContext.hh for FbTk - fluxbox toolkit
2006-02-16 06:53:05 +00:00
// Copyright (c) 2003 - 2006 Henrik Kinnunen (fluxgen at fluxbox dot org)
2003-08-27 13:45:11 +00:00
//
// Permission is hereby granted, free of charge, to any person obtaining a
// copy of this software and associated documentation files (the "Software"),
// to deal in the Software without restriction, including without limitation
// the rights to use, copy, modify, merge, publish, distribute, sublicense,
// and/or sell copies of the Software, and to permit persons to whom the
// Software is furnished to do so, subject to the following conditions:
//
// The above copyright notice and this permission notice shall be included in
// all copies or substantial portions of the Software.
//
// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
// FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL
// THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
// LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
// FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER
// DEALINGS IN THE SOFTWARE.
#ifndef FBTK_GCONTEXT_HH
#define FBTK_GCONTEXT_HH
2003-10-09 16:48:09 +00:00
#include "Color.hh"
#include "FbPixmap.hh"
2003-08-27 13:45:11 +00:00
namespace FbTk {
class FbDrawable;
class Font;
/// wrapper for X GC
class GContext {
public:
typedef enum { JOINMITER= JoinMiter,
JOINROUND= JoinRound,
JOINBEVEL= JoinBevel
} JoinStyle;
typedef enum { LINESOLID= LineSolid,
LINEONOFFDASH= LineOnOffDash,
LINEDOUBLEDASH= LineDoubleDash
} LineStyle;
typedef enum { CAPNOTLAST= CapNotLast,
CAPBUTT= CapButt,
CAPROUND= CapRound,
CAPPROJECTING= CapProjecting
} CapStyle;
2003-08-27 13:45:11 +00:00
/// for FbTk drawable
explicit GContext(const FbTk::FbDrawable &drawable);
/// for X drawable
explicit GContext(Drawable drawable);
2003-11-28 22:50:55 +00:00
GContext(Drawable d, const FbTk::GContext &gc);
2003-08-27 13:45:11 +00:00
virtual ~GContext();
void setForeground(const FbTk::Color &color) {
2003-10-09 16:48:09 +00:00
setForeground(color.pixel());
}
void setForeground(long pixel_value) {
2003-10-09 16:48:09 +00:00
XSetForeground(m_display, m_gc,
pixel_value);
}
void setBackground(const FbTk::Color &color) {
2003-10-09 16:48:09 +00:00
setBackground(color.pixel());
}
void setBackground(long pixel_value) {
2003-10-09 16:48:09 +00:00
XSetBackground(m_display, m_gc, pixel_value);
}
void setTile(Drawable draw) {
2004-10-06 06:50:27 +00:00
XSetTile(m_display, m_gc, draw);
}
void setTile(const FbTk::FbPixmap &draw) {
2004-10-06 06:50:27 +00:00
setTile(draw.drawable());
2004-07-06 10:47:36 +00:00
}
/// not implemented
void setFont(const FbTk::Font &) {}
2003-10-09 16:48:09 +00:00
/// set font id
void setFont(int fid) {
2003-10-09 16:48:09 +00:00
XSetFont(m_display, m_gc, fid);
}
void setGraphicsExposure(bool value) {
2003-10-09 16:48:09 +00:00
XSetGraphicsExposures(m_display, m_gc, value);
}
void setFunction(int func) {
2003-10-09 16:48:09 +00:00
XSetFunction(m_display, m_gc, func);
}
void setSubwindowMode(int mode) {
2003-10-09 16:48:09 +00:00
XSetSubwindowMode(m_display, m_gc, mode);
}
void setFillStyle(int style) {
2004-01-11 12:53:46 +00:00
XSetFillStyle(m_display, m_gc, style);
}
2008-08-16 12:54:07 +00:00
void setLineAttributes(unsigned int width,
int line_style,
int cap_style,
int join_style) {
XSetLineAttributes(m_display, m_gc, width, line_style, cap_style, join_style);
}
2003-11-28 22:50:55 +00:00
void copy(GC gc);
void copy(const GContext &gc);
GContext &operator = (const GContext &copy_gc) { copy(copy_gc); return *this; }
GContext &operator = (GC copy_gc) { copy(copy_gc); return *this; }
GC gc() const { return m_gc; }
2003-08-27 13:45:11 +00:00
private:
2003-11-28 22:50:55 +00:00
GContext(const GContext &cont);
2004-01-09 01:19:48 +00:00
static Display *m_display; // worth caching
2003-08-27 13:45:11 +00:00
GC m_gc;
};
} // end namespace FbTk
#endif // FBTK_GCONTEXT_HH