From 8b3d02a1d90641aa16a4f015b2c0bec99b91b03d Mon Sep 17 00:00:00 2001 From: =?utf8?q?W=C5=82odzimierz=20Skiba?= Date: Thu, 15 Jul 2004 06:21:31 +0000 Subject: [PATCH] Smartphone adjustements. git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@28242 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775 --- src/generic/tipdlg.cpp | 42 +++++++++++++++++++++++++++++++++++------- 1 file changed, 35 insertions(+), 7 deletions(-) diff --git a/src/generic/tipdlg.cpp b/src/generic/tipdlg.cpp index 7454236ba2..fbea2405e0 100644 --- a/src/generic/tipdlg.cpp +++ b/src/generic/tipdlg.cpp @@ -55,6 +55,20 @@ static const int wxID_NEXT_TIP = 32000; // whatever +// --------------------------------------------------------------------------- +// macros +// --------------------------------------------------------------------------- + +/* Macro for avoiding #ifdefs when value have to be different depending on size of + device we display on + */ + +#if defined(__SMARTPHONE__) + #define wxLARGESMALL(large,small) small +#else + #define wxLARGESMALL(large,small) large +#endif + // ---------------------------------------------------------------------------- // private classes // ---------------------------------------------------------------------------- @@ -210,20 +224,25 @@ wxTipDialog::wxTipDialog(wxWindow *parent, // 1) create all controls in tab order +#ifndef __SMARTPHONE__ wxButton *btnClose = new wxButton(this, wxID_CANCEL, _("&Close")); +#endif m_checkbox = new wxCheckBox(this, wxID_ANY, _("&Show tips at startup")); m_checkbox->SetValue(showAtStartup); +#ifndef __SMARTPHONE__ wxButton *btnNext = new wxButton(this, wxID_NEXT_TIP, _("&Next Tip")); +#endif wxStaticText *text = new wxStaticText(this, wxID_ANY, _("Did you know...")); +#ifndef __SMARTPHONE__ wxFont font = text->GetFont(); font.SetPointSize(int(1.6 * font.GetPointSize())); font.SetWeight(wxFONTWEIGHT_BOLD); - text->SetFont(font); +#endif m_text = new wxTextCtrl(this, wxID_ANY, wxEmptyString, wxDefaultPosition, wxSize(200, 160), @@ -260,17 +279,21 @@ wxTipDialog::wxTipDialog(wxWindow *parent, wxBoxSizer *icon_text = new wxBoxSizer( wxHORIZONTAL ); icon_text->Add( bmp, 0, wxCENTER ); - icon_text->Add( text, 1, wxCENTER | wxLEFT, 20 ); - topsizer->Add( icon_text, 0, wxEXPAND | wxALL, 10 ); + icon_text->Add( text, 1, wxCENTER | wxLEFT, wxLARGESMALL(20,0) ); + topsizer->Add( icon_text, 0, wxEXPAND | wxALL, wxLARGESMALL(10,0) ); - topsizer->Add( m_text, 1, wxEXPAND | wxLEFT|wxRIGHT, 10 ); + topsizer->Add( m_text, 1, wxEXPAND | wxLEFT|wxRIGHT, wxLARGESMALL(10,0) ); wxBoxSizer *bottom = new wxBoxSizer( wxHORIZONTAL ); bottom->Add( m_checkbox, 0, wxCENTER ); + +#ifndef __SMARTPHONE__ bottom->Add( 10,10,1 ); - bottom->Add( btnNext, 0, wxCENTER | wxLEFT, 10 ); - bottom->Add( btnClose, 0, wxCENTER | wxLEFT, 10 ); - topsizer->Add( bottom, 0, wxEXPAND | wxALL, 10 ); + bottom->Add( btnNext, 0, wxCENTER | wxLEFT, wxLARGESMALL(10,0) ); + bottom->Add( btnClose, 0, wxCENTER | wxLEFT, wxLARGESMALL(10,0) ); +#endif + + topsizer->Add( bottom, 0, wxEXPAND | wxALL, wxLARGESMALL(10,0) ); SetTipText(); @@ -281,6 +304,11 @@ wxTipDialog::wxTipDialog(wxWindow *parent, Centre(wxBOTH | wxCENTER_FRAME); +#ifdef __SMARTPHONE__ + SetRightMenu(wxID_NEXT_TIP, _("Next")); + SetLeftMenu(wxID_CANCEL, _("Close")); +#endif + } // ---------------------------------------------------------------------------- -- 2.45.2