Fixed Reparent (added heaps of debug code for this)
Small mods to glcanvas
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@3799
c3d73ce0-8a6f-49c7-b76d-
6d57e0e08775
toolBar->AddTool(wxID_PASTE, *(toolBarBitmaps[5]), wxNullBitmap, FALSE, currentX, -1, (wxObject *) NULL, "Paste");
currentX += width + 5;
toolBar->AddSeparator();
toolBar->AddTool(wxID_PASTE, *(toolBarBitmaps[5]), wxNullBitmap, FALSE, currentX, -1, (wxObject *) NULL, "Paste");
currentX += width + 5;
toolBar->AddSeparator();
- toolBar->AddTool(wxID_PRINT, *(toolBarBitmaps[6]), wxNullBitmap, FALSE, currentX, -1, (wxObject *) NULL, "Print");
+ toolBar->AddTool(wxID_PRINT, *(toolBarBitmaps[6]), wxNullBitmap, FALSE, currentX, -1, (wxObject *) NULL, "Reparent the button");
currentX += width + 5;
toolBar->AddSeparator();
toolBar->AddTool(wxID_HELP, *(toolBarBitmaps[7]), wxNullBitmap, FALSE, currentX, -1, (wxObject *) NULL, "Help");
currentX += width + 5;
toolBar->AddSeparator();
toolBar->AddTool(wxID_HELP, *(toolBarBitmaps[7]), wxNullBitmap, FALSE, currentX, -1, (wxObject *) NULL, "Help");
BEGIN_EVENT_TABLE(MyMiniFrame, wxMiniFrame)
EVT_CLOSE ( MyMiniFrame::OnCloseWindow)
EVT_BUTTON (ID_REPARENT, MyMiniFrame::OnReparent)
BEGIN_EVENT_TABLE(MyMiniFrame, wxMiniFrame)
EVT_CLOSE ( MyMiniFrame::OnCloseWindow)
EVT_BUTTON (ID_REPARENT, MyMiniFrame::OnReparent)
+ EVT_MENU (wxID_PRINT, MyMiniFrame::OnReparent)
END_EVENT_TABLE()
MyMiniFrame::MyMiniFrame(wxFrame* parent, wxWindowID id, const wxString& title, const wxPoint& pos,
END_EVENT_TABLE()
MyMiniFrame::MyMiniFrame(wxFrame* parent, wxWindowID id, const wxString& title, const wxPoint& pos,
BEGIN_EVENT_TABLE(MyMainFrame, wxFrame)
EVT_CLOSE ( MyMainFrame::OnCloseWindow)
EVT_BUTTON (ID_REPARENT, MyMainFrame::OnReparent)
BEGIN_EVENT_TABLE(MyMainFrame, wxFrame)
EVT_CLOSE ( MyMainFrame::OnCloseWindow)
EVT_BUTTON (ID_REPARENT, MyMainFrame::OnReparent)
+ EVT_MENU (wxID_PRINT, MyMainFrame::OnReparent)
END_EVENT_TABLE()
MyMainFrame::MyMainFrame(wxFrame* parent, wxWindowID id, const wxString& title, const wxPoint& pos,
END_EVENT_TABLE()
MyMainFrame::MyMainFrame(wxFrame* parent, wxWindowID id, const wxString& title, const wxPoint& pos,
EVT_MENU(TreeTest_Unselect, MyFrame::OnUnselect)
#endif // NO_MULTIPLE_SELECTION
EVT_MENU(TreeTest_Rename, MyFrame::OnRename)
EVT_MENU(TreeTest_Unselect, MyFrame::OnUnselect)
#endif // NO_MULTIPLE_SELECTION
EVT_MENU(TreeTest_Rename, MyFrame::OnRename)
+ EVT_MENU(TreeTest_Count, MyFrame::OnCount)
+ EVT_MENU(TreeTest_CountRec, MyFrame::OnCountRec)
EVT_MENU(TreeTest_Sort, MyFrame::OnSort)
EVT_MENU(TreeTest_SortRev, MyFrame::OnSortRev)
EVT_MENU(TreeTest_Bold, MyFrame::OnSetBold)
EVT_MENU(TreeTest_Sort, MyFrame::OnSort)
EVT_MENU(TreeTest_SortRev, MyFrame::OnSortRev)
EVT_MENU(TreeTest_Bold, MyFrame::OnSetBold)
tree_menu->Append(TreeTest_DeleteChildren, "Delete &children");
tree_menu->Append(TreeTest_DeleteAll, "Delete &all items");
tree_menu->AppendSeparator();
tree_menu->Append(TreeTest_DeleteChildren, "Delete &children");
tree_menu->Append(TreeTest_DeleteAll, "Delete &all items");
tree_menu->AppendSeparator();
+ tree_menu->Append(TreeTest_Count, "Count children of current item");
+ tree_menu->Append(TreeTest_CountRec, "Recursively count children of current item");
+ tree_menu->AppendSeparator();
tree_menu->Append(TreeTest_Sort, "Sort children of current item");
tree_menu->Append(TreeTest_SortRev, "Sort in reversed order");
tree_menu->AppendSeparator();
tree_menu->Append(TreeTest_Sort, "Sort children of current item");
tree_menu->Append(TreeTest_SortRev, "Sort in reversed order");
tree_menu->AppendSeparator();
(void)m_treeCtrl->EditLabel(item);
}
(void)m_treeCtrl->EditLabel(item);
}
+void MyFrame::OnCount(wxCommandEvent& WXUNUSED(event))
+{
+ wxTreeItemId item = m_treeCtrl->GetSelection();
+
+ CHECK_ITEM( item );
+
+ int i = m_treeCtrl->GetChildrenCount( item, FALSE );
+
+ wxLogMessage(_T("%d children"), i);
+}
+
+void MyFrame::OnCountRec(wxCommandEvent& WXUNUSED(event))
+{
+ wxTreeItemId item = m_treeCtrl->GetSelection();
+
+ CHECK_ITEM( item );
+
+ int i = m_treeCtrl->GetChildrenCount( item );
+
+ wxLogMessage(_T("%d children"), i);
+}
+
void MyFrame::DoSort(bool reverse)
{
wxTreeItemId item = m_treeCtrl->GetSelection();
void MyFrame::DoSort(bool reverse)
{
wxTreeItemId item = m_treeCtrl->GetSelection();
void OnEnsureVisible(wxCommandEvent& event);
void OnEnsureVisible(wxCommandEvent& event);
+ void OnCount(wxCommandEvent& event);
+ void OnCountRec(wxCommandEvent& event);
+
void OnRename(wxCommandEvent& event);
void OnSort(wxCommandEvent& event) { DoSort(); }
void OnSortRev(wxCommandEvent& event) { DoSort(TRUE); }
void OnRename(wxCommandEvent& event);
void OnSort(wxCommandEvent& event) { DoSort(); }
void OnSortRev(wxCommandEvent& event) { DoSort(TRUE); }
TreeTest_About,
TreeTest_Dump,
TreeTest_DumpSelected,
TreeTest_About,
TreeTest_Dump,
TreeTest_DumpSelected,
+ TreeTest_Count,
+ TreeTest_CountRec,
TreeTest_Sort,
TreeTest_SortRev,
TreeTest_Bold,
TreeTest_Sort,
TreeTest_SortRev,
TreeTest_Bold,
static void wxInsertChildInFrame( wxFrame* parent, wxWindow* child )
{
static void wxInsertChildInFrame( wxFrame* parent, wxWindow* child )
{
+ wxASSERT( GTK_IS_WIDGET(child->m_widget) );
+
if (!parent->m_insertInClientArea)
{
/* these are outside the client area */
if (!parent->m_insertInClientArea)
{
/* these are outside the client area */
gtk_widget_unparent (widget);
gtk_widget_unparent (widget);
+ /* security checks */
+ g_return_if_fail (GTK_IS_WIDGET (widget));
+
myfixed->children = g_list_remove_link (myfixed->children, children);
g_list_free (children);
g_free (child);
myfixed->children = g_list_remove_link (myfixed->children, children);
g_list_free (children);
g_free (child);
if (was_visible && GTK_WIDGET_VISIBLE (container))
gtk_widget_queue_resize (GTK_WIDGET (container));
if (was_visible && GTK_WIDGET_VISIBLE (container))
gtk_widget_queue_resize (GTK_WIDGET (container));
+ /* security checks */
+ g_return_if_fail (GTK_IS_WIDGET (widget));
+
wxWindow *oldParent = m_parent,
*newParent = (wxWindow *)newParentBase;
wxWindow *oldParent = m_parent,
*newParent = (wxWindow *)newParentBase;
+ wxASSERT( GTK_IS_WIDGET(m_widget) );
+
if ( !wxWindowBase::Reparent(newParent) )
return FALSE;
if ( !wxWindowBase::Reparent(newParent) )
return FALSE;
+ wxASSERT( GTK_IS_WIDGET(m_widget) );
+
+ /* prevent GTK from deleting the widget arbitrarily */
+ gtk_widget_ref( m_widget );
+
if (oldParent)
{
gtk_container_remove( GTK_CONTAINER(oldParent->m_wxwindow), m_widget );
}
if (oldParent)
{
gtk_container_remove( GTK_CONTAINER(oldParent->m_wxwindow), m_widget );
}
+ wxASSERT( GTK_IS_WIDGET(m_widget) );
+
if (newParent)
{
/* insert GTK representation */
(*(newParent->m_insertCallback))(newParent, this);
}
if (newParent)
{
/* insert GTK representation */
(*(newParent->m_insertCallback))(newParent, this);
}
+ /* reverse: prevent GTK from deleting the widget arbitrarily */
+ gtk_widget_unref( m_widget );
+
static void wxInsertChildInFrame( wxFrame* parent, wxWindow* child )
{
static void wxInsertChildInFrame( wxFrame* parent, wxWindow* child )
{
+ wxASSERT( GTK_IS_WIDGET(child->m_widget) );
+
if (!parent->m_insertInClientArea)
{
/* these are outside the client area */
if (!parent->m_insertInClientArea)
{
/* these are outside the client area */
gtk_widget_unparent (widget);
gtk_widget_unparent (widget);
+ /* security checks */
+ g_return_if_fail (GTK_IS_WIDGET (widget));
+
myfixed->children = g_list_remove_link (myfixed->children, children);
g_list_free (children);
g_free (child);
myfixed->children = g_list_remove_link (myfixed->children, children);
g_list_free (children);
g_free (child);
if (was_visible && GTK_WIDGET_VISIBLE (container))
gtk_widget_queue_resize (GTK_WIDGET (container));
if (was_visible && GTK_WIDGET_VISIBLE (container))
gtk_widget_queue_resize (GTK_WIDGET (container));
+ /* security checks */
+ g_return_if_fail (GTK_IS_WIDGET (widget));
+
wxWindow *oldParent = m_parent,
*newParent = (wxWindow *)newParentBase;
wxWindow *oldParent = m_parent,
*newParent = (wxWindow *)newParentBase;
+ wxASSERT( GTK_IS_WIDGET(m_widget) );
+
if ( !wxWindowBase::Reparent(newParent) )
return FALSE;
if ( !wxWindowBase::Reparent(newParent) )
return FALSE;
+ wxASSERT( GTK_IS_WIDGET(m_widget) );
+
+ /* prevent GTK from deleting the widget arbitrarily */
+ gtk_widget_ref( m_widget );
+
if (oldParent)
{
gtk_container_remove( GTK_CONTAINER(oldParent->m_wxwindow), m_widget );
}
if (oldParent)
{
gtk_container_remove( GTK_CONTAINER(oldParent->m_wxwindow), m_widget );
}
+ wxASSERT( GTK_IS_WIDGET(m_widget) );
+
if (newParent)
{
/* insert GTK representation */
(*(newParent->m_insertCallback))(newParent, this);
}
if (newParent)
{
/* insert GTK representation */
(*(newParent->m_insertCallback))(newParent, this);
}
+ /* reverse: prevent GTK from deleting the widget arbitrarily */
+ gtk_widget_unref( m_widget );
+
XFree( g_vi );
g_vi = (XVisualInfo*) NULL;
XFree( g_vi );
g_vi = (XVisualInfo*) NULL;
-// gdk_window_set_back_pixmap( m_glWidget->window, None, 0 );
-
/* we pretend to have a m_wxwindow so that PostCreation hooks
up the events for expose and draw */
m_wxwindow = m_glWidget;
/* we pretend to have a m_wxwindow so that PostCreation hooks
up the events for expose and draw */
m_wxwindow = m_glWidget;
{
int width, height;
GetClientSize( &width, &height );
{
int width, height;
GetClientSize( &width, &height );
if (m_glContext && GTK_WIDGET_REALIZED(m_glWidget) )
{
SetCurrent();
if (m_glContext && GTK_WIDGET_REALIZED(m_glWidget) )
{
SetCurrent();
-// gdk_window_set_back_pixmap( gtk_widget_get_parent_window(m_glWidget), None, 0 );
glViewport(0, 0, (GLint)width, (GLint)height );
glMatrixMode(GL_PROJECTION);
glViewport(0, 0, (GLint)width, (GLint)height );
glMatrixMode(GL_PROJECTION);
class wxGLContext: public wxObject
{
class wxGLContext: public wxObject
{
- DECLARE_CLASS(wxGLContext)
-
- public:
-
wxGLContext( bool isRGB, wxWindow *win, const wxPalette& palette = wxNullPalette );
wxGLContext(
bool WXUNUSED(isRGB), wxWindow *win,
wxGLContext( bool isRGB, wxWindow *win, const wxPalette& palette = wxNullPalette );
wxGLContext(
bool WXUNUSED(isRGB), wxWindow *win,
inline GtkWidget* GetWidget() const { return m_widget; }
inline GLXContext GetContext() const { return m_glContext; }
inline GtkWidget* GetWidget() const { return m_widget; }
inline GLXContext GetContext() const { return m_glContext; }
GLXContext m_glContext;
GtkWidget *m_widget;
wxPalette m_palette;
wxWindow* m_window;
GLXContext m_glContext;
GtkWidget *m_widget;
wxPalette m_palette;
wxWindow* m_window;
+
+private:
+ DECLARE_CLASS(wxGLContext)
};
//---------------------------------------------------------------------------
};
//---------------------------------------------------------------------------
class wxGLCanvas: public wxScrolledWindow
{
class wxGLCanvas: public wxScrolledWindow
{
- DECLARE_CLASS(wxGLCanvas)
-
- public:
wxGLCanvas( wxWindow *parent, wxWindowID id = -1,
const wxPoint& pos = wxDefaultPosition,
const wxSize& size = wxDefaultSize,
wxGLCanvas( wxWindow *parent, wxWindowID id = -1,
const wxPoint& pos = wxDefaultPosition,
const wxSize& size = wxDefaultSize,
wxGLContext *m_glContext;
GtkWidget *m_glWidget;
wxGLContext *m_glContext;
GtkWidget *m_glWidget;
+private:
+ DECLARE_EVENT_TABLE()
+ DECLARE_CLASS(wxGLCanvas)