1 #ifndef oxygenwidgetsizeengine_h
2 #define oxygenwidgetsizeengine_h
3 /*
4 * this file is part of the oxygen gtk engine
5 * Copyright (c) 2010 Hugo Pereira Da Costa <hugo.pereira@free.fr>
6 *
7 * This  library is free  software; you can  redistribute it and/or
8 * modify it  under  the terms  of the  GNU Lesser  General  Public
9 * License  as published  by the Free  Software  Foundation; either
10 * version 2 of the License, or(at your option ) any later version.
11 *
12 * This library is distributed  in the hope that it will be useful,
13 * but  WITHOUT ANY WARRANTY; without even  the implied warranty of
14 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
15 * Lesser General Public License for more details.
16 *
17 * You should have received a copy of the GNU Lesser General Public
18 * License  along  with  this library;  if not,  write to  the Free
19 * Software Foundation, Inc., 51  Franklin St, Fifth Floor, Boston,
20 * MA 02110-1301, USA.
21 */
22 
23 
24 #include "oxygengenericengine.h"
25 #include "oxygendatamap.h"
26 #include "oxygenwidgetsizedata.h"
27 
28 #include <gtk/gtk.h>
29 
30 namespace Oxygen
31 {
32     //! forward declaration
33     class Animations;
34 
35     //! stores data associated to editable widgetsizees
36     /*!
37     ensures that the text entry and the button of editable widgetsizees
38     gets hovered and focus flags at the same time
39     */
40     class WidgetSizeEngine: public GenericEngine<WidgetSizeData>
41     {
42 
43         public:
44 
45         //! constructor
WidgetSizeEngine(Animations * widget)46         WidgetSizeEngine( Animations* widget ):
47             GenericEngine<WidgetSizeData>( widget )
48             {}
49 
50         //! destructor
~WidgetSizeEngine(void)51         virtual ~WidgetSizeEngine( void )
52         {}
53 
54         //! update window XShape for given widget
updateMask(GtkWidget * widget)55         bool updateMask( GtkWidget* widget )
56         { return data().value( widget ).updateMask(); }
57     };
58 
59 }
60 
61 #endif
62