GtkMyFixed is now more "GTK 1.2.3 ready".
Test added to notebook sample (showing that GTK 1.2.3 is not GTK 1.2.3 ready). Touched frame? git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@2523 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
@@ -59,7 +59,7 @@ void MyApp::InitTabView(wxNotebook* notebook, wxWindow* window)
|
|||||||
{
|
{
|
||||||
m_okButton = new wxButton(window, wxID_OK, "Close", wxPoint(-1, -1), wxSize(80, 25));
|
m_okButton = new wxButton(window, wxID_OK, "Close", wxPoint(-1, -1), wxSize(80, 25));
|
||||||
m_cancelButton = new wxButton(window, wxID_CANCEL, "Cancel", wxPoint(-1, -1), wxSize(80, 25));
|
m_cancelButton = new wxButton(window, wxID_CANCEL, "Cancel", wxPoint(-1, -1), wxSize(80, 25));
|
||||||
m_helpButton = new wxButton(window, wxID_HELP, "Help", wxPoint(-1, -1), wxSize(80, 25));
|
m_addPageButton = new wxButton(window, ID_ADD_PAGE, "Add page", wxPoint(-1, -1), wxSize(80, 25));
|
||||||
m_okButton->SetDefault();
|
m_okButton->SetDefault();
|
||||||
|
|
||||||
wxLayoutConstraints* c = new wxLayoutConstraints;
|
wxLayoutConstraints* c = new wxLayoutConstraints;
|
||||||
@@ -67,10 +67,10 @@ void MyApp::InitTabView(wxNotebook* notebook, wxWindow* window)
|
|||||||
c->bottom.SameAs(window, wxBottom, 4);
|
c->bottom.SameAs(window, wxBottom, 4);
|
||||||
c->height.AsIs();
|
c->height.AsIs();
|
||||||
c->width.AsIs();
|
c->width.AsIs();
|
||||||
m_helpButton->SetConstraints(c);
|
m_addPageButton->SetConstraints(c);
|
||||||
|
|
||||||
c = new wxLayoutConstraints;
|
c = new wxLayoutConstraints;
|
||||||
c->right.SameAs(m_helpButton, wxLeft, 4);
|
c->right.SameAs(m_addPageButton, wxLeft, 4);
|
||||||
c->bottom.SameAs(window, wxBottom, 4);
|
c->bottom.SameAs(window, wxBottom, 4);
|
||||||
c->height.AsIs();
|
c->height.AsIs();
|
||||||
c->width.AsIs();
|
c->width.AsIs();
|
||||||
@@ -101,7 +101,6 @@ void MyApp::InitTabView(wxNotebook* notebook, wxWindow* window)
|
|||||||
wxTE_MULTILINE);
|
wxTE_MULTILINE);
|
||||||
|
|
||||||
notebook->AddPage(panel2, "Dog");
|
notebook->AddPage(panel2, "Dog");
|
||||||
|
|
||||||
wxPanel *panel3 = new wxPanel(notebook, -1);
|
wxPanel *panel3 = new wxPanel(notebook, -1);
|
||||||
panel3->SetBackgroundColour(wxColour("WHITE"));
|
panel3->SetBackgroundColour(wxColour("WHITE"));
|
||||||
notebook->AddPage(panel3, "Goat");
|
notebook->AddPage(panel3, "Goat");
|
||||||
@@ -156,6 +155,7 @@ void MyDialog::Init(void)
|
|||||||
BEGIN_EVENT_TABLE(MyFrame, wxFrame)
|
BEGIN_EVENT_TABLE(MyFrame, wxFrame)
|
||||||
EVT_BUTTON(wxID_OK, MyFrame::OnOK)
|
EVT_BUTTON(wxID_OK, MyFrame::OnOK)
|
||||||
EVT_BUTTON(wxID_CANCEL, MyFrame::OnOK)
|
EVT_BUTTON(wxID_CANCEL, MyFrame::OnOK)
|
||||||
|
EVT_BUTTON(ID_ADD_PAGE, MyFrame::OnAddPage)
|
||||||
EVT_SIZE(MyFrame::OnSize)
|
EVT_SIZE(MyFrame::OnSize)
|
||||||
END_EVENT_TABLE()
|
END_EVENT_TABLE()
|
||||||
|
|
||||||
@@ -168,6 +168,14 @@ MyFrame::MyFrame(wxFrame* parent, const wxWindowID id, const wxString& title,
|
|||||||
Init();
|
Init();
|
||||||
}
|
}
|
||||||
|
|
||||||
|
void MyFrame::OnAddPage(wxCommandEvent& WXUNUSED(event))
|
||||||
|
{
|
||||||
|
wxPanel *panel = new wxPanel( m_notebook, -1 );
|
||||||
|
(void)new wxButton( panel, -1, "Button", wxPoint( 10,10 ), wxSize(-1,-1) );
|
||||||
|
m_notebook->AddPage( panel, "Added" );
|
||||||
|
m_notebook->SetSelection( m_notebook->GetPageCount()-1 );
|
||||||
|
}
|
||||||
|
|
||||||
void MyFrame::OnOK(wxCommandEvent& WXUNUSED(event) )
|
void MyFrame::OnOK(wxCommandEvent& WXUNUSED(event) )
|
||||||
{
|
{
|
||||||
this->Destroy();
|
this->Destroy();
|
||||||
|
@@ -20,7 +20,7 @@ public:
|
|||||||
|
|
||||||
wxButton* m_okButton;
|
wxButton* m_okButton;
|
||||||
wxButton* m_cancelButton;
|
wxButton* m_cancelButton;
|
||||||
wxButton* m_helpButton;
|
wxButton* m_addPageButton;
|
||||||
};
|
};
|
||||||
|
|
||||||
DECLARE_APP(MyApp)
|
DECLARE_APP(MyApp)
|
||||||
@@ -49,6 +49,7 @@ public:
|
|||||||
|
|
||||||
void OnOK(wxCommandEvent& event);
|
void OnOK(wxCommandEvent& event);
|
||||||
void OnCloseWindow(wxCloseEvent& event);
|
void OnCloseWindow(wxCloseEvent& event);
|
||||||
|
void OnAddPage(wxCommandEvent& event);
|
||||||
void OnSize(wxSizeEvent& event);
|
void OnSize(wxSizeEvent& event);
|
||||||
void Init(void);
|
void Init(void);
|
||||||
protected:
|
protected:
|
||||||
@@ -76,4 +77,5 @@ DECLARE_EVENT_TABLE()
|
|||||||
#define TEST_TAB_AARDVARK 12
|
#define TEST_TAB_AARDVARK 12
|
||||||
|
|
||||||
#define ID_NOTEBOOK 1000
|
#define ID_NOTEBOOK 1000
|
||||||
|
#define ID_ADD_PAGE 1200
|
||||||
|
|
||||||
|
@@ -789,7 +789,7 @@ void wxFrame::OnSize( wxSizeEvent &WXUNUSED(event) )
|
|||||||
{
|
{
|
||||||
/* yes: set it's size to fill all the frame */
|
/* yes: set it's size to fill all the frame */
|
||||||
int client_x, client_y;
|
int client_x, client_y;
|
||||||
GetClientSize( &client_x, &client_y );
|
DoGetClientSize( &client_x, &client_y );
|
||||||
child->SetSize( 1, 1, client_x-2, client_y-2 );
|
child->SetSize( 1, 1, client_x-2, client_y-2 );
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@@ -225,14 +225,16 @@ gtk_myfixed_put (GtkMyFixed *myfixed,
|
|||||||
|
|
||||||
myfixed->children = g_list_append (myfixed->children, child_info);
|
myfixed->children = g_list_append (myfixed->children, child_info);
|
||||||
|
|
||||||
if (GTK_WIDGET_REALIZED (myfixed) && !GTK_WIDGET_REALIZED (widget))
|
if (GTK_WIDGET_REALIZED (myfixed))
|
||||||
gtk_widget_realize (widget);
|
gtk_widget_realize (widget);
|
||||||
|
|
||||||
if (GTK_WIDGET_MAPPED (myfixed) && !GTK_WIDGET_MAPPED (widget) && GTK_WIDGET_VISIBLE (widget))
|
if (GTK_WIDGET_VISIBLE (myfixed) && GTK_WIDGET_VISIBLE (widget))
|
||||||
gtk_widget_map (widget);
|
{
|
||||||
|
if (GTK_WIDGET_MAPPED (myfixed))
|
||||||
if (GTK_WIDGET_VISIBLE (widget) && GTK_WIDGET_VISIBLE (myfixed))
|
gtk_widget_map (widget);
|
||||||
gtk_widget_queue_resize (GTK_WIDGET (myfixed));
|
|
||||||
|
gtk_widget_queue_resize (GTK_WIDGET (myfixed));
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
void
|
void
|
||||||
|
@@ -789,7 +789,7 @@ void wxFrame::OnSize( wxSizeEvent &WXUNUSED(event) )
|
|||||||
{
|
{
|
||||||
/* yes: set it's size to fill all the frame */
|
/* yes: set it's size to fill all the frame */
|
||||||
int client_x, client_y;
|
int client_x, client_y;
|
||||||
GetClientSize( &client_x, &client_y );
|
DoGetClientSize( &client_x, &client_y );
|
||||||
child->SetSize( 1, 1, client_x-2, client_y-2 );
|
child->SetSize( 1, 1, client_x-2, client_y-2 );
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@@ -225,14 +225,16 @@ gtk_myfixed_put (GtkMyFixed *myfixed,
|
|||||||
|
|
||||||
myfixed->children = g_list_append (myfixed->children, child_info);
|
myfixed->children = g_list_append (myfixed->children, child_info);
|
||||||
|
|
||||||
if (GTK_WIDGET_REALIZED (myfixed) && !GTK_WIDGET_REALIZED (widget))
|
if (GTK_WIDGET_REALIZED (myfixed))
|
||||||
gtk_widget_realize (widget);
|
gtk_widget_realize (widget);
|
||||||
|
|
||||||
if (GTK_WIDGET_MAPPED (myfixed) && !GTK_WIDGET_MAPPED (widget) && GTK_WIDGET_VISIBLE (widget))
|
if (GTK_WIDGET_VISIBLE (myfixed) && GTK_WIDGET_VISIBLE (widget))
|
||||||
gtk_widget_map (widget);
|
{
|
||||||
|
if (GTK_WIDGET_MAPPED (myfixed))
|
||||||
if (GTK_WIDGET_VISIBLE (widget) && GTK_WIDGET_VISIBLE (myfixed))
|
gtk_widget_map (widget);
|
||||||
gtk_widget_queue_resize (GTK_WIDGET (myfixed));
|
|
||||||
|
gtk_widget_queue_resize (GTK_WIDGET (myfixed));
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
void
|
void
|
||||||
|
Reference in New Issue
Block a user