/* * this file is part of the oxygen gtk engine * Copyright (c) 2010 Hugo Pereira Da Costa * Copyright (c) 2010 Ruslan Kabatsayev * * 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 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., 51 Franklin St, Fifth Floor, Boston, * MA 02110-1301, USA. */ #include "oxygenmainwindowdata.h" #include "../oxygengtkutils.h" #include namespace Oxygen { //________________________________________________________________________________ void MainWindowData::connect( GtkWidget* widget ) { _target = widget; _locked = false; _configureId.connect( G_OBJECT(widget), "configure-event", G_CALLBACK( configureNotifyEvent ), this); } //________________________________________________________________________________ void MainWindowData::disconnect( GtkWidget* widget ) { _target = 0L; // reset timeout and locked flag _timer.stop(); _locked = false; _configureId.disconnect(); } //________________________________________________________________________________ void MainWindowData::updateSize( int width, int height ) { if( width == _width && height == _height ) return; _width = width; _height = height; // schedule delayed timeOut if( !_timer.isRunning() ) { _timer.start( 50, (GSourceFunc)delayedUpdate, this ); _locked = false; } else _locked = true; } //________________________________________________________________________________ gboolean MainWindowData::configureNotifyEvent(GtkWidget* widget, GdkEventConfigure* event, gpointer data ) { static_cast(data)->updateSize( event->width, event->height ); return FALSE; } //________________________________________________________________________________ gboolean MainWindowData::delayedUpdate( gpointer pointer ) { MainWindowData& data( *static_cast(pointer) ); if( !data._target ) { // if target is invalid, reset timeout and return data._locked = false; return FALSE; } else if( data._locked ) { // if locked, reset the flag and re-run timer data._locked = false; return TRUE; } else { // otherwise, trigger update gtk_widget_queue_draw( data._target ); return FALSE; } } }