Developer forums (C::B DEVELOPMENT STRICTLY!) > Plugins development

Updating Scripted Wizard for wxWidgets-3.0.0

<< < (2/3) > >>

Andriy:
Thank you, Xaviou! Code::Blocks + wxWidgets 3.0.0 is what I needed.

bongbang:
Is this supposed to add a wxWidgets-3.0.x option in the wizard? If so, it isn't working for me after putting the patch in the specified folder.

oBFusCATed:
C::B 13.12 should have this already...

stahta01:
I have been testing the Scripted Wizard when CB is built with wxWidgets 3.0 and found an issue.

This patch fixes the Intro display screen (for CB Plugin Wizard) from being cut-off to soon.
I have tested with wxWidgets 3.0 32 bit only on Windows.

I have only tested the CB Plugin Wizard; too tired to test the others tonight.
 


--- Code: ---Index: src/plugins/scriptedwizard/infopanel.cpp
===================================================================
--- src/plugins/scriptedwizard/infopanel.cpp (revision 9575)
+++ src/plugins/scriptedwizard/infopanel.cpp (working copy)
@@ -27,7 +27,7 @@
  //(*Initialize(InfoPanel)
  Create(parent, id, wxDefaultPosition, wxDefaultSize, wxTAB_TRAVERSAL, _T("id"));
  BoxSizer1 = new wxBoxSizer(wxVERTICAL);
- lblIntro = new wxStaticText(this, ID_STATICTEXT1, _("Welcome to the new console application wizard!\n\n\n\n\n\n\n\n\n\n\n\n\n\n"), wxDefaultPosition, wxDefaultSize, wxST_NO_AUTORESIZE, _T("ID_STATICTEXT1"));
+ lblIntro = new wxStaticText(this, ID_STATICTEXT1, _("Welcome to the new console application wizard!\n\n\n\n\n\n\n\n\n\n\n\n\n\n"), wxDefaultPosition, wxDefaultSize, 0, _T("ID_STATICTEXT1"));
  BoxSizer1->Add(lblIntro, 1, wxALL|wxEXPAND|wxALIGN_LEFT|wxALIGN_TOP, 8);
  chkSkip = new wxCheckBox(this, ID_CHECKBOX1, _("Skip this page next time"), wxDefaultPosition, wxDefaultSize, 0, wxDefaultValidator, _T("ID_CHECKBOX1"));
  chkSkip->SetValue(false);

--- End code ---

MortenMacFly:

--- Quote from: stahta01 on January 19, 2014, 08:16:31 am ---This patch fixes the Intro display screen (for CB Plugin Wizard) from being cut-off to soon.

--- End quote ---
You patched a wxSmith code portion. This is no good, or should at least also include the actual change to be done in the wxs file... :)

Navigation

[0] Message Index

[#] Next page

[*] Previous page

Go to full version