GTK 1.0.x compilation fixes
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@2096 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
@@ -25,7 +25,7 @@
|
|||||||
// constants
|
// constants
|
||||||
//-----------------------------------------------------------------------------
|
//-----------------------------------------------------------------------------
|
||||||
|
|
||||||
const int wxMENU_HEIGHT = 27;
|
const int wxMENU_HEIGHT = 27;
|
||||||
|
|
||||||
//-----------------------------------------------------------------------------
|
//-----------------------------------------------------------------------------
|
||||||
// globals
|
// globals
|
||||||
@@ -103,10 +103,10 @@ void wxMDIParentFrame::OnInternalIdle()
|
|||||||
if (m_justInserted)
|
if (m_justInserted)
|
||||||
{
|
{
|
||||||
GtkNotebook *notebook = GTK_NOTEBOOK(m_clientWindow->m_widget);
|
GtkNotebook *notebook = GTK_NOTEBOOK(m_clientWindow->m_widget);
|
||||||
gtk_notebook_set_page( notebook, g_list_length( notebook->children ) - 1 );
|
gtk_notebook_set_page( notebook, g_list_length( notebook->children ) - 1 );
|
||||||
|
|
||||||
m_justInserted = FALSE;
|
m_justInserted = FALSE;
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
|
||||||
wxFrame::OnInternalIdle();
|
wxFrame::OnInternalIdle();
|
||||||
@@ -117,13 +117,13 @@ void wxMDIParentFrame::OnInternalIdle()
|
|||||||
while (node)
|
while (node)
|
||||||
{
|
{
|
||||||
wxMDIChildFrame *child_frame = (wxMDIChildFrame *)node->Data();
|
wxMDIChildFrame *child_frame = (wxMDIChildFrame *)node->Data();
|
||||||
if (child_frame->m_menuBar)
|
if (child_frame->m_menuBar)
|
||||||
{
|
{
|
||||||
if (child_frame == active_child_frame)
|
if (child_frame == active_child_frame)
|
||||||
gtk_widget_show( child_frame->m_menuBar->m_widget );
|
gtk_widget_show( child_frame->m_menuBar->m_widget );
|
||||||
else
|
else
|
||||||
gtk_widget_hide( child_frame->m_menuBar->m_widget );
|
gtk_widget_hide( child_frame->m_menuBar->m_widget );
|
||||||
}
|
}
|
||||||
node = node->Next();
|
node = node->Next();
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -143,7 +143,11 @@ wxMDIChildFrame *wxMDIParentFrame::GetActiveChild() const
|
|||||||
GtkNotebook *notebook = GTK_NOTEBOOK(m_clientWindow->m_widget);
|
GtkNotebook *notebook = GTK_NOTEBOOK(m_clientWindow->m_widget);
|
||||||
if (!notebook) return (wxMDIChildFrame*) NULL;
|
if (!notebook) return (wxMDIChildFrame*) NULL;
|
||||||
|
|
||||||
|
#if (GTK_MINOR_VERSION > 0)
|
||||||
gint i = gtk_notebook_get_current_page( notebook );
|
gint i = gtk_notebook_get_current_page( notebook );
|
||||||
|
#else
|
||||||
|
gint i = gtk_notebook_current_page( notebook );
|
||||||
|
#endif
|
||||||
if (i < 0) return (wxMDIChildFrame*) NULL;
|
if (i < 0) return (wxMDIChildFrame*) NULL;
|
||||||
|
|
||||||
GtkNotebookPage* page = (GtkNotebookPage*) (g_list_nth(notebook->children,i)->data);
|
GtkNotebookPage* page = (GtkNotebookPage*) (g_list_nth(notebook->children,i)->data);
|
||||||
@@ -279,7 +283,7 @@ void wxMDIChildFrame::SetMenuBar( wxMenuBar *menu_bar )
|
|||||||
}
|
}
|
||||||
|
|
||||||
/* the menu bar of the child window is shown in idle time as needed */
|
/* the menu bar of the child window is shown in idle time as needed */
|
||||||
gtk_widget_hide( m_menuBar->m_widget );
|
gtk_widget_hide( m_menuBar->m_widget );
|
||||||
|
|
||||||
/* insert the invisible menu bar into the _parent_ mdi frame */
|
/* insert the invisible menu bar into the _parent_ mdi frame */
|
||||||
gtk_myfixed_put( GTK_MYFIXED(mdi_frame->m_mainWidget), m_menuBar->m_widget, 0, 0 );
|
gtk_myfixed_put( GTK_MYFIXED(mdi_frame->m_mainWidget), m_menuBar->m_widget, 0, 0 );
|
||||||
|
@@ -413,9 +413,11 @@ gtk_myfixed_size_allocate (GtkWidget *widget,
|
|||||||
|
|
||||||
myfixed = GTK_MYFIXED (widget);
|
myfixed = GTK_MYFIXED (widget);
|
||||||
|
|
||||||
|
#if (GTK_MINOR_VERSION > 0)
|
||||||
if (myfixed->shadow_type == GTK_SHADOW_NONE)
|
if (myfixed->shadow_type == GTK_SHADOW_NONE)
|
||||||
border = 0;
|
border = 0;
|
||||||
else
|
else
|
||||||
|
#endif
|
||||||
border = 2;
|
border = 2;
|
||||||
|
|
||||||
widget->allocation = *allocation;
|
widget->allocation = *allocation;
|
||||||
@@ -424,10 +426,11 @@ gtk_myfixed_size_allocate (GtkWidget *widget,
|
|||||||
gdk_window_move_resize( widget->window,
|
gdk_window_move_resize( widget->window,
|
||||||
allocation->x+border, allocation->y+border,
|
allocation->x+border, allocation->y+border,
|
||||||
#if (GTK_MINOR_VERSION > 0)
|
#if (GTK_MINOR_VERSION > 0)
|
||||||
allocation->width-border*2, allocation->height-border*2 );
|
allocation->width-border*2, allocation->height-border*2
|
||||||
#else
|
#else
|
||||||
32000, 32000 );
|
32000, 32000
|
||||||
#endif
|
#endif
|
||||||
|
);
|
||||||
}
|
}
|
||||||
|
|
||||||
children = myfixed->children;
|
children = myfixed->children;
|
||||||
|
@@ -25,7 +25,7 @@
|
|||||||
// constants
|
// constants
|
||||||
//-----------------------------------------------------------------------------
|
//-----------------------------------------------------------------------------
|
||||||
|
|
||||||
const int wxMENU_HEIGHT = 27;
|
const int wxMENU_HEIGHT = 27;
|
||||||
|
|
||||||
//-----------------------------------------------------------------------------
|
//-----------------------------------------------------------------------------
|
||||||
// globals
|
// globals
|
||||||
@@ -103,10 +103,10 @@ void wxMDIParentFrame::OnInternalIdle()
|
|||||||
if (m_justInserted)
|
if (m_justInserted)
|
||||||
{
|
{
|
||||||
GtkNotebook *notebook = GTK_NOTEBOOK(m_clientWindow->m_widget);
|
GtkNotebook *notebook = GTK_NOTEBOOK(m_clientWindow->m_widget);
|
||||||
gtk_notebook_set_page( notebook, g_list_length( notebook->children ) - 1 );
|
gtk_notebook_set_page( notebook, g_list_length( notebook->children ) - 1 );
|
||||||
|
|
||||||
m_justInserted = FALSE;
|
m_justInserted = FALSE;
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
|
||||||
wxFrame::OnInternalIdle();
|
wxFrame::OnInternalIdle();
|
||||||
@@ -117,13 +117,13 @@ void wxMDIParentFrame::OnInternalIdle()
|
|||||||
while (node)
|
while (node)
|
||||||
{
|
{
|
||||||
wxMDIChildFrame *child_frame = (wxMDIChildFrame *)node->Data();
|
wxMDIChildFrame *child_frame = (wxMDIChildFrame *)node->Data();
|
||||||
if (child_frame->m_menuBar)
|
if (child_frame->m_menuBar)
|
||||||
{
|
{
|
||||||
if (child_frame == active_child_frame)
|
if (child_frame == active_child_frame)
|
||||||
gtk_widget_show( child_frame->m_menuBar->m_widget );
|
gtk_widget_show( child_frame->m_menuBar->m_widget );
|
||||||
else
|
else
|
||||||
gtk_widget_hide( child_frame->m_menuBar->m_widget );
|
gtk_widget_hide( child_frame->m_menuBar->m_widget );
|
||||||
}
|
}
|
||||||
node = node->Next();
|
node = node->Next();
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -143,7 +143,11 @@ wxMDIChildFrame *wxMDIParentFrame::GetActiveChild() const
|
|||||||
GtkNotebook *notebook = GTK_NOTEBOOK(m_clientWindow->m_widget);
|
GtkNotebook *notebook = GTK_NOTEBOOK(m_clientWindow->m_widget);
|
||||||
if (!notebook) return (wxMDIChildFrame*) NULL;
|
if (!notebook) return (wxMDIChildFrame*) NULL;
|
||||||
|
|
||||||
|
#if (GTK_MINOR_VERSION > 0)
|
||||||
gint i = gtk_notebook_get_current_page( notebook );
|
gint i = gtk_notebook_get_current_page( notebook );
|
||||||
|
#else
|
||||||
|
gint i = gtk_notebook_current_page( notebook );
|
||||||
|
#endif
|
||||||
if (i < 0) return (wxMDIChildFrame*) NULL;
|
if (i < 0) return (wxMDIChildFrame*) NULL;
|
||||||
|
|
||||||
GtkNotebookPage* page = (GtkNotebookPage*) (g_list_nth(notebook->children,i)->data);
|
GtkNotebookPage* page = (GtkNotebookPage*) (g_list_nth(notebook->children,i)->data);
|
||||||
@@ -279,7 +283,7 @@ void wxMDIChildFrame::SetMenuBar( wxMenuBar *menu_bar )
|
|||||||
}
|
}
|
||||||
|
|
||||||
/* the menu bar of the child window is shown in idle time as needed */
|
/* the menu bar of the child window is shown in idle time as needed */
|
||||||
gtk_widget_hide( m_menuBar->m_widget );
|
gtk_widget_hide( m_menuBar->m_widget );
|
||||||
|
|
||||||
/* insert the invisible menu bar into the _parent_ mdi frame */
|
/* insert the invisible menu bar into the _parent_ mdi frame */
|
||||||
gtk_myfixed_put( GTK_MYFIXED(mdi_frame->m_mainWidget), m_menuBar->m_widget, 0, 0 );
|
gtk_myfixed_put( GTK_MYFIXED(mdi_frame->m_mainWidget), m_menuBar->m_widget, 0, 0 );
|
||||||
|
@@ -413,9 +413,11 @@ gtk_myfixed_size_allocate (GtkWidget *widget,
|
|||||||
|
|
||||||
myfixed = GTK_MYFIXED (widget);
|
myfixed = GTK_MYFIXED (widget);
|
||||||
|
|
||||||
|
#if (GTK_MINOR_VERSION > 0)
|
||||||
if (myfixed->shadow_type == GTK_SHADOW_NONE)
|
if (myfixed->shadow_type == GTK_SHADOW_NONE)
|
||||||
border = 0;
|
border = 0;
|
||||||
else
|
else
|
||||||
|
#endif
|
||||||
border = 2;
|
border = 2;
|
||||||
|
|
||||||
widget->allocation = *allocation;
|
widget->allocation = *allocation;
|
||||||
@@ -424,10 +426,11 @@ gtk_myfixed_size_allocate (GtkWidget *widget,
|
|||||||
gdk_window_move_resize( widget->window,
|
gdk_window_move_resize( widget->window,
|
||||||
allocation->x+border, allocation->y+border,
|
allocation->x+border, allocation->y+border,
|
||||||
#if (GTK_MINOR_VERSION > 0)
|
#if (GTK_MINOR_VERSION > 0)
|
||||||
allocation->width-border*2, allocation->height-border*2 );
|
allocation->width-border*2, allocation->height-border*2
|
||||||
#else
|
#else
|
||||||
32000, 32000 );
|
32000, 32000
|
||||||
#endif
|
#endif
|
||||||
|
);
|
||||||
}
|
}
|
||||||
|
|
||||||
children = myfixed->children;
|
children = myfixed->children;
|
||||||
|
Reference in New Issue
Block a user