Kaydet (Commit) 1cbd7040 authored tarafından Vladimir Glazounov's avatar Vladimir Glazounov

INTEGRATION: CWS transogl02 (1.11.392); FILE MERGED

2007/12/10 19:00:18 radekdoulik 1.11.392.1: add BOOL bShow parameter to SystemChildWindow constructor to allow creating
of unmapped window with possibility to show it (map it) later to avoid
flicker
üst 051de5af
......@@ -4,9 +4,9 @@
*
* $RCSfile: gtkobject.cxx,v $
*
* $Revision: 1.11 $
* $Revision: 1.12 $
*
* last change: $Author: kz $ $Date: 2006-10-06 10:00:15 $
* last change: $Author: vg $ $Date: 2008-01-29 08:38:10 $
*
* The Contents of this file are made available subject to
* the terms of GNU Lesser General Public License Version 2.1.
......@@ -41,7 +41,7 @@
#include <plugins/gtk/gtkdata.hxx>
#include <plugins/gtk/gtkinst.hxx>
GtkSalObject::GtkSalObject( GtkSalFrame* pParent )
GtkSalObject::GtkSalObject( GtkSalFrame* pParent, BOOL bShow )
: m_pSocket( NULL ),
m_pRegion( NULL )
{
......@@ -49,6 +49,7 @@ GtkSalObject::GtkSalObject( GtkSalFrame* pParent )
{
// our plug window
m_pSocket = gtk_drawing_area_new();
Show( bShow );
// insert into container
gtk_fixed_put( pParent->getFixedContainer(),
m_pSocket,
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment