#include "wx/generic/progdlgg.h"
+// ---------------------------------------------------------------------------
+// macros
+// ---------------------------------------------------------------------------
+
+/* Macro for avoiding #ifdefs when value have to be different depending on size of
+ device we display on - take it from something like wxDesktopPolicy in the future
+ */
+
+#if defined(__SMARTPHONE__)
+ #define wxLARGESMALL(large,small) small
+#else
+ #define wxLARGESMALL(large,small) large
+#endif
+
// ----------------------------------------------------------------------------
// constants
// ----------------------------------------------------------------------------
-#define LAYOUT_MARGIN 8
+#define LAYOUT_MARGIN wxLARGESMALL(8,2)
// ----------------------------------------------------------------------------
// private functions
}
#endif // wxMSW
+#if defined(__SMARTPHONE__)
+ SetLeftMenu();
+#endif
+
m_state = hasAbortButton ? Continue : Uncancelable;
m_maximum = maximum;
dc.GetTextExtent(message, &widthText, NULL, NULL, NULL, NULL);
wxBoxSizer *sizer = new wxBoxSizer(wxVERTICAL);
-
+
m_msg = new wxStaticText(this, wxID_ANY, message);
sizer->Add(m_msg, 0, wxLEFT | wxTOP, 2*LAYOUT_MARGIN);
if ( hasAbortButton )
{
+#if defined(__SMARTPHONE__)
+ SetLeftMenu(wxID_CANCEL, _("Cancel"));
+ }
+#else
m_btnAbort = new wxButton(this, wxID_CANCEL);
// Windows dialogs usually have buttons in the lower right corner
sizeDlg.y += 2*LAYOUT_MARGIN + wxButton::GetDefaultSize().y;
}
else // no "Cancel" button
+#endif // __SMARTPHONE__/!__SMARTPHONE__
{
m_btnAbort = (wxButton *)NULL;
}
wxStaticText *wxProgressDialog::CreateLabel(const wxString& text,
wxSizer *sizer)
{
- wxBoxSizer *locsizer = new wxBoxSizer(wxHORIZONTAL);
+ wxBoxSizer *locsizer = new wxBoxSizer(wxLARGESMALL(wxHORIZONTAL,wxVERTICAL));
- wxStaticText *dummy = new wxStaticText(this, -1, text);
+ wxStaticText *dummy = new wxStaticText(this, wxID_ANY, text);
wxStaticText *label = new wxStaticText(this, wxID_ANY, _("unknown"));
- // VZ: I like the labels be centered - if the others don't mind, you may
- // remove "#ifdef __WXMSW__" and use it for all ports
-#if defined(__WXMSW__) || defined(__WXPM__) || defined(__WXMAC__)
- locsizer->Add(dummy, 1, wxALIGN_RIGHT);
+ // select placement most native or nice on target GUI
+#if defined(__SMARTPHONE__)
+ // label and time to the left in two rows
+ locsizer->Add(dummy, 1, wxALIGN_LEFT);
+ locsizer->Add(label, 1, wxALIGN_LEFT);
+ sizer->Add(locsizer, 0, wxALIGN_LEFT | wxTOP | wxLEFT, LAYOUT_MARGIN);
+#elif defined(__WXMSW__) || defined(__WXPM__) || defined(__WXMAC__)
+ // label and time centered in one row
+ locsizer->Add(dummy, 1, wxLARGESMALL(wxALIGN_RIGHT,wxALIGN_LEFT));
locsizer->Add(label, 1, wxALIGN_LEFT | wxLEFT, LAYOUT_MARGIN);
sizer->Add(locsizer, 0, wxALIGN_CENTER_HORIZONTAL | wxTOP, LAYOUT_MARGIN);
-#else // !MSW
+#else
+ // label and time to the right in one row
sizer->Add(locsizer, 0, wxALIGN_RIGHT | wxRIGHT | wxTOP, LAYOUT_MARGIN);
locsizer->Add(dummy);
locsizer->Add(label, 0, wxLEFT, LAYOUT_MARGIN);
-#endif // MSW/!MSW
+#endif
return label;
}
}
}
- unsigned long display_remaining = m_display_estimated - elapsed;
+ long display_remaining = m_display_estimated - elapsed;
if ( display_remaining < 0 )
{
display_remaining = 0;
m_state = Finished;
if( !(GetWindowStyle() & wxPD_AUTO_HIDE) )
{
+#if defined(__SMARTPHONE__)
+ SetLeftMenu(wxID_CANCEL, _("Close"));
+#endif
if ( m_btnAbort )
{
// tell the user what he should do...
// it may have been disabled by OnCancel(), so enable it back to let the
// user interrupt us again if needed
- m_btnAbort->Enable();
+ if(m_btnAbort)
+ m_btnAbort->Enable();
+#if defined(__SMARTPHONE__)
+ SetLeftMenu(wxID_CANCEL, _("Cancel"));
+#endif
}
bool wxProgressDialog::Show( bool show )
// update the button state immediately so that the user knows that the
// request has been noticed
- m_btnAbort->Disable();
+ if(m_btnAbort)
+ m_btnAbort->Disable();
+
+#if defined(__SMARTPHONE__)
+ SetLeftMenu();
+#endif
// save the time when the dialog was stopped
m_timeStop = wxGetCurrentTime();
{
// next Update() will notice it
m_state = Canceled;
- m_btnAbort->Disable();
+ if(m_btnAbort)
+ m_btnAbort->Disable();
+#if defined(__SMARTPHONE__)
+ SetLeftMenu();
+#endif
m_timeStop = wxGetCurrentTime();
}
}