all repos — fluxbox @ aab891843a852f5eaf8dd7369508d3dbfbc5423d

custom fork of the fluxbox windowmanager

using transparent
fluxgen fluxgen
commit

aab891843a852f5eaf8dd7369508d3dbfbc5423d

parent

774b2a874ea08afd3bda42669f443142627ed344

1 files changed, 11 insertions(+), 7 deletions(-)

jump to
M src/FbTk/Button.ccsrc/FbTk/Button.cc

@@ -19,7 +19,7 @@ // 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. -// $Id: Button.cc,v 1.8 2003/06/05 12:42:31 fluxgen Exp $ +// $Id: Button.cc,v 1.9 2003/08/04 12:46:49 fluxgen Exp $ #include "Button.hh"

@@ -69,15 +69,15 @@ m_onclick[button - 1] = cmd;

} void Button::move(int x, int y) { - m_win.move(x, y); + window().move(x, y); } void Button::resize(unsigned int w, unsigned int h) { - m_win.resize(w, h); + window().resize(w, h); } void Button::moveResize(int x, int y, unsigned int width, unsigned int height) { - m_win.moveResize(x, y, width, height); + window().moveResize(x, y, width, height); } void Button::setPixmap(Pixmap pm) {

@@ -92,12 +92,14 @@ void Button::setBackgroundColor(const Color &color) {

m_win.setBackgroundColor(color); m_background_color = color; clear(); + window().updateTransparent(); } void Button::setBackgroundPixmap(Pixmap pm) { m_win.setBackgroundPixmap(pm); m_background_pm = pm; clear(); + window().updateTransparent(); } void Button::show() {

@@ -113,7 +115,7 @@ if (m_pressed_pm != 0)

m_win.setBackgroundPixmap(m_pressed_pm); m_pressed = true; clear(); - + window().updateTransparent(); } void Button::buttonReleaseEvent(XButtonEvent &event) {

@@ -140,11 +142,13 @@

if (event.button > 0 && event.button <= 5 && m_onclick[event.button -1].get() != 0) m_onclick[event.button - 1]->execute(); - + + window().updateTransparent(); } void Button::exposeEvent(XExposeEvent &event) { - m_win.clear(); + clear(); + window().updateTransparent(event.x, event.y, event.width, event.height); } }; // end namespace FbTk