2002-12-13 20:21:12 +00:00
|
|
|
// ArrowButton.cc for Fluxbox Window Manager
|
2006-02-16 06:53:05 +00:00
|
|
|
// Copyright (c) 2002 - 2006 Henrik Kinnunen (fluxgen at fluxbox dot org)
|
2002-12-13 20:21:12 +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.
|
|
|
|
|
|
|
|
#include "ArrowButton.hh"
|
2004-08-26 15:09:33 +00:00
|
|
|
#include "ButtonTheme.hh"
|
2002-12-13 20:21:12 +00:00
|
|
|
|
2010-09-09 13:31:54 +00:00
|
|
|
#include "FbTk/Util.hh"
|
|
|
|
|
2007-01-06 07:38:04 +00:00
|
|
|
ArrowButton::ArrowButton(FbTk::FbDrawable::TriangleType arrow_type,
|
2003-10-13 23:51:04 +00:00
|
|
|
const FbTk::FbWindow &parent,
|
2002-12-13 20:21:12 +00:00
|
|
|
int x, int y,
|
|
|
|
unsigned int width, unsigned int height):
|
|
|
|
FbTk::Button(parent, x, y, width, height),
|
2003-05-17 11:30:59 +00:00
|
|
|
m_arrow_type(arrow_type),
|
2004-08-26 15:09:33 +00:00
|
|
|
m_mouse_handler(0),
|
2007-01-06 07:38:04 +00:00
|
|
|
m_arrowscale(250) {
|
2003-05-17 11:30:59 +00:00
|
|
|
|
2003-08-13 09:42:22 +00:00
|
|
|
setEventMask(ExposureMask | ButtonPressMask | ButtonReleaseMask |
|
|
|
|
EnterWindowMask | LeaveWindowMask);
|
2002-12-13 20:21:12 +00:00
|
|
|
}
|
|
|
|
|
2007-01-06 07:38:04 +00:00
|
|
|
ArrowButton::ArrowButton(FbTk::FbDrawable::TriangleType arrow_type,
|
2002-12-13 20:21:12 +00:00
|
|
|
int screen_num,
|
|
|
|
int x, int y,
|
|
|
|
unsigned int width, unsigned int height):
|
|
|
|
FbTk::Button(screen_num, x, y, width, height),
|
2003-05-17 11:30:59 +00:00
|
|
|
m_arrow_type(arrow_type),
|
2004-08-26 15:09:33 +00:00
|
|
|
m_mouse_handler(0),
|
2007-01-06 07:38:04 +00:00
|
|
|
m_arrowscale(250) {
|
2002-12-13 20:21:12 +00:00
|
|
|
|
2003-08-13 09:42:22 +00:00
|
|
|
setEventMask(ExposureMask | ButtonPressMask | ButtonReleaseMask |
|
|
|
|
EnterWindowMask | LeaveWindowMask);
|
2002-12-13 20:21:12 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
void ArrowButton::clear() {
|
|
|
|
FbTk::Button::clear();
|
|
|
|
drawArrow();
|
|
|
|
}
|
|
|
|
|
|
|
|
void ArrowButton::exposeEvent(XExposeEvent &event) {
|
|
|
|
FbTk::Button::exposeEvent(event);
|
|
|
|
drawArrow();
|
|
|
|
}
|
|
|
|
|
|
|
|
void ArrowButton::buttonPressEvent(XButtonEvent &event) {
|
|
|
|
FbTk::Button::buttonPressEvent(event);
|
|
|
|
drawArrow();
|
|
|
|
}
|
|
|
|
|
|
|
|
void ArrowButton::buttonReleaseEvent(XButtonEvent &event) {
|
|
|
|
FbTk::Button::buttonReleaseEvent(event);
|
|
|
|
drawArrow();
|
|
|
|
}
|
|
|
|
|
2003-05-17 11:30:59 +00:00
|
|
|
void ArrowButton::enterNotifyEvent(XCrossingEvent &ce) {
|
|
|
|
if (m_mouse_handler)
|
|
|
|
m_mouse_handler->enterNotifyEvent(ce);
|
|
|
|
}
|
|
|
|
|
|
|
|
void ArrowButton::leaveNotifyEvent(XCrossingEvent &ce) {
|
|
|
|
if (m_mouse_handler)
|
|
|
|
m_mouse_handler->leaveNotifyEvent(ce);
|
|
|
|
}
|
|
|
|
|
2002-12-13 20:21:12 +00:00
|
|
|
/**
|
|
|
|
redraws the arrow button
|
|
|
|
*/
|
|
|
|
void ArrowButton::drawArrow() {
|
2007-01-06 07:38:04 +00:00
|
|
|
if (gc() != 0)
|
|
|
|
drawTriangle(gc(), m_arrow_type, 0, 0, width(), height(), m_arrowscale);
|
2002-12-13 20:21:12 +00:00
|
|
|
}
|
|
|
|
|
2004-08-26 15:09:33 +00:00
|
|
|
void ArrowButton::updateTheme(const FbTk::Theme &theme) {
|
|
|
|
// it must be a button theme
|
|
|
|
const ButtonTheme &btheme = static_cast<const ButtonTheme &>(theme);
|
|
|
|
|
|
|
|
m_arrowscale = btheme.scale();
|
2007-01-06 07:38:04 +00:00
|
|
|
if (m_arrowscale == 0) m_arrowscale = 250; // default is 0 => 300
|
2010-09-09 13:31:54 +00:00
|
|
|
|
|
|
|
m_arrowscale = FbTk::Util::clamp(m_arrowscale, 100, 100000);
|
2004-08-26 15:09:33 +00:00
|
|
|
}
|