]> git.saurik.com Git - wxWidgets.git/blobdiff - src/common/resource.cpp
Now uses wxSocketBase::Error() to see if last IO call failed
[wxWidgets.git] / src / common / resource.cpp
index 5b29102a74ed850ac18a135910a322d3e8dd2798..61ad5cf33dcc2b5a03884e1d34e70c18cf14bb9a 100644 (file)
 #pragma hdrstop
 #endif
 
+#if wxUSE_WX_RESOURCES
+
+#ifdef __VISUALC__
+    #pragma warning(disable:4706)   // assignment within conditional expression
+#endif // VC++
+
 #ifndef WX_PRECOMP
 #include "wx/defs.h"
 #include "wx/setup.h"
 #include "wx/listbox.h"
 #include "wx/choice.h"
 #include "wx/checkbox.h"
+#include "wx/settings.h"
 #include "wx/slider.h"
+#include "wx/icon.h"
 #include "wx/statbox.h"
-#if USE_GAUGE
+#include "wx/statbmp.h"
 #include "wx/gauge.h"
-#endif
 #include "wx/textctrl.h"
 #include "wx/msgdlg.h"
 #include "wx/intl.h"
 #endif
 
-#if USE_SCROLLBAR
+#if wxUSE_RADIOBTN
+#include "wx/radiobut.h"
+#endif
+
+#if wxUSE_SCROLLBAR
 #include "wx/scrolbar.h"
 #endif
 
-#if USE_COMBOBOX
+#if wxUSE_COMBOBOX
 #include "wx/combobox.h"
 #endif
 
@@ -58,8 +69,6 @@
 
 #include "wx/log.h"
 
-#if USE_WX_RESOURCES
-
 #include <ctype.h>
 #include <math.h>
 #include <stdlib.h>
 #include "wx/string.h"
 #include "wx/wxexpr.h"
 
+#include "wx/settings.h"
+
 // Forward (private) declarations
-bool wxResourceInterpretResources(wxResourceTable& table, PrologDatabase& db);
-wxItemResource *wxResourceInterpretDialog(wxResourceTable& table, PrologExpr *expr, bool isPanel = FALSE);
-wxItemResource *wxResourceInterpretControl(wxResourceTable& table, PrologExpr *expr);
-wxItemResource *wxResourceInterpretMenu(wxResourceTable& table, PrologExpr *expr);
-wxItemResource *wxResourceInterpretMenuBar(wxResourceTable& table, PrologExpr *expr);
-wxItemResource *wxResourceInterpretString(wxResourceTable& table, PrologExpr *expr);
-wxItemResource *wxResourceInterpretBitmap(wxResourceTable& table, PrologExpr *expr);
-wxItemResource *wxResourceInterpretIcon(wxResourceTable& table, PrologExpr *expr);
+bool wxResourceInterpretResources(wxResourceTable& table, wxExprDatabase& db);
+wxItemResource *wxResourceInterpretDialog(wxResourceTable& table, wxExpr *expr, bool isPanel = FALSE);
+wxItemResource *wxResourceInterpretControl(wxResourceTable& table, wxExpr *expr);
+wxItemResource *wxResourceInterpretMenu(wxResourceTable& table, wxExpr *expr);
+wxItemResource *wxResourceInterpretMenuBar(wxResourceTable& table, wxExpr *expr);
+wxItemResource *wxResourceInterpretString(wxResourceTable& table, wxExpr *expr);
+wxItemResource *wxResourceInterpretBitmap(wxResourceTable& table, wxExpr *expr);
+wxItemResource *wxResourceInterpretIcon(wxResourceTable& table, wxExpr *expr);
 // Interpret list expression
-wxFont *wxResourceInterpretFontSpec(PrologExpr *expr);
+wxFont wxResourceInterpretFontSpec(wxExpr *expr);
 
-bool wxResourceReadOneResource(FILE *fd, PrologDatabase& db, bool *eof, wxResourceTable *table = NULL);
-bool wxResourceParseIncludeFile(char *f, wxResourceTable *table = NULL);
+bool wxResourceReadOneResource(FILE *fd, wxExprDatabase& db, bool *eof, wxResourceTable *table = (wxResourceTable *) NULL);
+bool wxResourceParseIncludeFile(const wxString& f, wxResourceTable *table = (wxResourceTable *) NULL);
 
-wxResourceTable *wxDefaultResourceTable = NULL;
+wxResourceTable *wxDefaultResourceTable = (wxResourceTable *) NULL;
 
-static char *wxResourceBuffer = NULL;
-static long wxResourceBufferSize = 0;
-static long wxResourceBufferCount = 0;
-static int wxResourceStringPtr = 0;
+char *wxResourceBuffer = (char *) NULL;
+long wxResourceBufferSize = 0;
+long wxResourceBufferCount = 0;
+int wxResourceStringPtr = 0;
 
-void wxInitializeResourceSystem(void)
+void wxInitializeResourceSystem()
 {
     wxDefaultResourceTable = new wxResourceTable;
 }
 
-void wxCleanUpResourceSystem(void)
+void wxCleanUpResourceSystem()
 {
     delete wxDefaultResourceTable;
+    if (wxResourceBuffer)
+        delete[] wxResourceBuffer;
 }
 
 void wxLogWarning(char *msg)
@@ -111,132 +124,57 @@ IMPLEMENT_DYNAMIC_CLASS(wxItemResource, wxObject)
 IMPLEMENT_DYNAMIC_CLASS(wxResourceTable, wxHashTable)
 #endif
 
-wxItemResource::wxItemResource(void)
+wxItemResource::wxItemResource()
 {
-  itemType = NULL;
-  title = NULL;
-  name = NULL;
-  windowStyle = 0;
-  x = y = width = height = 0;
-  value1 = value2 = value3 = value5 = 0;
-  value4 = NULL;
-  stringValues = NULL;
-  bitmap = NULL;
-  backgroundColour = labelColour = buttonColour = NULL;
-  windowFont = NULL;
+  m_itemType = "";
+  m_title = "";
+  m_name = "";
+  m_windowStyle = 0;
+  m_x = m_y = m_width = m_height = 0;
+  m_value1 = m_value2 = m_value3 = m_value5 = 0;
+  m_value4 = "";
   m_windowId = 0;
+  m_exStyle = 0;
 }
 
-wxItemResource::~wxItemResource(void)
+wxItemResource::~wxItemResource()
 {
-  if (itemType) delete[] itemType;
-  if (title) delete[] title;
-  if (name) delete[] name;
-  if (value4) delete[] value4;
-  if (stringValues)
-    delete stringValues;
-  if (bitmap)
-    delete bitmap;
-  if (backgroundColour)
-    delete backgroundColour;
-  if (labelColour)
-    delete labelColour;
-  if (buttonColour)
-    delete buttonColour;
-  wxNode *node = children.First();
+  wxNode *node = m_children.First();
   while (node)
   {
     wxItemResource *item = (wxItemResource *)node->Data();
     delete item;
     delete node;
-    node = children.First();
+    node = m_children.First();
   }
 }
 
-void wxItemResource::SetTitle(char *t)
-{
-  if (t == title)
-    return;
-    
-  if (title) delete[] title;
-  if (t)
-    title = copystring(t);
-  else
-    title = NULL;
-}
-
-void wxItemResource::SetType(char *t)
-{
-  if (itemType == t)
-    return;
-    
-  if (itemType) delete[] itemType;
-  if (t)
-    itemType = copystring(t);
-  else
-    itemType = NULL;
-}
-
-void wxItemResource::SetName(char *n)
-{
-  if (n == name)
-    return;
-    
-  if (name) delete[] name;
-  if (n)
-    name = copystring(n);
-  else
-    name = NULL;
-}
-
-void wxItemResource::SetStringValues(wxStringList *svalues)
-{
-  if (stringValues)
-    delete stringValues;
-  if (svalues)
-    stringValues = svalues;
-  else
-    stringValues = NULL;
-}
-
-void wxItemResource::SetValue4(char *v)
-{
-  if (value4 == v)
-    return;
-
-  if (value4) delete[] value4;
-  if (v)
-    value4 = copystring(v);
-  else
-    value4 = NULL;
-}
-
 /*
  * Resource table
  */
-wxResourceTable::wxResourceTable(void):wxHashTable(wxKEY_STRING), identifiers(wxKEY_STRING)
+
+wxResourceTable::wxResourceTable():wxHashTable(wxKEY_STRING), identifiers(wxKEY_STRING)
 {
 }
 
-wxResourceTable::~wxResourceTable(void)
+wxResourceTable::~wxResourceTable()
 {
   ClearTable();
 }
-    
+
 wxItemResource *wxResourceTable::FindResource(const wxString& name) const
 {
-  wxItemResource *item = (wxItemResource *)Get((char *)(const char *)name);
+  wxItemResource *item = (wxItemResource *)Get(WXSTRINGCAST name);
   return item;
 }
 
 void wxResourceTable::AddResource(wxItemResource *item)
 {
-  char *name = item->GetName();
-  if (!name)
+  wxString name = item->GetName();
+  if (name == _T(""))
     name = item->GetTitle();
-  if (!name)
-    name = "no name";
+  if (name == _T(""))
+    name = _T("no name");
 
   // Delete existing resource, if any.
   Delete(name);
@@ -246,14 +184,15 @@ void wxResourceTable::AddResource(wxItemResource *item)
 
 bool wxResourceTable::DeleteResource(const wxString& name)
 {
-  wxItemResource *item = (wxItemResource *)Delete((char *)(const char *)name);
+  wxItemResource *item = (wxItemResource *)Delete(WXSTRINGCAST name);
   if (item)
   {
     // See if any resource has this as its child; if so, delete from
     // parent's child list.
     BeginFind();
-    wxNode *node = NULL;
-    while ((node = Next()))
+    wxNode *node = (wxNode *) NULL;
+    node = Next();
+    while (node != NULL)
     {
       wxItemResource *parent = (wxItemResource *)node->Data();
       if (parent->GetChildren().Member(item))
@@ -261,8 +200,9 @@ bool wxResourceTable::DeleteResource(const wxString& name)
         parent->GetChildren().DeleteObject(item);
         break;
       }
+      node = Next();
     }
-    
+
     delete item;
     return TRUE;
   }
@@ -270,11 +210,11 @@ bool wxResourceTable::DeleteResource(const wxString& name)
     return FALSE;
 }
 
-bool wxResourceTable::ParseResourceFile(char *filename)
+bool wxResourceTable::ParseResourceFile(const wxString& filename)
 {
-  PrologDatabase db;
+  wxExprDatabase db;
 
-  FILE *fd = fopen(filename, "r");
+  FILE *fd = fopen(filename.fn_str(), "r");
   if (!fd)
     return FALSE;
   bool eof = FALSE;
@@ -286,10 +226,10 @@ bool wxResourceTable::ParseResourceFile(char *filename)
   return wxResourceInterpretResources(*this, db);
 }
 
-bool wxResourceTable::ParseResourceData(char *data)
+bool wxResourceTable::ParseResourceData(const wxString& data)
 {
-  PrologDatabase db;
-  if (!db.ReadPrologFromString(data))
+  wxExprDatabase db;
+  if (!db.ReadFromString(data))
   {
     wxLogWarning(_("Ill-formed resource file syntax."));
     return FALSE;
@@ -298,12 +238,12 @@ bool wxResourceTable::ParseResourceData(char *data)
   return wxResourceInterpretResources(*this, db);
 }
 
-bool wxResourceTable::RegisterResourceBitmapData(char *name, char bits[], int width, int height)
+bool wxResourceTable::RegisterResourceBitmapData(const wxString& name, char bits[], int width, int height)
 {
   // Register pre-loaded bitmap data
   wxItemResource *item = new wxItemResource;
 //  item->SetType(wxRESOURCE_TYPE_XBM_DATA);
-  item->SetType("wxXBMData");
+  item->SetType(_T("wxXBMData"));
   item->SetName(name);
   item->SetValue1((long)bits);
   item->SetValue2((long)width);
@@ -312,24 +252,24 @@ bool wxResourceTable::RegisterResourceBitmapData(char *name, char bits[], int wi
   return TRUE;
 }
 
-bool wxResourceTable::RegisterResourceBitmapData(char *name, char **data)
+bool wxResourceTable::RegisterResourceBitmapData(const wxString& name, char **data)
 {
   // Register pre-loaded bitmap data
   wxItemResource *item = new wxItemResource;
 //  item->SetType(wxRESOURCE_TYPE_XPM_DATA);
-  item->SetType("wxXPMData");
+  item->SetType(_T("wxXPMData"));
   item->SetName(name);
   item->SetValue1((long)data);
   AddResource(item);
   return TRUE;
 }
 
-bool wxResourceTable::SaveResource(char *WXUNUSED(filename))
+bool wxResourceTable::SaveResource(const wxString& WXUNUSED(filename))
 {
   return FALSE;
 }
 
-void wxResourceTable::ClearTable(void)
+void wxResourceTable::ClearTable()
 {
   BeginFind();
   wxNode *node = Next();
@@ -343,231 +283,223 @@ void wxResourceTable::ClearTable(void)
   }
 }
 
-wxControl *wxResourceTable::CreateItem(wxWindow *parent, wxItemResource *childResource) const
+wxControl *wxResourceTable::CreateItem(wxWindow *parent, const wxItemResource* childResource, const wxItemResource* parentResource) const
 {
   int id = childResource->GetId();
   if ( id == 0 )
    id = -1;
 
-  wxControl *control = NULL;
+  bool dlgUnits = ((parentResource->GetResourceStyle() & wxRESOURCE_DIALOG_UNITS) != 0);
+
+  wxControl *control = (wxControl *) NULL;
   wxString itemType(childResource->GetType());
-  if (itemType == wxString("wxButton") || itemType == wxString("wxBitmapButton"))
+
+  wxPoint pos;
+  wxSize size;
+  if (dlgUnits)
+  {
+    pos = parent->ConvertDialogToPixels(wxPoint(childResource->GetX(), childResource->GetY()));
+    size = parent->ConvertDialogToPixels(wxSize(childResource->GetWidth(), childResource->GetHeight()));
+  }
+  else
+  {
+    pos = wxPoint(childResource->GetX(), childResource->GetY());
+    size = wxSize(childResource->GetWidth(), childResource->GetHeight());
+  }
+
+  if (itemType == wxString(_T("wxButton")) || itemType == wxString(_T("wxBitmapButton")))
       {
-        if (childResource->GetValue4())
+        if (childResource->GetValue4() != _T(""))
         {
           // Bitmap button
-          wxBitmap *bitmap = childResource->GetBitmap();
-          if (!bitmap)
+          wxBitmap bitmap = childResource->GetBitmap();
+          if (!bitmap.Ok())
           {
             bitmap = wxResourceCreateBitmap(childResource->GetValue4(), (wxResourceTable *)this);
-            childResource->SetBitmap(bitmap);
+            ((wxItemResource*) childResource)->SetBitmap(bitmap);
           }
-          if (bitmap)
-           control = new wxBitmapButton(parent, id, *bitmap,
-             wxPoint(childResource->GetX(), childResource->GetY()),
-          wxSize(childResource->GetWidth(), childResource->GetHeight()),
+          if (bitmap.Ok())
+           control = new wxBitmapButton(parent, id, bitmap, pos, size,
                childResource->GetStyle(), wxDefaultValidator, childResource->GetName());
         }
         else
           // Normal, text button
-          control = new wxButton(parent, id, childResource->GetTitle(),
-           wxPoint(childResource->GetX(), childResource->GetY()),
-         wxSize(childResource->GetWidth(), childResource->GetHeight()),
+          control = new wxButton(parent, id, childResource->GetTitle(), pos, size,
            childResource->GetStyle(), wxDefaultValidator, childResource->GetName());
       }
-   else if (itemType == wxString("wxMessage") || itemType == wxString("wxStaticText") ||
-         itemType == wxString("wxStaticBitmap"))
+   else if (itemType == wxString(_T("wxMessage")) || itemType == wxString(_T("wxStaticText")) ||
+         itemType == wxString(_T("wxStaticBitmap")))
       {
-        if (childResource->GetValue4())
+        if (childResource->GetValue4() != _T(""))
         {
           // Bitmap message
-          wxBitmap *bitmap = childResource->GetBitmap();
-          if (!bitmap)
+          wxBitmap bitmap = childResource->GetBitmap();
+          if (!bitmap.Ok())
           {
             bitmap = wxResourceCreateBitmap(childResource->GetValue4(), (wxResourceTable *)this);
-            childResource->SetBitmap(bitmap);
+            ((wxItemResource*) childResource)->SetBitmap(bitmap);
           }
-#if USE_BITMAP_MESSAGE
-          if (bitmap)
-           control = new wxStaticBitmap(parent, id, *bitmap,
-             wxPoint(childResource->GetX(), childResource->GetY()),
-          wxSize(childResource->GetWidth(), childResource->GetHeight()),
+#if wxUSE_BITMAP_MESSAGE
+          if (bitmap.Ok())
+           control = new wxStaticBitmap(parent, id, bitmap, pos, size,
              childResource->GetStyle(), childResource->GetName());
 #endif
         }
         else
         {
-           control = new wxStaticText(parent, id, childResource->GetTitle(),
-             wxPoint(childResource->GetX(), childResource->GetY()),
-          wxSize(childResource->GetWidth(), childResource->GetHeight()),
+           control = new wxStaticText(parent, id, childResource->GetTitle(), pos, size,
              childResource->GetStyle(), childResource->GetName());
         }
       }
-   else if (itemType == wxString("wxText") || itemType == wxString("wxTextCtrl") || itemType == wxString("wxMultiText"))
+   else if (itemType == wxString(_T("wxText")) || itemType == wxString(_T("wxTextCtrl")) || itemType == wxString(_T("wxMultiText")))
       {
-        control = new wxTextCtrl(parent, id, childResource->GetValue4(),
-           wxPoint(childResource->GetX(), childResource->GetY()),
-         wxSize(childResource->GetWidth(), childResource->GetHeight()),
+        control = new wxTextCtrl(parent, id, childResource->GetValue4(), pos, size,
            childResource->GetStyle(), wxDefaultValidator, childResource->GetName());
       }
-   else if (itemType == wxString("wxCheckBox"))
+   else if (itemType == wxString(_T("wxCheckBox")))
       {
-        control = new wxCheckBox(parent, id, childResource->GetTitle(),
-           wxPoint(childResource->GetX(), childResource->GetY()),
-         wxSize(childResource->GetWidth(), childResource->GetHeight()),
+        control = new wxCheckBox(parent, id, childResource->GetTitle(), pos, size,
            childResource->GetStyle(), wxDefaultValidator, childResource->GetName());
 
         ((wxCheckBox *)control)->SetValue((childResource->GetValue1() != 0));
       }
-#if USE_GAUGE
-   else if (itemType == wxString("wxGauge"))
+#if wxUSE_GAUGE
+   else if (itemType == wxString(_T("wxGauge")))
       {
-        control = new wxGauge(parent, id, (int)childResource->GetValue2(),
-           wxPoint(childResource->GetX(), childResource->GetY()),
-         wxSize(childResource->GetWidth(), childResource->GetHeight()),
+        control = new wxGauge(parent, id, (int)childResource->GetValue2(), pos, size,
            childResource->GetStyle(), wxDefaultValidator, childResource->GetName());
 
         ((wxGauge *)control)->SetValue((int)childResource->GetValue1());
       }
 #endif
-#if USE_RADIOBUTTON
-   else if (itemType == wxString("wxRadioButton"))
+#if wxUSE_RADIOBTN
+   else if (itemType == wxString(_T("wxRadioButton")))
       {
         control = new wxRadioButton(parent, id, childResource->GetTitle(), // (int)childResource->GetValue1(),
-           wxPoint(childResource->GetX(), childResource->GetY()),
-         wxSize(childResource->GetWidth(), childResource->GetHeight()),
+           pos, size,
            childResource->GetStyle(), wxDefaultValidator, childResource->GetName());
       }
 #endif
-#if USE_SCROLLBAR
-   else if (itemType == wxString("wxScrollBar"))
+#if wxUSE_SCROLLBAR
+   else if (itemType == wxString(_T("wxScrollBar")))
       {
-        control = new wxScrollBar(parent, id,
-           wxPoint(childResource->GetX(), childResource->GetY()),
-           wxSize(childResource->GetWidth(), childResource->GetHeight()),
+        control = new wxScrollBar(parent, id, pos, size,
            childResource->GetStyle(), wxDefaultValidator, childResource->GetName());
+/*
         ((wxScrollBar *)control)->SetValue((int)childResource->GetValue1());
         ((wxScrollBar *)control)->SetPageSize((int)childResource->GetValue2());
         ((wxScrollBar *)control)->SetObjectLength((int)childResource->GetValue3());
         ((wxScrollBar *)control)->SetViewLength((int)(long)childResource->GetValue5());
+*/
+               ((wxScrollBar *)control)->SetScrollbar((int)childResource->GetValue1(),(int)childResource->GetValue2(),
+                       (int)childResource->GetValue3(),(int)(long)childResource->GetValue5(),FALSE);
+
       }
 #endif
-   else if (itemType == wxString("wxSlider"))
+   else if (itemType == wxString(_T("wxSlider")))
       {
         control = new wxSlider(parent, id, (int)childResource->GetValue1(),
-           (int)childResource->GetValue2(), (int)childResource->GetValue3(),
-           wxPoint(childResource->GetX(), childResource->GetY()),
-           wxSize(childResource->GetWidth(), childResource->GetHeight()),
+           (int)childResource->GetValue2(), (int)childResource->GetValue3(), pos, size,
            childResource->GetStyle(), wxDefaultValidator, childResource->GetName());
       }
-   else if (itemType == wxString("wxGroupBox") || itemType == wxString("wxStaticBox"))
+   else if (itemType == wxString(_T("wxGroupBox")) || itemType == wxString(_T("wxStaticBox")))
       {
-        control = new wxStaticBox(parent, id, childResource->GetTitle(),
-           wxPoint(childResource->GetX(), childResource->GetY()),
-         wxSize(childResource->GetWidth(), childResource->GetHeight()),
+        control = new wxStaticBox(parent, id, childResource->GetTitle(), pos, size,
            childResource->GetStyle(), childResource->GetName());
       }
-   else if (itemType == wxString("wxListBox"))
+   else if (itemType == wxString(_T("wxListBox")))
       {
-        wxStringList *stringList = childResource->GetStringValues();
-        wxString *strings = NULL;
+        wxStringListstringList = childResource->GetStringValues();
+        wxString *strings = (wxString *) NULL;
         int noStrings = 0;
-        if (stringList && (stringList->Number() > 0))
+        if (stringList.Number() > 0)
         {
-          noStrings = stringList->Number();
+          noStrings = stringList.Number();
           strings = new wxString[noStrings];
-          wxNode *node = stringList->First();
+          wxNode *node = stringList.First();
           int i = 0;
           while (node)
           {
-            strings[i] = (char *)node->Data();
+            strings[i] = (wxChar *)node->Data();
             i ++;
             node = node->Next();
           }
         }
-        control = new wxListBox(parent, id,
-           wxPoint(childResource->GetX(), childResource->GetY()),
-         wxSize(childResource->GetWidth(), childResource->GetHeight()),
+        control = new wxListBox(parent, id, pos, size,
            noStrings, strings, childResource->GetStyle(), wxDefaultValidator, childResource->GetName());
 
         if (strings)
           delete[] strings;
       }
-   else if (itemType == wxString("wxChoice"))
+   else if (itemType == wxString(_T("wxChoice")))
       {
-        wxStringList *stringList = childResource->GetStringValues();
-        wxString *strings = NULL;
+        wxStringListstringList = childResource->GetStringValues();
+        wxString *strings = (wxString *) NULL;
         int noStrings = 0;
-        if (stringList && (stringList->Number() > 0))
+        if (stringList.Number() > 0)
         {
-          noStrings = stringList->Number();
+          noStrings = stringList.Number();
           strings = new wxString[noStrings];
-          wxNode *node = stringList->First();
+          wxNode *node = stringList.First();
           int i = 0;
           while (node)
           {
-            strings[i] = (char *)node->Data();
+            strings[i] = (wxChar *)node->Data();
             i ++;
             node = node->Next();
           }
         }
-        control = new wxChoice(parent, id,
-           wxPoint(childResource->GetX(), childResource->GetY()),
-         wxSize(childResource->GetWidth(), childResource->GetHeight()),
+        control = new wxChoice(parent, id, pos, size,
            noStrings, strings, childResource->GetStyle(), wxDefaultValidator, childResource->GetName());
 
         if (strings)
           delete[] strings;
       }
-#if USE_COMBOBOX
-   else if (itemType == wxString("wxComboBox"))
+#if wxUSE_COMBOBOX
+   else if (itemType == wxString(_T("wxComboBox")))
       {
-        wxStringList *stringList = childResource->GetStringValues();
-        wxString *strings = NULL;
+        wxStringListstringList = childResource->GetStringValues();
+        wxString *strings = (wxString *) NULL;
         int noStrings = 0;
-        if (stringList && (stringList->Number() > 0))
+        if (stringList.Number() > 0)
         {
-          noStrings = stringList->Number();
+          noStrings = stringList.Number();
           strings = new wxString[noStrings];
-          wxNode *node = stringList->First();
+          wxNode *node = stringList.First();
           int i = 0;
           while (node)
           {
-            strings[i] = (char *)node->Data();
+            strings[i] = (wxChar *)node->Data();
             i ++;
             node = node->Next();
           }
         }
-        control = new wxComboBox(parent, id, childResource->GetValue4(),
-           wxPoint(childResource->GetX(), childResource->GetY()),
-         wxSize(childResource->GetWidth(), childResource->GetHeight()),
+        control = new wxComboBox(parent, id, childResource->GetValue4(), pos, size,
            noStrings, strings, childResource->GetStyle(), wxDefaultValidator, childResource->GetName());
 
         if (strings)
           delete[] strings;
       }
 #endif
-   else if (itemType == wxString("wxRadioBox"))
+   else if (itemType == wxString(_T("wxRadioBox")))
       {
-        wxStringList *stringList = childResource->GetStringValues();
-        wxString *strings = NULL;
+        wxStringListstringList = childResource->GetStringValues();
+        wxString *strings = (wxString *) NULL;
         int noStrings = 0;
-        if (stringList && (stringList->Number() > 0))
+        if (stringList.Number() > 0)
         {
-          noStrings = stringList->Number();
+          noStrings = stringList.Number();
           strings = new wxString[noStrings];
-          wxNode *node = stringList->First();
+          wxNode *node = stringList.First();
           int i = 0;
           while (node)
           {
-            strings[i] = (char *)node->Data();
+            strings[i] = (wxChar *)node->Data();
             i ++;
             node = node->Next();
           }
         }
-        control = new wxRadioBox(parent, (wxWindowID) id, wxString(childResource->GetTitle()),
-           wxPoint(childResource->GetX(), childResource->GetY()),
-         wxSize(childResource->GetWidth(), childResource->GetHeight()),
+        control = new wxRadioBox(parent, (wxWindowID) id, wxString(childResource->GetTitle()), pos, size,
            noStrings, strings, (int)childResource->GetValue1(), childResource->GetStyle(), wxDefaultValidator,
          childResource->GetName());
 
@@ -575,8 +507,15 @@ wxControl *wxResourceTable::CreateItem(wxWindow *parent, wxItemResource *childRe
           delete[] strings;
       }
 
-  if (control && childResource->GetFont())
-    control->SetFont(*childResource->GetFont());
+  if ((parentResource->GetResourceStyle() & wxRESOURCE_USE_DEFAULTS) != 0)
+  {
+    // Don't set font; will be inherited from parent.
+  }
+  else
+  {
+    if (control && childResource->GetFont().Ok())
+      control->SetFont(childResource->GetFont());
+  }
   return control;
 }
 
@@ -584,34 +523,34 @@ wxControl *wxResourceTable::CreateItem(wxWindow *parent, wxItemResource *childRe
  * Interpret database as a series of resources
  */
 
-bool wxResourceInterpretResources(wxResourceTable& table, PrologDatabase& db)
+bool wxResourceInterpretResources(wxResourceTable& table, wxExprDatabase& db)
 {
   wxNode *node = db.First();
   while (node)
   {
-    PrologExpr *clause = (PrologExpr *)node->Data();
+    wxExpr *clause = (wxExpr *)node->Data();
    wxString functor(clause->Functor());
 
-    wxItemResource *item = NULL;
-    if (functor == "dialog")
+    wxItemResource *item = (wxItemResource *) NULL;
+    if (functor == _T("dialog"))
       item = wxResourceInterpretDialog(table, clause);
-    else if (functor == "panel")
+    else if (functor == _T("panel"))
       item = wxResourceInterpretDialog(table, clause, TRUE);
-    else if (functor == "menubar")
+    else if (functor == _T("menubar"))
       item = wxResourceInterpretMenuBar(table, clause);
-    else if (functor == "menu")
+    else if (functor == _T("menu"))
       item = wxResourceInterpretMenu(table, clause);
-    else if (functor == "string")
+    else if (functor == _T("string"))
       item = wxResourceInterpretString(table, clause);
-    else if (functor == "bitmap")
+    else if (functor == _T("bitmap"))
       item = wxResourceInterpretBitmap(table, clause);
-    else if (functor == "icon")
+    else if (functor == _T("icon"))
       item = wxResourceInterpretIcon(table, clause);
 
     if (item)
     {
       // Remove any existing resource of same name
-      if (item->GetName())
+      if (item->GetName() != _T(""))
         table.DeleteResource(item->GetName());
       table.AddResource(item);
     }
@@ -620,17 +559,33 @@ bool wxResourceInterpretResources(wxResourceTable& table, PrologDatabase& db)
   return TRUE;
 }
 
-static char *g_ValidControlClasses[] = { "wxButton", "wxBitmapButton", "wxMessage",
- "wxStaticText", "wxStaticBitmap", "wxText", "wxTextCtrl", "wxMultiText",
- "wxListBox", "wxRadioBox", "wxRadioButton", "wxCheckBox", "wxBitmapCheckBox",
- "wxGroupBox", "wxStaticBox", "wxSlider", "wxGauge", "wxScrollBar",
- "wxChoice", "wxComboBox" } ;
-static int g_ValidControlClassesCount = sizeof(g_ValidControlClasses) / sizeof(char *) ;
+static const wxChar *g_ValidControlClasses[] =
+{
+    _T("wxButton"),
+    _T("wxBitmapButton"),
+    _T("wxMessage"),
+    _T("wxStaticText"),
+    _T("wxStaticBitmap"),
+    _T("wxText"),
+    _T("wxTextCtrl"),
+    _T("wxMultiText"),
+    _T("wxListBox"),
+    _T("wxRadioBox"),
+    _T("wxRadioButton"),
+    _T("wxCheckBox"),
+    _T("wxBitmapCheckBox"),
+    _T("wxGroupBox"),
+    _T("wxStaticBox"),
+    _T("wxSlider"),
+    _T("wxGauge"),
+    _T("wxScrollBar"),
+    _T("wxChoice"),
+    _T("wxComboBox")
+};
 
 static bool wxIsValidControlClass(const wxString& c)
 {
-   int i;
-   for ( i = 0; i < g_ValidControlClassesCount; i++)
+   for ( size_t i = 0; i < WXSIZEOF(g_ValidControlClasses); i++ )
    {
       if ( c == g_ValidControlClasses[i] )
          return TRUE;
@@ -638,101 +593,102 @@ static bool wxIsValidControlClass(const wxString& c)
    return FALSE;
 }
 
-wxItemResource *wxResourceInterpretDialog(wxResourceTable& table, PrologExpr *expr, bool isPanel)
+wxItemResource *wxResourceInterpretDialog(wxResourceTable& table, wxExpr *expr, bool isPanel)
 {
   wxItemResource *dialogItem = new wxItemResource;
   if (isPanel)
-    dialogItem->SetType("wxPanel");
+    dialogItem->SetType(_T("wxPanel"));
   else
-    dialogItem->SetType("wxDialog");
-  char *style = NULL;
-  char *title = NULL;
-  char *name = NULL;
-  char *backColourHex = NULL;
-  char *labelColourHex = NULL;
-  char *buttonColourHex = NULL;
+    dialogItem->SetType(_T("wxDialog"));
+  wxString style = _T("");
+  wxString title = _T("");
+  wxString name = _T("");
+  wxString backColourHex = _T("");
+  wxString labelColourHex = _T("");
+  wxString buttonColourHex = _T("");
 
   long windowStyle = wxDEFAULT_DIALOG_STYLE;
   if (isPanel)
     windowStyle = 0;
-    
+
   int x = 0; int y = 0; int width = -1; int height = -1;
   int isModal = 0;
-  PrologExpr *labelFontExpr = NULL;
-  PrologExpr *buttonFontExpr = NULL;
-  PrologExpr *fontExpr = NULL;
-  expr->AssignAttributeValue("style", &style);
-  expr->AssignAttributeValue("name", &name);
-  expr->AssignAttributeValue("title", &title);
-  expr->AssignAttributeValue("x", &x);
-  expr->AssignAttributeValue("y", &y);
-  expr->AssignAttributeValue("width", &width);
-  expr->AssignAttributeValue("height", &height);
-  expr->AssignAttributeValue("modal", &isModal);
-  expr->AssignAttributeValue("label_font", &labelFontExpr);
-  expr->AssignAttributeValue("button_font", &buttonFontExpr);
-  expr->AssignAttributeValue("font", &fontExpr);
-  expr->AssignAttributeValue("background_colour", &backColourHex);
-  expr->AssignAttributeValue("label_colour", &labelColourHex);
-  expr->AssignAttributeValue("button_colour", &buttonColourHex);
+  wxExpr *labelFontExpr = (wxExpr *) NULL;
+  wxExpr *buttonFontExpr = (wxExpr *) NULL;
+  wxExpr *fontExpr = (wxExpr *) NULL;
+  expr->GetAttributeValue(_T("style"), style);
+  expr->GetAttributeValue(_T("name"), name);
+  expr->GetAttributeValue(_T("title"), title);
+  expr->GetAttributeValue(_T("x"), x);
+  expr->GetAttributeValue(_T("y"), y);
+  expr->GetAttributeValue(_T("width"), width);
+  expr->GetAttributeValue(_T("height"), height);
+  expr->GetAttributeValue(_T("modal"), isModal);
+  expr->GetAttributeValue(_T("label_font"), &labelFontExpr);
+  expr->GetAttributeValue(_T("button_font"), &buttonFontExpr);
+  expr->GetAttributeValue(_T("font"), &fontExpr);
+  expr->GetAttributeValue(_T("background_colour"), backColourHex);
+  expr->GetAttributeValue(_T("label_colour"), labelColourHex);
+  expr->GetAttributeValue(_T("button_colour"), buttonColourHex);
+
+  int useDialogUnits = 0;
+  expr->GetAttributeValue(_T("use_dialog_units"), useDialogUnits);
+  if (useDialogUnits != 0)
+    dialogItem->SetResourceStyle(dialogItem->GetResourceStyle() | wxRESOURCE_DIALOG_UNITS);
+
+  int useDefaults = 0;
+  expr->GetAttributeValue(_T("use_system_defaults"), useDefaults);
+  if (useDefaults != 0)
+    dialogItem->SetResourceStyle(dialogItem->GetResourceStyle() | wxRESOURCE_USE_DEFAULTS);
 
   long id = 0;
-  expr->GetAttributeValue("id", id);
+  expr->GetAttributeValue(_T("id"), id);
   dialogItem->SetId(id);
 
-  if (style)
+  if (style != _T(""))
   {
     windowStyle = wxParseWindowStyle(style);
   }
   dialogItem->SetStyle(windowStyle);
   dialogItem->SetValue1(isModal);
-  if (name)
-    dialogItem->SetName(name);
-  if (title)
-    dialogItem->SetTitle(title);
+  if (windowStyle & wxDIALOG_MODAL) // Uses style in wxWin 2
+    dialogItem->SetValue1(TRUE);
+
+  dialogItem->SetName(name);
+  dialogItem->SetTitle(title);
   dialogItem->SetSize(x, y, width, height);
-  
-  if (backColourHex)
+
+  if (backColourHex != _T(""))
   {
     int r = 0;
     int g = 0;
     int b = 0;
-    r = wxHexToDec(backColourHex);
-    g = wxHexToDec(backColourHex+2);
-    b = wxHexToDec(backColourHex+4);
-    dialogItem->SetBackgroundColour(new wxColour((unsigned char)r,(unsigned char)g,(unsigned char)b));
-    delete[] backColourHex;
+    r = wxHexToDec(backColourHex.Mid(0, 2));
+    g = wxHexToDec(backColourHex.Mid(2, 2));
+    b = wxHexToDec(backColourHex.Mid(4, 2));
+    dialogItem->SetBackgroundColour(wxColour((unsigned char)r,(unsigned char)g,(unsigned char)b));
   }
-  if (labelColourHex)
+  if (labelColourHex != _T(""))
   {
     int r = 0;
     int g = 0;
     int b = 0;
-    r = wxHexToDec(labelColourHex);
-    g = wxHexToDec(labelColourHex+2);
-    b = wxHexToDec(labelColourHex+4);
-    dialogItem->SetLabelColour(new wxColour((unsigned char)r,(unsigned char)g,(unsigned char)b));
-    delete[] labelColourHex;
+    r = wxHexToDec(labelColourHex.Mid(0, 2));
+    g = wxHexToDec(labelColourHex.Mid(2, 2));
+    b = wxHexToDec(labelColourHex.Mid(4, 2));
+    dialogItem->SetLabelColour(wxColour((unsigned char)r,(unsigned char)g,(unsigned char)b));
   }
-  if (buttonColourHex)
+  if (buttonColourHex != _T(""))
   {
     int r = 0;
     int g = 0;
     int b = 0;
-    r = wxHexToDec(buttonColourHex);
-    g = wxHexToDec(buttonColourHex+2);
-    b = wxHexToDec(buttonColourHex+4);
-    dialogItem->SetButtonColour(new wxColour((unsigned char)r,(unsigned char)g,(unsigned char)b));
-    delete[] buttonColourHex;
+    r = wxHexToDec(buttonColourHex.Mid(0, 2));
+    g = wxHexToDec(buttonColourHex.Mid(2, 2));
+    b = wxHexToDec(buttonColourHex.Mid(4, 2));
+    dialogItem->SetButtonColour(wxColour((unsigned char)r,(unsigned char)g,(unsigned char)b));
   }
 
-  if (name)
-    delete[] name;
-  if (title)
-    delete[] title;
-  if (style)
-    delete[] style;
-
   if (fontExpr)
     dialogItem->SetFont(wxResourceInterpretFontSpec(fontExpr));
   else if (buttonFontExpr)
@@ -741,16 +697,16 @@ wxItemResource *wxResourceInterpretDialog(wxResourceTable& table, PrologExpr *ex
     dialogItem->SetFont(wxResourceInterpretFontSpec(labelFontExpr));
 
   // Now parse all controls
-  PrologExpr *controlExpr = expr->GetFirst();
+  wxExpr *controlExpr = expr->GetFirst();
   while (controlExpr)
   {
     if (controlExpr->Number() == 3)
     {
       wxString controlKeyword(controlExpr->Nth(1)->StringValue());
-      if (controlKeyword != "" && controlKeyword == "control")
+      if (controlKeyword != _T("") && controlKeyword == _T("control"))
       {
         // The value part: always a list.
-        PrologExpr *listExpr = controlExpr->Nth(2);
+        wxExpr *listExpr = controlExpr->Nth(2);
         if (listExpr->Type() == PrologList)
         {
           wxItemResource *controlItem = wxResourceInterpretControl(table, listExpr);
@@ -766,7 +722,7 @@ wxItemResource *wxResourceInterpretDialog(wxResourceTable& table, PrologExpr *ex
   return dialogItem;
 }
 
-wxItemResource *wxResourceInterpretControl(wxResourceTable& table, PrologExpr *expr)
+wxItemResource *wxResourceInterpretControl(wxResourceTable& table, wxExpr *expr)
 {
   wxItemResource *controlItem = new wxItemResource;
 
@@ -782,7 +738,7 @@ wxItemResource *wxResourceInterpretControl(wxResourceTable& table, PrologExpr *e
   int x = 0; int y = 0; int width = -1; int height = -1;
   int count = 0;
 
-  PrologExpr *expr1 = expr->Nth(0);
+  wxExpr *expr1 = expr->Nth(0);
 
   if ( expr1->Type() == PrologString || expr1->Type() == PrologWord )
   {
@@ -794,15 +750,15 @@ wxItemResource *wxResourceInterpretControl(wxResourceTable& table, PrologExpr *e
    else
    {
         wxString str(expr1->StringValue());
-        id = wxResourceGetIdentifier(WXSTRINGCAST str, &table);
+        id = wxResourceGetIdentifier(str, &table);
         if (id == 0)
         {
           wxLogWarning(_("Could not resolve control class or id '%s'. "
                          "Use (non-zero) integer instead\n or provide #define "
                          "(see manual for caveats)"),
-                         (const char*) expr1->StringValue());
+                         (const wxChar*) expr1->StringValue());
         delete controlItem;
-        return NULL;
+        return (wxItemResource *) NULL;
         }
       else
       {
@@ -830,7 +786,7 @@ wxItemResource *wxResourceInterpretControl(wxResourceTable& table, PrologExpr *e
   if (expr1)
   {
     style = expr1->StringValue();
-    windowStyle = wxParseWindowStyle(WXSTRINGCAST style);
+    windowStyle = wxParseWindowStyle(style);
   }
 
   expr1 = expr->Nth(count);
@@ -859,25 +815,42 @@ wxItemResource *wxResourceInterpretControl(wxResourceTable& table, PrologExpr *e
     height = (int)expr1->IntegerValue();
 
   controlItem->SetStyle(windowStyle);
-  controlItem->SetName(WXSTRINGCAST name);
-  controlItem->SetTitle(WXSTRINGCAST title);
+  controlItem->SetName(name);
+  controlItem->SetTitle(title);
   controlItem->SetSize(x, y, width, height);
-  controlItem->SetType(WXSTRINGCAST controlType);
+  controlItem->SetType(controlType);
   controlItem->SetId(id);
 
-  if (controlType == "wxButton")
+  if (controlType == _T("wxButton"))
+  {
+    // Check for bitmap resource name (in case loading old-style resource file)
+    if (expr->Nth(count) && ((expr->Nth(count)->Type() == PrologString) || (expr->Nth(count)->Type() == PrologWord)))
+    {
+        wxString str(expr->Nth(count)->StringValue());
+        count ++;
+
+        if (str != _T(""))
+        {
+            controlItem->SetValue4(str);
+            controlItem->SetType(_T("wxBitmapButton"));
+        }
+    }
+    if (expr->Nth(count) && expr->Nth(count)->Type() == PrologList)
+      controlItem->SetFont(wxResourceInterpretFontSpec(expr->Nth(count)));
+  }
+  else if (controlType == _T("wxBitmapButton"))
   {
     // Check for bitmap resource name
     if (expr->Nth(count) && ((expr->Nth(count)->Type() == PrologString) || (expr->Nth(count)->Type() == PrologWord)))
     {
         wxString str(expr->Nth(count)->StringValue());
-        controlItem->SetValue4(WXSTRINGCAST str);
+        controlItem->SetValue4(str);
         count ++;
         if (expr->Nth(count) && expr->Nth(count)->Type() == PrologList)
           controlItem->SetFont(wxResourceInterpretFontSpec(expr->Nth(count)));
     }
   }
-  else if (controlType == "wxCheckBox")
+  else if (controlType == _T("wxCheckBox"))
   {
     // Check for default value
     if (expr->Nth(count) && (expr->Nth(count)->Type() == PrologInteger))
@@ -888,8 +861,8 @@ wxItemResource *wxResourceInterpretControl(wxResourceTable& table, PrologExpr *e
         controlItem->SetFont(wxResourceInterpretFontSpec(expr->Nth(count)));
     }
   }
-#if USE_RADIOBUTTON
-  else if (controlType == "wxRadioButton")
+#if wxUSE_RADIOBTN
+  else if (controlType == _T("wxRadioButton"))
   {
     // Check for default value
     if (expr->Nth(count) && (expr->Nth(count)->Type() == PrologInteger))
@@ -901,13 +874,13 @@ wxItemResource *wxResourceInterpretControl(wxResourceTable& table, PrologExpr *e
     }
   }
 #endif
-  else if (controlType == "wxText" || controlType == "wxTextCtrl")
+  else if (controlType == _T("wxText") || controlType == _T("wxTextCtrl") || controlType == _T("wxMultiText"))
   {
     // Check for default value
     if (expr->Nth(count) && ((expr->Nth(count)->Type() == PrologString) || (expr->Nth(count)->Type() == PrologWord)))
    {
       wxString str(expr->Nth(count)->StringValue());
-      controlItem->SetValue4(WXSTRINGCAST str);
+      controlItem->SetValue4(str);
      count ++;
 
       if (expr->Nth(count) && expr->Nth(count)->Type() == PrologList)
@@ -920,24 +893,37 @@ wxItemResource *wxResourceInterpretControl(wxResourceTable& table, PrologExpr *e
      }
    }
   }
-  else if (controlType == "wxMessage" || controlType == "wxStaticText")
+  else if (controlType == _T("wxMessage") || controlType == _T("wxStaticText"))
+  {
+    // Check for bitmap resource name (in case it's an old-style .wxr file)
+    if (expr->Nth(count) && ((expr->Nth(count)->Type() == PrologString) || (expr->Nth(count)->Type() == PrologWord)))
+    {
+      wxString str(expr->Nth(count)->StringValue());
+      controlItem->SetValue4(str);
+      count ++;
+      controlItem->SetType(_T("wxStaticText"));
+    }
+    if (expr->Nth(count) && expr->Nth(count)->Type() == PrologList)
+      controlItem->SetFont(wxResourceInterpretFontSpec(expr->Nth(count)));
+  }
+  else if (controlType == _T("wxStaticBitmap"))
   {
     // Check for bitmap resource name
     if (expr->Nth(count) && ((expr->Nth(count)->Type() == PrologString) || (expr->Nth(count)->Type() == PrologWord)))
     {
       wxString str(expr->Nth(count)->StringValue());
-      controlItem->SetValue4(WXSTRINGCAST str);
+      controlItem->SetValue4(str);
       count ++;
-      if (expr->Nth(count) && expr->Nth(count)->Type() == PrologList)
-        controlItem->SetFont(wxResourceInterpretFontSpec(expr->Nth(count)));
     }
+    if (expr->Nth(count) && expr->Nth(count)->Type() == PrologList)
+      controlItem->SetFont(wxResourceInterpretFontSpec(expr->Nth(count)));
   }
-  else if (controlType == "wxGroupBox" || controlType == "wxStaticBox")
+  else if (controlType == _T("wxGroupBox") || controlType == _T("wxStaticBox"))
   {
     if (expr->Nth(count) && expr->Nth(count)->Type() == PrologList)
       controlItem->SetFont(wxResourceInterpretFontSpec(expr->Nth(count)));
   }
-  else if (controlType == "wxGauge")
+  else if (controlType == _T("wxGauge"))
   {
     // Check for default value
     if (expr->Nth(count) && (expr->Nth(count)->Type() == PrologInteger))
@@ -963,7 +949,7 @@ wxItemResource *wxResourceInterpretControl(wxResourceTable& table, PrologExpr *e
      }
    }
   }
-  else if (controlType == "wxSlider")
+  else if (controlType == _T("wxSlider"))
   {
     // Check for default value
     if (expr->Nth(count) && (expr->Nth(count)->Type() == PrologInteger))
@@ -996,7 +982,7 @@ wxItemResource *wxResourceInterpretControl(wxResourceTable& table, PrologExpr *e
      }
    }
   }
-  else if (controlType == "wxScrollBar")
+  else if (controlType == _T("wxScrollBar"))
   {
     // DEFAULT VALUE
     if (expr->Nth(count) && (expr->Nth(count)->Type() == PrologInteger))
@@ -1023,54 +1009,59 @@ wxItemResource *wxResourceInterpretControl(wxResourceTable& table, PrologExpr *e
      }
    }
   }
-  else if (controlType == "wxListBox")
+  else if (controlType == _T("wxListBox"))
   {
-    PrologExpr *valueList = NULL;
+    wxExpr *valueList = (wxExpr *) NULL;
 
     if ((valueList = expr->Nth(count)) && (valueList->Type() == PrologList))
     {
-      wxStringList *stringList = new wxStringList;
-      PrologExpr *stringExpr = valueList->GetFirst();
+      wxStringList stringList;
+      wxExpr *stringExpr = valueList->GetFirst();
       while (stringExpr)
       {
-        stringList->Add(stringExpr->StringValue());
+        stringList.Add(stringExpr->StringValue());
         stringExpr = stringExpr->GetNext();
       }
       controlItem->SetStringValues(stringList);
      count ++;
-
+// This is now obsolete: it's in the window style.
       // Check for wxSINGLE/wxMULTIPLE
-      PrologExpr *mult = NULL;
+      wxExpr *mult = (wxExpr *) NULL;
+/*
       controlItem->SetValue1(wxLB_SINGLE);
+*/
       if ((mult = expr->Nth(count)) && ((mult->Type() == PrologString)||(mult->Type() == PrologWord)))
       {
+/*
         wxString m(mult->StringValue());
-        if (m == "wxMULTIPLE")
+        if (m == "wxLB_MULTIPLE")
           controlItem->SetValue1(wxLB_MULTIPLE);
-        else if (m == "wxEXTENDED")
+        else if (m == "wxLB_EXTENDED")
           controlItem->SetValue1(wxLB_EXTENDED);
+*/
+       // Ignore the value
        count ++;
-        if (expr->Nth(count) && expr->Nth(count)->Type() == PrologList)
-       {
-          // controlItem->SetLabelFont(wxResourceInterpretFontSpec(expr->Nth(count)));
+      }
+      if (expr->Nth(count) && expr->Nth(count)->Type() == PrologList)
+      {
+         // controlItem->SetLabelFont(wxResourceInterpretFontSpec(expr->Nth(count)));
          count ++;
-          if (expr->Nth(count) && expr->Nth(count)->Type() == PrologList)
-            controlItem->SetFont(wxResourceInterpretFontSpec(expr->Nth(count)));
-       }
-     }
+         if (expr->Nth(count) && expr->Nth(count)->Type() == PrologList)
+           controlItem->SetFont(wxResourceInterpretFontSpec(expr->Nth(count)));
+      }
    }
   }
-  else if (controlType == "wxChoice")
+  else if (controlType == _T("wxChoice"))
   {
-    PrologExpr *valueList = NULL;
+    wxExpr *valueList = (wxExpr *) NULL;
     // Check for default value list
     if ((valueList = expr->Nth(count)) && (valueList->Type() == PrologList))
     {
-      wxStringList *stringList = new wxStringList;
-      PrologExpr *stringExpr = valueList->GetFirst();
+      wxStringList stringList;
+      wxExpr *stringExpr = valueList->GetFirst();
       while (stringExpr)
       {
-        stringList->Add(stringExpr->StringValue());
+        stringList.Add(stringExpr->StringValue());
         stringExpr = stringExpr->GetNext();
       }
       controlItem->SetStringValues(stringList);
@@ -1087,26 +1078,26 @@ wxItemResource *wxResourceInterpretControl(wxResourceTable& table, PrologExpr *e
      }
    }
   }
-#if USE_COMBOBOX
-  else if (controlType == "wxComboBox")
+#if wxUSE_COMBOBOX
+  else if (controlType == _T("wxComboBox"))
   {
-    PrologExpr *textValue = expr->Nth(count);
+    wxExpr *textValue = expr->Nth(count);
     if (textValue && (textValue->Type() == PrologString || textValue->Type() == PrologWord))
    {
       wxString str(textValue->StringValue());
-      controlItem->SetValue4(WXSTRINGCAST str);
+      controlItem->SetValue4(str);
 
      count ++;
-      
-      PrologExpr *valueList = NULL;
+
+      wxExpr *valueList = (wxExpr *) NULL;
       // Check for default value list
       if ((valueList = expr->Nth(count)) && (valueList->Type() == PrologList))
       {
-        wxStringList *stringList = new wxStringList;
-        PrologExpr *stringExpr = valueList->GetFirst();
+        wxStringList stringList;
+        wxExpr *stringExpr = valueList->GetFirst();
         while (stringExpr)
         {
-          stringList->Add(stringExpr->StringValue());
+          stringList.Add(stringExpr->StringValue());
           stringExpr = stringExpr->GetNext();
         }
         controlItem->SetStringValues(stringList);
@@ -1125,18 +1116,18 @@ wxItemResource *wxResourceInterpretControl(wxResourceTable& table, PrologExpr *e
    }
   }
 #endif
-#if 0
-  else if (controlType == "wxRadioBox")
+#if 1
+  else if (controlType == _T("wxRadioBox"))
   {
-    PrologExpr *valueList = NULL;
+    wxExpr *valueList = (wxExpr *) NULL;
     // Check for default value list
     if ((valueList = expr->Nth(count)) && (valueList->Type() == PrologList))
     {
-      wxStringList *stringList = new wxStringList;
-      PrologExpr *stringExpr = valueList->GetFirst();
+      wxStringList stringList;
+      wxExpr *stringExpr = valueList->GetFirst();
       while (stringExpr)
       {
-        stringList->Add(stringExpr->StringValue());
+        stringList.Add(stringExpr->StringValue());
         stringExpr = stringExpr->GetNext();
       }
       controlItem->SetStringValues(stringList);
@@ -1165,42 +1156,42 @@ wxItemResource *wxResourceInterpretControl(wxResourceTable& table, PrologExpr *e
   else
   {
     delete controlItem;
-    return NULL;
+    return (wxItemResource *) NULL;
   }
   return controlItem;
 }
 
-// Forward declaration 
-wxItemResource *wxResourceInterpretMenu1(wxResourceTable& table, PrologExpr *expr);
+// Forward declaration
+wxItemResource *wxResourceInterpretMenu1(wxResourceTable& table, wxExpr *expr);
 
 /*
  * Interpet a menu item
  */
 
-wxItemResource *wxResourceInterpretMenuItem(wxResourceTable& table, PrologExpr *expr)
+wxItemResource *wxResourceInterpretMenuItem(wxResourceTable& table, wxExpr *expr)
 {
   wxItemResource *item = new wxItemResource;
-  
-  PrologExpr *labelExpr = expr->Nth(0);
-  PrologExpr *idExpr = expr->Nth(1);
-  PrologExpr *helpExpr = expr->Nth(2);
-  PrologExpr *checkableExpr = expr->Nth(3);
+
+  wxExpr *labelExpr = expr->Nth(0);
+  wxExpr *idExpr = expr->Nth(1);
+  wxExpr *helpExpr = expr->Nth(2);
+  wxExpr *checkableExpr = expr->Nth(3);
 
   // Further keywords/attributes to follow sometime...
   if (expr->Number() == 0)
   {
 //    item->SetType(wxRESOURCE_TYPE_SEPARATOR);
-    item->SetType("wxMenuSeparator");
+    item->SetType(_T("wxMenuSeparator"));
     return item;
   }
   else
   {
 //    item->SetType(wxTYPE_MENU); // Well, menu item, but doesn't matter.
-    item->SetType("wxMenu"); // Well, menu item, but doesn't matter.
+    item->SetType(_T("wxMenu")); // Well, menu item, but doesn't matter.
     if (labelExpr)
     {
       wxString str(labelExpr->StringValue());
-      item->SetTitle(WXSTRINGCAST str);
+      item->SetTitle(str);
     }
     if (idExpr)
     {
@@ -1209,13 +1200,13 @@ wxItemResource *wxResourceInterpretMenuItem(wxResourceTable& table, PrologExpr *
       if ((idExpr->Type() == PrologString) || (idExpr->Type() == PrologWord))
       {
         wxString str(idExpr->StringValue());
-        id = wxResourceGetIdentifier(WXSTRINGCAST str, &table);
+        id = wxResourceGetIdentifier(str, &table);
         if (id == 0)
         {
           wxLogWarning(_("Could not resolve menu id '%s'. "
                          "Use (non-zero) integer instead\n"
                          "or provide #define (see manual for caveats)"),
-                         (const char*) idExpr->StringValue());
+                         (const wxChar*) idExpr->StringValue());
         }
       }
       else if (idExpr->Type() == PrologInteger)
@@ -1225,16 +1216,16 @@ wxItemResource *wxResourceInterpretMenuItem(wxResourceTable& table, PrologExpr *
     if (helpExpr)
     {
       wxString str(helpExpr->StringValue());
-      item->SetValue4(WXSTRINGCAST str);
+      item->SetValue4(str);
     }
     if (checkableExpr)
       item->SetValue2(checkableExpr->IntegerValue());
 
     // Find the first expression that's a list, for submenu
-    PrologExpr *subMenuExpr = expr->GetFirst();
+    wxExpr *subMenuExpr = expr->GetFirst();
     while (subMenuExpr && (subMenuExpr->Type() != PrologList))
       subMenuExpr = subMenuExpr->GetNext();
-      
+
     while (subMenuExpr)
     {
       wxItemResource *child = wxResourceInterpretMenuItem(table, subMenuExpr);
@@ -1249,12 +1240,12 @@ wxItemResource *wxResourceInterpretMenuItem(wxResourceTable& table, PrologExpr *
  * Interpret a nested list as a menu
  */
 /*
-wxItemResource *wxResourceInterpretMenu1(wxResourceTable& table, PrologExpr *expr)
+wxItemResource *wxResourceInterpretMenu1(wxResourceTable& table, wxExpr *expr)
 {
   wxItemResource *menu = new wxItemResource;
 //  menu->SetType(wxTYPE_MENU);
   menu->SetType("wxMenu");
-  PrologExpr *element = expr->GetFirst();
+  wxExpr *element = expr->GetFirst();
   while (element)
   {
     wxItemResource *item = wxResourceInterpretMenuItem(table, element);
@@ -1266,41 +1257,39 @@ wxItemResource *wxResourceInterpretMenu1(wxResourceTable& table, PrologExpr *exp
 }
 */
 
-wxItemResource *wxResourceInterpretMenu(wxResourceTable& table, PrologExpr *expr)
+wxItemResource *wxResourceInterpretMenu(wxResourceTable& table, wxExpr *expr)
 {
-  PrologExpr *listExpr = NULL;
-  expr->AssignAttributeValue("menu", &listExpr);
+  wxExpr *listExpr = (wxExpr *) NULL;
+  expr->GetAttributeValue(_T("menu"), &listExpr);
   if (!listExpr)
-    return NULL;
-  
+    return (wxItemResource *) NULL;
+
   wxItemResource *menuResource = wxResourceInterpretMenuItem(table, listExpr);
 
   if (!menuResource)
-    return NULL;
-    
-  char *name = NULL;
-  expr->AssignAttributeValue("name", &name);
-  if (name)
+    return (wxItemResource *) NULL;
+
+  wxString name;
+  if (expr->GetAttributeValue(_T("name"), name))
   {
     menuResource->SetName(name);
-    delete[] name;
   }
-  
+
   return menuResource;
 }
 
-wxItemResource *wxResourceInterpretMenuBar(wxResourceTable& table, PrologExpr *expr)
+wxItemResource *wxResourceInterpretMenuBar(wxResourceTable& table, wxExpr *expr)
 {
-  PrologExpr *listExpr = NULL;
-  expr->AssignAttributeValue("menu", &listExpr);
+  wxExpr *listExpr = (wxExpr *) NULL;
+  expr->GetAttributeValue(_T("menu"), &listExpr);
   if (!listExpr)
-    return NULL;
+    return (wxItemResource *) NULL;
 
   wxItemResource *resource = new wxItemResource;
-  resource->SetType("wxMenu");
+  resource->SetType(_T("wxMenu"));
 //  resource->SetType(wxTYPE_MENU);
-  
-  PrologExpr *element = listExpr->GetFirst();
+
+  wxExpr *element = listExpr->GetFirst();
   while (element)
   {
     wxItemResource *menuResource = wxResourceInterpretMenuItem(table, listExpr);
@@ -1308,80 +1297,74 @@ wxItemResource *wxResourceInterpretMenuBar(wxResourceTable& table, PrologExpr *e
     element = element->GetNext();
   }
 
-  char *name = NULL;
-  expr->AssignAttributeValue("name", &name);
-  if (name)
+  wxString name;
+  if (expr->GetAttributeValue(_T("name"), name))
   {
     resource->SetName(name);
-    delete[] name;
   }
-  
+
   return resource;
 }
 
-wxItemResource *wxResourceInterpretString(wxResourceTable& WXUNUSED(table), PrologExpr *WXUNUSED(expr))
+wxItemResource *wxResourceInterpretString(wxResourceTable& WXUNUSED(table), wxExpr *WXUNUSED(expr))
 {
-  return NULL;
+  return (wxItemResource *) NULL;
 }
 
-wxItemResource *wxResourceInterpretBitmap(wxResourceTable& WXUNUSED(table), PrologExpr *expr)
+wxItemResource *wxResourceInterpretBitmap(wxResourceTable& WXUNUSED(table), wxExpr *expr)
 {
   wxItemResource *bitmapItem = new wxItemResource;
 //  bitmapItem->SetType(wxTYPE_BITMAP);
-  bitmapItem->SetType("wxBitmap");
-  char *name = NULL;
-  expr->AssignAttributeValue("name", &name);
-  if (name)
+  bitmapItem->SetType(_T("wxBitmap"));
+  wxString name;
+  if (expr->GetAttributeValue(_T("name"), name))
   {
     bitmapItem->SetName(name);
-    delete[] name;
   }
   // Now parse all bitmap specifications
-  PrologExpr *bitmapExpr = expr->GetFirst();
+  wxExpr *bitmapExpr = expr->GetFirst();
   while (bitmapExpr)
   {
     if (bitmapExpr->Number() == 3)
     {
       wxString bitmapKeyword(bitmapExpr->Nth(1)->StringValue());
-      if (bitmapKeyword == "bitmap" || bitmapKeyword == "icon")
+      if (bitmapKeyword == _T("bitmap") || bitmapKeyword == _T("icon"))
       {
         // The value part: always a list.
-        PrologExpr *listExpr = bitmapExpr->Nth(2);
+        wxExpr *listExpr = bitmapExpr->Nth(2);
         if (listExpr->Type() == PrologList)
         {
           wxItemResource *bitmapSpec = new wxItemResource;
 //          bitmapSpec->SetType(wxTYPE_BITMAP);
-          bitmapSpec->SetType("wxBitmap");
+          bitmapSpec->SetType(_T("wxBitmap"));
 
           // List is of form: [filename, bitmaptype, platform, colours, xresolution, yresolution]
           // where everything after 'filename' is optional.
-          PrologExpr *nameExpr = listExpr->Nth(0);
-          PrologExpr *typeExpr = listExpr->Nth(1);
-          PrologExpr *platformExpr = listExpr->Nth(2);
-          PrologExpr *coloursExpr = listExpr->Nth(3);
-          PrologExpr *xresExpr = listExpr->Nth(4);
-          PrologExpr *yresExpr = listExpr->Nth(5);
-          if (nameExpr && nameExpr->StringValue())
+          wxExpr *nameExpr = listExpr->Nth(0);
+          wxExpr *typeExpr = listExpr->Nth(1);
+          wxExpr *platformExpr = listExpr->Nth(2);
+          wxExpr *coloursExpr = listExpr->Nth(3);
+          wxExpr *xresExpr = listExpr->Nth(4);
+          wxExpr *yresExpr = listExpr->Nth(5);
+          if (nameExpr && nameExpr->StringValue() != _T(""))
           {
-            wxString str(nameExpr->StringValue());
-            bitmapSpec->SetName(WXSTRINGCAST str);
+            bitmapSpec->SetName(nameExpr->StringValue());
           }
-          if (typeExpr && typeExpr->StringValue())
+          if (typeExpr && typeExpr->StringValue() != _T(""))
           {
-            wxString str(typeExpr->StringValue());
-            bitmapSpec->SetValue1(wxParseWindowStyle(WXSTRINGCAST str));
+            bitmapSpec->SetValue1(wxParseWindowStyle(typeExpr->StringValue()));
           }
           else
             bitmapSpec->SetValue1(0);
-            
-          if (platformExpr && platformExpr->StringValue())
+
+          if (platformExpr && platformExpr->StringValue() != _T(""))
           {
             wxString plat(platformExpr->StringValue());
-            if (plat == "windows" || plat == "WINDOWS")
+            if (plat == _T("windows") || plat == _T("WINDOWS"))
               bitmapSpec->SetValue2(RESOURCE_PLATFORM_WINDOWS);
-            else if (plat == "x" || plat == "X")
+            else if (plat == _T("x") || plat == _T("X"))
               bitmapSpec->SetValue2(RESOURCE_PLATFORM_X);
-            else if (plat == "mac" || plat == "MAC")
+            else if (plat == _T("mac") || plat == _T("MAC"))
               bitmapSpec->SetValue2(RESOURCE_PLATFORM_MAC);
             else
               bitmapSpec->SetValue2(RESOURCE_PLATFORM_ANY);
@@ -1398,49 +1381,49 @@ wxItemResource *wxResourceInterpretBitmap(wxResourceTable& WXUNUSED(table), Prol
           if (yresExpr)
             yres = (int)yresExpr->IntegerValue();
           bitmapSpec->SetSize(0, 0, xres, yres);
-            
+
           bitmapItem->GetChildren().Append(bitmapSpec);
         }
       }
     }
     bitmapExpr = bitmapExpr->GetNext();
   }
-  
+
   return bitmapItem;
 }
 
-wxItemResource *wxResourceInterpretIcon(wxResourceTable& table, PrologExpr *expr)
+wxItemResource *wxResourceInterpretIcon(wxResourceTable& table, wxExpr *expr)
 {
   wxItemResource *item = wxResourceInterpretBitmap(table, expr);
   if (item)
   {
 //    item->SetType(wxTYPE_ICON);
-    item->SetType("wxIcon");
+    item->SetType(_T("wxIcon"));
     return item;
   }
   else
-    return NULL;
+    return (wxItemResource *) NULL;
 }
 
 // Interpret list expression as a font
-wxFont *wxResourceInterpretFontSpec(PrologExpr *expr)
+wxFont wxResourceInterpretFontSpec(wxExpr *expr)
 {
   if (expr->Type() != PrologList)
-    return NULL;
+    return wxNullFont;
 
   int point = 10;
   int family = wxSWISS;
   int style = wxNORMAL;
   int weight = wxNORMAL;
   int underline = 0;
-  wxString faceName("");
-  
-  PrologExpr *pointExpr = expr->Nth(0);
-  PrologExpr *familyExpr = expr->Nth(1);
-  PrologExpr *styleExpr = expr->Nth(2);
-  PrologExpr *weightExpr = expr->Nth(3);
-  PrologExpr *underlineExpr = expr->Nth(4);
-  PrologExpr *faceNameExpr = expr->Nth(5);
+  wxString faceName(_T(""));
+
+  wxExpr *pointExpr = expr->Nth(0);
+  wxExpr *familyExpr = expr->Nth(1);
+  wxExpr *styleExpr = expr->Nth(2);
+  wxExpr *weightExpr = expr->Nth(3);
+  wxExpr *underlineExpr = expr->Nth(4);
+  wxExpr *faceNameExpr = expr->Nth(5);
   if (pointExpr)
     point = (int)pointExpr->IntegerValue();
 
@@ -1448,35 +1431,35 @@ wxFont *wxResourceInterpretFontSpec(PrologExpr *expr)
   if (familyExpr)
   {
     str = familyExpr->StringValue();
-    family = (int)wxParseWindowStyle(WXSTRINGCAST str);
+    family = (int)wxParseWindowStyle(str);
   }
   if (styleExpr)
   {
     str = styleExpr->StringValue();
-    style = (int)wxParseWindowStyle(WXSTRINGCAST str);
+    style = (int)wxParseWindowStyle(str);
   }
   if (weightExpr)
   {
     str = weightExpr->StringValue();
-    weight = (int)wxParseWindowStyle(WXSTRINGCAST str);
+    weight = (int)wxParseWindowStyle(str);
   }
   if (underlineExpr)
     underline = (int)underlineExpr->IntegerValue();
   if (faceNameExpr)
     faceName = faceNameExpr->StringValue();
 
-  char *faceName1 = NULL;
-  if (faceName != "")
-    faceName1 = WXSTRINGCAST faceName;
-  wxFont *font = wxTheFontList->FindOrCreateFont(point, family, style, weight, (underline != 0), faceName1);
+  wxFont font(point, family, style, weight, (underline != 0), faceName);
   return font;
 }
 
+// Separate file for the remainder of this, for BC++/Win16
+
+#if !((defined(__BORLANDC__) || defined(__SC__)) && defined(__WIN16__))
 /*
  * (Re)allocate buffer for reading in from resource file
  */
 
-bool wxReallocateResourceBuffer(void)
+bool wxReallocateResourceBuffer()
 {
   if (!wxResourceBuffer)
   {
@@ -1498,46 +1481,59 @@ bool wxReallocateResourceBuffer(void)
 
 static bool wxEatWhiteSpace(FILE *fd)
 {
-  int ch = getc(fd);
-  if ((ch != ' ') && (ch != '/') && (ch != ' ') && (ch != 10) && (ch != 13) && (ch != 9))
-  {
-    ungetc(ch, fd);
-    return TRUE;
-  }
+  int ch = 0;
 
-  // Eat whitespace
-  while (ch == ' ' || ch == 10 || ch == 13 || ch == 9)
-    ch = getc(fd);
-  // Check for comment
-  if (ch == '/')
-  {
-    ch = getc(fd);
-    if (ch == '*')
-    {
-      bool finished = FALSE;
-      while (!finished)
+   while ((ch = getc(fd)) != EOF)
       {
-        ch = getc(fd);
-        if (ch == EOF)
-          return FALSE;
-        if (ch == '*')
-        {
-          int newCh = getc(fd);
-          if (newCh == '/')
-            finished = TRUE;
-          else
-          {
-            ungetc(newCh, fd);
-          }
-        }
+      switch (ch)
+         {
+         case ' ':
+         case 0x0a:
+         case 0x0d:
+         case 0x09:
+            break;
+         case '/':
+            {
+            int prev_ch = ch;
+            ch = getc(fd);
+            if (ch == EOF)
+               {
+               ungetc(prev_ch, fd);
+               return TRUE;
+               }
+
+            if (ch == '*')
+               {
+               // Eat C comment
+               prev_ch = 0;
+               while ((ch = getc(fd)) != EOF)
+                  {
+                  if (ch == '/' && prev_ch == '*')
+                     break;
+                  prev_ch = ch;
+                  }
+               }
+            else if (ch == '/')
+               {
+               // Eat C++ comment
+               static char buffer[255];
+               fgets(buffer, 255, fd);
+               }
+            else
+               {
+               ungetc(prev_ch, fd);
+               ungetc(ch, fd);
+               return TRUE;
+               }
+            }
+            break;
+         default:
+            ungetc(ch, fd);
+            return TRUE;
+
+         }
       }
-    }
-    else // False alarm
-      return FALSE;
-  }
-  else
-    ungetc(ch, fd);
-  return wxEatWhiteSpace(fd);
+   return FALSE;
 }
 
 bool wxGetResourceToken(FILE *fd)
@@ -1593,7 +1589,7 @@ bool wxGetResourceToken(FILE *fd)
         wxReallocateResourceBuffer();
       wxResourceBuffer[wxResourceBufferCount] = (char)ch;
       wxResourceBufferCount ++;
-      
+
       ch = getc(fd);
     }
     wxResourceBuffer[wxResourceBufferCount] = 0;
@@ -1608,12 +1604,12 @@ bool wxGetResourceToken(FILE *fd)
   static char *name = "....";
   with possible comments.
  */
-bool wxResourceReadOneResource(FILE *fd, PrologDatabase& db, bool *eof, wxResourceTable *table)
+
+bool wxResourceReadOneResource(FILE *fd, wxExprDatabase& db, bool *eof, wxResourceTable *table)
 {
   if (!table)
     table = wxDefaultResourceTable;
-    
+
   // static or #define
   if (!wxGetResourceToken(fd))
   {
@@ -1624,12 +1620,12 @@ bool wxResourceReadOneResource(FILE *fd, PrologDatabase& db, bool *eof, wxResour
   if (strcmp(wxResourceBuffer, "#define") == 0)
   {
     wxGetResourceToken(fd);
-    char *name = copystring(wxResourceBuffer);
+    wxChar *name = copystring(wxConvCurrent->cMB2WX(wxResourceBuffer));
     wxGetResourceToken(fd);
-    char *value = copystring(wxResourceBuffer);
-    if (isalpha(value[0]))
+    wxChar *value = copystring(wxConvCurrent->cMB2WX(wxResourceBuffer));
+    if (wxIsdigit(value[0]))
     {
-      int val = (int)atol(value);
+      int val = (int)wxAtol(value);
       wxResourceAddIdentifier(name, val, table);
     }
     else
@@ -1641,18 +1637,18 @@ bool wxResourceReadOneResource(FILE *fd, PrologDatabase& db, bool *eof, wxResour
     }
     delete[] name;
     delete[] value;
+
     return TRUE;
   }
   else if (strcmp(wxResourceBuffer, "#include") == 0)
   {
     wxGetResourceToken(fd);
-    char *name = copystring(wxResourceBuffer);
-    char *actualName = name;
-    if (name[0] == '"')
+    wxChar *name = copystring(wxConvCurrent->cMB2WX(wxResourceBuffer));
+    wxChar *actualName = name;
+    if (name[0] == _T('"'))
       actualName = name + 1;
-    int len = strlen(name);
-    if ((len > 0) && (name[len-1] == '"'))
+    int len = wxStrlen(name);
+    if ((len > 0) && (name[len-1] == _T('"')))
       name[len-1] = 0;
     if (!wxResourceParseIncludeFile(actualName, table))
     {
@@ -1663,10 +1659,10 @@ bool wxResourceReadOneResource(FILE *fd, PrologDatabase& db, bool *eof, wxResour
   }
   else if (strcmp(wxResourceBuffer, "static") != 0)
   {
-    char buf[300];
-    strcpy(buf, _("Found "));
-    strncat(buf, wxResourceBuffer, 30);
-    strcat(buf, _(", expected static, #include or #define\nwhilst parsing resource."));
+    wxChar buf[300];
+    wxStrcpy(buf, _("Found "));
+    wxStrncat(buf, wxConvCurrent->cMB2WX(wxResourceBuffer), 30);
+    wxStrcat(buf, _(", expected static, #include or #define\nwhilst parsing resource."));
     wxLogWarning(buf);
     return FALSE;
   }
@@ -1684,7 +1680,7 @@ bool wxResourceReadOneResource(FILE *fd, PrologDatabase& db, bool *eof, wxResour
     wxLogWarning(_("Expected 'char' whilst parsing resource."));
     return FALSE;
   }
-    
+
   // *name
   if (!wxGetResourceToken(fd))
   {
@@ -1698,9 +1694,10 @@ bool wxResourceReadOneResource(FILE *fd, PrologDatabase& db, bool *eof, wxResour
     wxLogWarning(_("Expected '*' whilst parsing resource."));
     return FALSE;
   }
-  char nameBuf[100];
-  strncpy(nameBuf, wxResourceBuffer+1, 99);
-    
+  wxChar nameBuf[100];
+  wxMB2WX(nameBuf, wxResourceBuffer+1, 99);
+  nameBuf[99] = 0;
+
   // =
   if (!wxGetResourceToken(fd))
   {
@@ -1741,22 +1738,22 @@ bool wxResourceReadOneResource(FILE *fd, PrologDatabase& db, bool *eof, wxResour
 /*
  * Parses string window style into integer window style
  */
+
 /*
  * Style flag parsing, e.g.
  * "wxSYSTEM_MENU | wxBORDER" -> integer
  */
 
-char *wxResourceParseWord(char *s, int *i)
+wxChar* wxResourceParseWord(wxChar*s, int *i)
 {
   if (!s)
-    return NULL;
+    return (wxChar*) NULL;
 
-  static char buf[150];
-  int len = strlen(s);
+  static wxChar buf[150];
+  int len = wxStrlen(s);
   int j = 0;
   int ii = *i;
-  while ((ii < len) && (isalpha(s[ii]) || (s[ii] == '_')))
+  while ((ii < len) && (wxIsalpha(s[ii]) || (s[ii] == _T('_'))))
   {
     buf[j] = s[ii];
     j ++;
@@ -1766,286 +1763,295 @@ char *wxResourceParseWord(char *s, int *i)
 
   // Eat whitespace and conjunction characters
   while ((ii < len) &&
-         ((s[ii] == ' ') || (s[ii] == '|') || (s[ii] == ',')))
+         ((s[ii] == _T(' ')) || (s[ii] == _T('|')) || (s[ii] == _T(','))))
   {
     ii ++;
   }
   *i = ii;
   if (j == 0)
-    return NULL;
+    return (wxChar*) NULL;
   else
     return buf;
 }
 
 struct wxResourceBitListStruct
 {
-  char *word;
+  wxChar *word;
   long bits;
 };
 
 static wxResourceBitListStruct wxResourceBitListTable[] =
 {
   /* wxListBox */
-  { "wxSINGLE", wxLB_SINGLE },
-  { "wxMULTIPLE", wxLB_MULTIPLE },
-  { "wxEXTENDED", wxLB_EXTENDED },
-  { "wxLB_SINGLE", wxLB_SINGLE },
-  { "wxLB_MULTIPLE", wxLB_MULTIPLE },
-  { "wxLB_EXTENDED", wxLB_EXTENDED },
-  { "wxLB_NEEDED_SB", wxLB_NEEDED_SB },
-  { "wxLB_ALWAYS_SB", wxLB_ALWAYS_SB },
-  { "wxLB_SORT", wxLB_SORT },
-  { "wxLB_OWNERDRAW", wxLB_OWNERDRAW },
-  { "wxLB_HSCROLL", wxLB_HSCROLL },
-  
+  { _T("wxSINGLE"), wxLB_SINGLE },
+  { _T("wxMULTIPLE"), wxLB_MULTIPLE },
+  { _T("wxEXTENDED"), wxLB_EXTENDED },
+  { _T("wxLB_SINGLE"), wxLB_SINGLE },
+  { _T("wxLB_MULTIPLE"), wxLB_MULTIPLE },
+  { _T("wxLB_EXTENDED"), wxLB_EXTENDED },
+  { _T("wxLB_NEEDED_SB"), wxLB_NEEDED_SB },
+  { _T("wxLB_ALWAYS_SB"), wxLB_ALWAYS_SB },
+  { _T("wxLB_SORT"), wxLB_SORT },
+  { _T("wxLB_OWNERDRAW"), wxLB_OWNERDRAW },
+  { _T("wxLB_HSCROLL"), wxLB_HSCROLL },
+
   /* wxComboxBox */
-  { "wxCB_SIMPLE", wxCB_SIMPLE },
-  { "wxCB_DROPDOWN", wxCB_DROPDOWN },
-  { "wxCB_READONLY", wxCB_READONLY },
-  { "wxCB_SORT", wxCB_SORT },
-  
+  { _T("wxCB_SIMPLE"), wxCB_SIMPLE },
+  { _T("wxCB_DROPDOWN"), wxCB_DROPDOWN },
+  { _T("wxCB_READONLY"), wxCB_READONLY },
+  { _T("wxCB_SORT"), wxCB_SORT },
+
   /* wxGauge */
-  { "wxGA_PROGRESSBAR", wxGA_PROGRESSBAR },
-  { "wxGA_HORIZONTAL", wxGA_HORIZONTAL },
-  { "wxGA_VERTICAL", wxGA_VERTICAL },
+  { _T("wxGA_PROGRESSBAR"), wxGA_PROGRESSBAR },
+  { _T("wxGA_HORIZONTAL"), wxGA_HORIZONTAL },
+  { _T("wxGA_VERTICAL"), wxGA_VERTICAL },
 
   /* wxTextCtrl */
-  { "wxPASSWORD", wxPASSWORD},
-  { "wxPROCESS_ENTER", wxPROCESS_ENTER},
-  { "wxTE_PASSWORD", wxTE_PASSWORD},
-  { "wxTE_READONLY", wxTE_READONLY},
-  { "wxTE_PROCESS_ENTER", wxTE_PROCESS_ENTER},
-  { "wxTE_MULTILINE", wxTE_MULTILINE},
+  { _T("wxPASSWORD"), wxPASSWORD},
+  { _T("wxPROCESS_ENTER"), wxPROCESS_ENTER},
+  { _T("wxTE_PASSWORD"), wxTE_PASSWORD},
+  { _T("wxTE_READONLY"), wxTE_READONLY},
+  { _T("wxTE_PROCESS_ENTER"), wxTE_PROCESS_ENTER},
+  { _T("wxTE_MULTILINE"), wxTE_MULTILINE},
+  { _T("wxTE_NO_VSCROLL"), wxTE_NO_VSCROLL},
 
   /* wxRadioBox/wxRadioButton */
-  { "wxRB_GROUP", wxRB_GROUP },
-  { "wxRA_HORIZONTAL", wxRA_HORIZONTAL },
-  { "wxRA_VERTICAL", wxRA_VERTICAL },
+  { _T("wxRB_GROUP"), wxRB_GROUP },
+  { _T("wxRA_SPECIFY_COLS"), wxRA_SPECIFY_COLS },
+  { _T("wxRA_SPECIFY_ROWS"), wxRA_SPECIFY_ROWS },
+  { _T("wxRA_HORIZONTAL"), wxRA_HORIZONTAL },
+  { _T("wxRA_VERTICAL"), wxRA_VERTICAL },
 
   /* wxSlider */
-  { "wxSL_HORIZONTAL", wxSL_HORIZONTAL },
-  { "wxSL_VERTICAL", wxSL_VERTICAL },
-  { "wxSL_AUTOTICKS", wxSL_AUTOTICKS },
-  { "wxSL_LABELS", wxSL_LABELS },
-  { "wxSL_LEFT", wxSL_LEFT },
-  { "wxSL_TOP", wxSL_TOP },
-  { "wxSL_RIGHT", wxSL_RIGHT },
-  { "wxSL_BOTTOM", wxSL_BOTTOM },
-  { "wxSL_BOTH", wxSL_BOTH },
-  { "wxSL_SELRANGE", wxSL_SELRANGE },
+  { _T("wxSL_HORIZONTAL"), wxSL_HORIZONTAL },
+  { _T("wxSL_VERTICAL"), wxSL_VERTICAL },
+  { _T("wxSL_AUTOTICKS"), wxSL_AUTOTICKS },
+  { _T("wxSL_LABELS"), wxSL_LABELS },
+  { _T("wxSL_LEFT"), wxSL_LEFT },
+  { _T("wxSL_TOP"), wxSL_TOP },
+  { _T("wxSL_RIGHT"), wxSL_RIGHT },
+  { _T("wxSL_BOTTOM"), wxSL_BOTTOM },
+  { _T("wxSL_BOTH"), wxSL_BOTH },
+  { _T("wxSL_SELRANGE"), wxSL_SELRANGE },
 
   /* wxScrollBar */
-  { "wxSB_HORIZONTAL", wxSB_HORIZONTAL },
-  { "wxSB_VERTICAL", wxSB_VERTICAL },
+  { _T("wxSB_HORIZONTAL"), wxSB_HORIZONTAL },
+  { _T("wxSB_VERTICAL"), wxSB_VERTICAL },
 
   /* wxButton */
-  { "wxBU_AUTODRAW", wxBU_AUTODRAW },
-  { "wxBU_NOAUTODRAW", wxBU_NOAUTODRAW },
+  { _T("wxBU_AUTODRAW"), wxBU_AUTODRAW },
+  { _T("wxBU_NOAUTODRAW"), wxBU_NOAUTODRAW },
 
   /* wxTreeCtrl */
-  { "wxTR_HAS_BUTTONS", wxTR_HAS_BUTTONS },
-  { "wxTR_EDIT_LABELS", wxTR_EDIT_LABELS },
-  { "wxTR_LINES_AT_ROOT", wxTR_LINES_AT_ROOT },
+  { _T("wxTR_HAS_BUTTONS"), wxTR_HAS_BUTTONS },
+  { _T("wxTR_EDIT_LABELS"), wxTR_EDIT_LABELS },
+  { _T("wxTR_LINES_AT_ROOT"), wxTR_LINES_AT_ROOT },
 
   /* wxListCtrl */
-  { "wxLC_ICON", wxLC_ICON },
-  { "wxLC_SMALL_ICON", wxLC_SMALL_ICON },
-  { "wxLC_LIST", wxLC_LIST },
-  { "wxLC_REPORT", wxLC_REPORT },
-  { "wxLC_ALIGN_TOP", wxLC_ALIGN_TOP },
-  { "wxLC_ALIGN_LEFT", wxLC_ALIGN_LEFT },
-  { "wxLC_AUTOARRANGE", wxLC_AUTOARRANGE },
-  { "wxLC_USER_TEXT", wxLC_USER_TEXT },
-  { "wxLC_EDIT_LABELS", wxLC_EDIT_LABELS },
-  { "wxLC_NO_HEADER", wxLC_NO_HEADER },
-  { "wxLC_NO_SORT_HEADER", wxLC_NO_SORT_HEADER },
-  { "wxLC_SINGLE_SEL", wxLC_SINGLE_SEL },
-  { "wxLC_SORT_ASCENDING", wxLC_SORT_ASCENDING },
-  { "wxLC_SORT_DESCENDING", wxLC_SORT_DESCENDING },
+  { _T("wxLC_ICON"), wxLC_ICON },
+  { _T("wxLC_SMALL_ICON"), wxLC_SMALL_ICON },
+  { _T("wxLC_LIST"), wxLC_LIST },
+  { _T("wxLC_REPORT"), wxLC_REPORT },
+  { _T("wxLC_ALIGN_TOP"), wxLC_ALIGN_TOP },
+  { _T("wxLC_ALIGN_LEFT"), wxLC_ALIGN_LEFT },
+  { _T("wxLC_AUTOARRANGE"), wxLC_AUTOARRANGE },
+  { _T("wxLC_USER_TEXT"), wxLC_USER_TEXT },
+  { _T("wxLC_EDIT_LABELS"), wxLC_EDIT_LABELS },
+  { _T("wxLC_NO_HEADER"), wxLC_NO_HEADER },
+  { _T("wxLC_NO_SORT_HEADER"), wxLC_NO_SORT_HEADER },
+  { _T("wxLC_SINGLE_SEL"), wxLC_SINGLE_SEL },
+  { _T("wxLC_SORT_ASCENDING"), wxLC_SORT_ASCENDING },
+  { _T("wxLC_SORT_DESCENDING"), wxLC_SORT_DESCENDING },
 
   /* wxSpinButton */
-  { "wxSP_VERTICAL", wxSP_VERTICAL},
-  { "wxSP_HORIZONTAL", wxSP_HORIZONTAL},
-  { "wxSP_ARROW_KEYS", wxSP_ARROW_KEYS},
-  { "wxSP_WRAP", wxSP_WRAP},
+  { _T("wxSP_VERTICAL"), wxSP_VERTICAL},
+  { _T("wxSP_HORIZONTAL"), wxSP_HORIZONTAL},
+  { _T("wxSP_ARROW_KEYS"), wxSP_ARROW_KEYS},
+  { _T("wxSP_WRAP"), wxSP_WRAP},
 
   /* wxSplitterWnd */
-  { "wxSP_NOBORDER", wxSP_NOBORDER},
-  { "wxSP_3D", wxSP_3D},
-  { "wxSP_BORDER", wxSP_BORDER},
+  { _T("wxSP_NOBORDER"), wxSP_NOBORDER},
+  { _T("wxSP_3D"), wxSP_3D},
+  { _T("wxSP_BORDER"), wxSP_BORDER},
 
   /* wxTabCtrl */
-  { "wxTC_MULTILINE", wxTC_MULTILINE},
-  { "wxTC_RIGHTJUSTIFY", wxTC_RIGHTJUSTIFY},
-  { "wxTC_FIXEDWIDTH", wxTC_FIXEDWIDTH},
-  { "wxTC_OWNERDRAW", wxTC_OWNERDRAW},
+  { _T("wxTC_MULTILINE"), wxTC_MULTILINE},
+  { _T("wxTC_RIGHTJUSTIFY"), wxTC_RIGHTJUSTIFY},
+  { _T("wxTC_FIXEDWIDTH"), wxTC_FIXEDWIDTH},
+  { _T("wxTC_OWNERDRAW"), wxTC_OWNERDRAW},
 
   /* wxStatusBar95 */
-  { "wxST_SIZEGRIP", wxST_SIZEGRIP},
+  { _T("wxST_SIZEGRIP"), wxST_SIZEGRIP},
 
   /* wxControl */
-  { "wxFIXED_LENGTH", wxFIXED_LENGTH},
-  { "wxALIGN_LEFT", wxALIGN_LEFT},
-  { "wxALIGN_CENTER", wxALIGN_CENTER},
-  { "wxALIGN_CENTRE", wxALIGN_CENTRE},
-  { "wxALIGN_RIGHT", wxALIGN_RIGHT},
-  { "wxCOLOURED", wxCOLOURED},
-  
+  { _T("wxFIXED_LENGTH"), wxFIXED_LENGTH},
+  { _T("wxALIGN_LEFT"), wxALIGN_LEFT},
+  { _T("wxALIGN_CENTER"), wxALIGN_CENTER},
+  { _T("wxALIGN_CENTRE"), wxALIGN_CENTRE},
+  { _T("wxALIGN_RIGHT"), wxALIGN_RIGHT},
+  { _T("wxCOLOURED"), wxCOLOURED},
+
   /* wxToolBar */
-  { "wxTB_3DBUTTONS", wxTB_3DBUTTONS},
-  { "wxTB_HORIZONTAL", wxTB_HORIZONTAL},
-  { "wxTB_VERTICAL", wxTB_VERTICAL},
-  { "wxTB_FLAT", wxTB_FLAT},
+  { _T("wxTB_3DBUTTONS"), wxTB_3DBUTTONS},
+  { _T("wxTB_HORIZONTAL"), wxTB_HORIZONTAL},
+  { _T("wxTB_VERTICAL"), wxTB_VERTICAL},
+  { _T("wxTB_FLAT"), wxTB_FLAT},
+
+  /* wxDialog */
+  { _T("wxDIALOG_MODAL"), wxDIALOG_MODAL },
 
   /* Generic */
-  { "wxVSCROLL", wxVSCROLL },
-  { "wxHSCROLL", wxHSCROLL },
-  { "wxCAPTION", wxCAPTION },
-  { "wxSTAY_ON_TOP", wxSTAY_ON_TOP},
-  { "wxICONIZE", wxICONIZE},
-  { "wxMINIMIZE", wxICONIZE},
-  { "wxMAXIMIZE", wxMAXIMIZE},
-  { "wxSDI", 0},
-  { "wxMDI_PARENT", 0},
-  { "wxMDI_CHILD", 0},
-  { "wxTHICK_FRAME", wxTHICK_FRAME},
-  { "wxRESIZE_BORDER", wxRESIZE_BORDER},
-  { "wxSYSTEM_MENU", wxSYSTEM_MENU},
-  { "wxMINIMIZE_BOX", wxMINIMIZE_BOX},
-  { "wxMAXIMIZE_BOX", wxMAXIMIZE_BOX},
-  { "wxRESIZE_BOX", wxRESIZE_BOX},
-  { "wxDEFAULT_FRAME", wxDEFAULT_FRAME},
-  { "wxDEFAULT_DIALOG_STYLE", wxDEFAULT_DIALOG_STYLE},
-  { "wxBORDER", wxBORDER},
-  { "wxRETAINED", wxRETAINED},
-  { "wxNATIVE_IMPL", 0},
-  { "wxEXTENDED_IMPL", 0},
-  { "wxBACKINGSTORE", wxBACKINGSTORE},
-//  { "wxFLAT", wxFLAT},
-//  { "wxMOTIF_RESIZE", wxMOTIF_RESIZE},
-  { "wxFIXED_LENGTH", 0},
-  { "wxDOUBLE_BORDER", wxDOUBLE_BORDER},
-  { "wxSUNKEN_BORDER", wxSUNKEN_BORDER},
-  { "wxRAISED_BORDER", wxRAISED_BORDER},
-  { "wxSIMPLE_BORDER", wxSIMPLE_BORDER},
-  { "wxSTATIC_BORDER", wxSTATIC_BORDER},
-  { "wxTRANSPARENT_WINDOW", wxTRANSPARENT_WINDOW},
-  { "wxNO_BORDER", wxNO_BORDER},
-  { "wxCLIP_CHILDREN", wxCLIP_CHILDREN},
-
-  { "wxTINY_CAPTION_HORIZ", wxTINY_CAPTION_HORIZ},
-  { "wxTINY_CAPTION_VERT", wxTINY_CAPTION_VERT},
+  { _T("wxVSCROLL"), wxVSCROLL },
+  { _T("wxHSCROLL"), wxHSCROLL },
+  { _T("wxCAPTION"), wxCAPTION },
+  { _T("wxSTAY_ON_TOP"), wxSTAY_ON_TOP},
+  { _T("wxICONIZE"), wxICONIZE},
+  { _T("wxMINIMIZE"), wxICONIZE},
+  { _T("wxMAXIMIZE"), wxMAXIMIZE},
+  { _T("wxSDI"), 0},
+  { _T("wxMDI_PARENT"), 0},
+  { _T("wxMDI_CHILD"), 0},
+  { _T("wxTHICK_FRAME"), wxTHICK_FRAME},
+  { _T("wxRESIZE_BORDER"), wxRESIZE_BORDER},
+  { _T("wxSYSTEM_MENU"), wxSYSTEM_MENU},
+  { _T("wxMINIMIZE_BOX"), wxMINIMIZE_BOX},
+  { _T("wxMAXIMIZE_BOX"), wxMAXIMIZE_BOX},
+  { _T("wxRESIZE_BOX"), wxRESIZE_BOX},
+  { _T("wxDEFAULT_FRAME_STYLE"), wxDEFAULT_FRAME_STYLE},
+  { _T("wxDEFAULT_FRAME"), wxDEFAULT_FRAME_STYLE},
+  { _T("wxDEFAULT_DIALOG_STYLE"), wxDEFAULT_DIALOG_STYLE},
+  { _T("wxBORDER"), wxBORDER},
+  { _T("wxRETAINED"), wxRETAINED},
+  { _T("wxNATIVE_IMPL"), 0},
+  { _T("wxEXTENDED_IMPL"), 0},
+  { _T("wxBACKINGSTORE"), wxBACKINGSTORE},
+//  { _T("wxFLAT"), wxFLAT},
+//  { _T("wxMOTIF_RESIZE"), wxMOTIF_RESIZE},
+  { _T("wxFIXED_LENGTH"), 0},
+  { _T("wxDOUBLE_BORDER"), wxDOUBLE_BORDER},
+  { _T("wxSUNKEN_BORDER"), wxSUNKEN_BORDER},
+  { _T("wxRAISED_BORDER"), wxRAISED_BORDER},
+  { _T("wxSIMPLE_BORDER"), wxSIMPLE_BORDER},
+  { _T("wxSTATIC_BORDER"), wxSTATIC_BORDER},
+  { _T("wxTRANSPARENT_WINDOW"), wxTRANSPARENT_WINDOW},
+  { _T("wxNO_BORDER"), wxNO_BORDER},
+  { _T("wxCLIP_CHILDREN"), wxCLIP_CHILDREN},
+  { _T("wxTAB_TRAVERSAL"), 0}, // Compatibility only
+
+  { _T("wxTINY_CAPTION_HORIZ"), wxTINY_CAPTION_HORIZ},
+  { _T("wxTINY_CAPTION_VERT"), wxTINY_CAPTION_VERT},
 
   // Text font families
-  { "wxDEFAULT", wxDEFAULT},
-  { "wxDECORATIVE", wxDECORATIVE},
-  { "wxROMAN", wxROMAN},
-  { "wxSCRIPT", wxSCRIPT},
-  { "wxSWISS", wxSWISS},
-  { "wxMODERN", wxMODERN},
-  { "wxTELETYPE", wxTELETYPE},
-  { "wxVARIABLE", wxVARIABLE},
-  { "wxFIXED", wxFIXED},
-  { "wxNORMAL", wxNORMAL},
-  { "wxLIGHT", wxLIGHT},
-  { "wxBOLD", wxBOLD},
-  { "wxITALIC", wxITALIC},
-  { "wxSLANT", wxSLANT},
-  { "wxSOLID", wxSOLID},
-  { "wxDOT", wxDOT},
-  { "wxLONG_DASH", wxLONG_DASH},
-  { "wxSHORT_DASH", wxSHORT_DASH},
-  { "wxDOT_DASH", wxDOT_DASH},
-  { "wxUSER_DASH", wxUSER_DASH},
-  { "wxTRANSPARENT", wxTRANSPARENT},
-  { "wxSTIPPLE", wxSTIPPLE},
-  { "wxBDIAGONAL_HATCH", wxBDIAGONAL_HATCH},
-  { "wxCROSSDIAG_HATCH", wxCROSSDIAG_HATCH},
-  { "wxFDIAGONAL_HATCH", wxFDIAGONAL_HATCH},
-  { "wxCROSS_HATCH", wxCROSS_HATCH},
-  { "wxHORIZONTAL_HATCH", wxHORIZONTAL_HATCH},
-  { "wxVERTICAL_HATCH", wxVERTICAL_HATCH},
-  { "wxJOIN_BEVEL", wxJOIN_BEVEL},
-  { "wxJOIN_MITER", wxJOIN_MITER},
-  { "wxJOIN_ROUND", wxJOIN_ROUND},
-  { "wxCAP_ROUND", wxCAP_ROUND},
-  { "wxCAP_PROJECTING", wxCAP_PROJECTING},
-  { "wxCAP_BUTT", wxCAP_BUTT},
+  { _T("wxDEFAULT"), wxDEFAULT},
+  { _T("wxDECORATIVE"), wxDECORATIVE},
+  { _T("wxROMAN"), wxROMAN},
+  { _T("wxSCRIPT"), wxSCRIPT},
+  { _T("wxSWISS"), wxSWISS},
+  { _T("wxMODERN"), wxMODERN},
+  { _T("wxTELETYPE"), wxTELETYPE},
+  { _T("wxVARIABLE"), wxVARIABLE},
+  { _T("wxFIXED"), wxFIXED},
+  { _T("wxNORMAL"), wxNORMAL},
+  { _T("wxLIGHT"), wxLIGHT},
+  { _T("wxBOLD"), wxBOLD},
+  { _T("wxITALIC"), wxITALIC},
+  { _T("wxSLANT"), wxSLANT},
+  { _T("wxSOLID"), wxSOLID},
+  { _T("wxDOT"), wxDOT},
+  { _T("wxLONG_DASH"), wxLONG_DASH},
+  { _T("wxSHORT_DASH"), wxSHORT_DASH},
+  { _T("wxDOT_DASH"), wxDOT_DASH},
+  { _T("wxUSER_DASH"), wxUSER_DASH},
+  { _T("wxTRANSPARENT"), wxTRANSPARENT},
+  { _T("wxSTIPPLE"), wxSTIPPLE},
+  { _T("wxBDIAGONAL_HATCH"), wxBDIAGONAL_HATCH},
+  { _T("wxCROSSDIAG_HATCH"), wxCROSSDIAG_HATCH},
+  { _T("wxFDIAGONAL_HATCH"), wxFDIAGONAL_HATCH},
+  { _T("wxCROSS_HATCH"), wxCROSS_HATCH},
+  { _T("wxHORIZONTAL_HATCH"), wxHORIZONTAL_HATCH},
+  { _T("wxVERTICAL_HATCH"), wxVERTICAL_HATCH},
+  { _T("wxJOIN_BEVEL"), wxJOIN_BEVEL},
+  { _T("wxJOIN_MITER"), wxJOIN_MITER},
+  { _T("wxJOIN_ROUND"), wxJOIN_ROUND},
+  { _T("wxCAP_ROUND"), wxCAP_ROUND},
+  { _T("wxCAP_PROJECTING"), wxCAP_PROJECTING},
+  { _T("wxCAP_BUTT"), wxCAP_BUTT},
 
   // Logical ops
-  { "wxCLEAR", wxCLEAR},
-  { "wxXOR", wxXOR},
-  { "wxINVERT", wxINVERT},
-  { "wxOR_REVERSE", wxOR_REVERSE},
-  { "wxAND_REVERSE", wxAND_REVERSE},
-  { "wxCOPY", wxCOPY},
-  { "wxAND", wxAND},
-  { "wxAND_INVERT", wxAND_INVERT},
-  { "wxNO_OP", wxNO_OP},
-  { "wxNOR", wxNOR},
-  { "wxEQUIV", wxEQUIV},
-  { "wxSRC_INVERT", wxSRC_INVERT},
-  { "wxOR_INVERT", wxOR_INVERT},
-  { "wxNAND", wxNAND},
-  { "wxOR", wxOR},
-  { "wxSET", wxSET},
-
-  { "wxFLOOD_SURFACE", wxFLOOD_SURFACE},
-  { "wxFLOOD_BORDER", wxFLOOD_BORDER},
-  { "wxODDEVEN_RULE", wxODDEVEN_RULE},
-  { "wxWINDING_RULE", wxWINDING_RULE},
-  { "wxHORIZONTAL", wxHORIZONTAL},
-  { "wxVERTICAL", wxVERTICAL},
-  { "wxBOTH", wxBOTH},
-  { "wxCENTER_FRAME", wxCENTER_FRAME},
-  { "wxOK", wxOK},
-  { "wxYES_NO", wxYES_NO},
-  { "wxCANCEL", wxCANCEL},
-  { "wxYES", wxYES},
-  { "wxNO", wxNO},
-  { "wxICON_EXCLAMATION", wxICON_EXCLAMATION},
-  { "wxICON_HAND", wxICON_HAND},
-  { "wxICON_QUESTION", wxICON_QUESTION},
-  { "wxICON_INFORMATION", wxICON_INFORMATION},
-  { "wxICON_STOP", wxICON_STOP},
-  { "wxICON_ASTERISK", wxICON_ASTERISK},
-  { "wxICON_MASK", wxICON_MASK},
-  { "wxCENTRE", wxCENTRE},
-  { "wxCENTER", wxCENTRE},
-  { "wxUSER_COLOURS", wxUSER_COLOURS},
-  { "wxVERTICAL_LABEL", 0},
-  { "wxHORIZONTAL_LABEL", 0},
+  { _T("wxCLEAR"), wxCLEAR},
+  { _T("wxXOR"), wxXOR},
+  { _T("wxINVERT"), wxINVERT},
+  { _T("wxOR_REVERSE"), wxOR_REVERSE},
+  { _T("wxAND_REVERSE"), wxAND_REVERSE},
+  { _T("wxCOPY"), wxCOPY},
+  { _T("wxAND"), wxAND},
+  { _T("wxAND_INVERT"), wxAND_INVERT},
+  { _T("wxNO_OP"), wxNO_OP},
+  { _T("wxNOR"), wxNOR},
+  { _T("wxEQUIV"), wxEQUIV},
+  { _T("wxSRC_INVERT"), wxSRC_INVERT},
+  { _T("wxOR_INVERT"), wxOR_INVERT},
+  { _T("wxNAND"), wxNAND},
+  { _T("wxOR"), wxOR},
+  { _T("wxSET"), wxSET},
+
+  { _T("wxFLOOD_SURFACE"), wxFLOOD_SURFACE},
+  { _T("wxFLOOD_BORDER"), wxFLOOD_BORDER},
+  { _T("wxODDEVEN_RULE"), wxODDEVEN_RULE},
+  { _T("wxWINDING_RULE"), wxWINDING_RULE},
+  { _T("wxHORIZONTAL"), wxHORIZONTAL},
+  { _T("wxVERTICAL"), wxVERTICAL},
+  { _T("wxBOTH"), wxBOTH},
+  { _T("wxCENTER_FRAME"), wxCENTER_FRAME},
+  { _T("wxOK"), wxOK},
+  { _T("wxYES_NO"), wxYES_NO},
+  { _T("wxCANCEL"), wxCANCEL},
+  { _T("wxYES"), wxYES},
+  { _T("wxNO"), wxNO},
+  { _T("wxICON_EXCLAMATION"), wxICON_EXCLAMATION},
+  { _T("wxICON_HAND"), wxICON_HAND},
+  { _T("wxICON_QUESTION"), wxICON_QUESTION},
+  { _T("wxICON_INFORMATION"), wxICON_INFORMATION},
+  { _T("wxICON_STOP"), wxICON_STOP},
+  { _T("wxICON_ASTERISK"), wxICON_ASTERISK},
+  { _T("wxICON_MASK"), wxICON_MASK},
+  { _T("wxCENTRE"), wxCENTRE},
+  { _T("wxCENTER"), wxCENTRE},
+  { _T("wxUSER_COLOURS"), wxUSER_COLOURS},
+  { _T("wxVERTICAL_LABEL"), 0},
+  { _T("wxHORIZONTAL_LABEL"), 0},
 
   // Bitmap types (not strictly styles)
-  { "wxBITMAP_TYPE_XPM", wxBITMAP_TYPE_XPM},
-  { "wxBITMAP_TYPE_XBM", wxBITMAP_TYPE_XBM},
-  { "wxBITMAP_TYPE_BMP", wxBITMAP_TYPE_BMP},
-  { "wxBITMAP_TYPE_RESOURCE", wxBITMAP_TYPE_BMP_RESOURCE},
-  { "wxBITMAP_TYPE_BMP_RESOURCE", wxBITMAP_TYPE_BMP_RESOURCE},
-  { "wxBITMAP_TYPE_GIF", wxBITMAP_TYPE_GIF},
-  { "wxBITMAP_TYPE_TIF", wxBITMAP_TYPE_TIF},
-  { "wxBITMAP_TYPE_ICO", wxBITMAP_TYPE_ICO},
-  { "wxBITMAP_TYPE_ICO_RESOURCE", wxBITMAP_TYPE_ICO_RESOURCE},
-  { "wxBITMAP_TYPE_CUR", wxBITMAP_TYPE_CUR},
-  { "wxBITMAP_TYPE_CUR_RESOURCE", wxBITMAP_TYPE_CUR_RESOURCE},
-  { "wxBITMAP_TYPE_XBM_DATA", wxBITMAP_TYPE_XBM_DATA},
-  { "wxBITMAP_TYPE_XPM_DATA", wxBITMAP_TYPE_XPM_DATA},
-  { "wxBITMAP_TYPE_ANY", wxBITMAP_TYPE_ANY}
+  { _T("wxBITMAP_TYPE_XPM"), wxBITMAP_TYPE_XPM},
+  { _T("wxBITMAP_TYPE_XBM"), wxBITMAP_TYPE_XBM},
+  { _T("wxBITMAP_TYPE_BMP"), wxBITMAP_TYPE_BMP},
+  { _T("wxBITMAP_TYPE_RESOURCE"), wxBITMAP_TYPE_BMP_RESOURCE},
+  { _T("wxBITMAP_TYPE_BMP_RESOURCE"), wxBITMAP_TYPE_BMP_RESOURCE},
+  { _T("wxBITMAP_TYPE_GIF"), wxBITMAP_TYPE_GIF},
+  { _T("wxBITMAP_TYPE_TIF"), wxBITMAP_TYPE_TIF},
+  { _T("wxBITMAP_TYPE_ICO"), wxBITMAP_TYPE_ICO},
+  { _T("wxBITMAP_TYPE_ICO_RESOURCE"), wxBITMAP_TYPE_ICO_RESOURCE},
+  { _T("wxBITMAP_TYPE_CUR"), wxBITMAP_TYPE_CUR},
+  { _T("wxBITMAP_TYPE_CUR_RESOURCE"), wxBITMAP_TYPE_CUR_RESOURCE},
+  { _T("wxBITMAP_TYPE_XBM_DATA"), wxBITMAP_TYPE_XBM_DATA},
+  { _T("wxBITMAP_TYPE_XPM_DATA"), wxBITMAP_TYPE_XPM_DATA},
+  { _T("wxBITMAP_TYPE_ANY"), wxBITMAP_TYPE_ANY}
 };
 
 static int wxResourceBitListCount = (sizeof(wxResourceBitListTable)/sizeof(wxResourceBitListStruct));
 
-long wxParseWindowStyle(char *bitListString)
+long wxParseWindowStyle(const wxString& bitListString)
 {
   int i = 0;
-  char *word;
+  wxChar *word;
   long bitList = 0;
-  while ((word = wxResourceParseWord(bitListString, &i)))
+  word = wxResourceParseWord(WXSTRINGCAST bitListString, &i);
+  while (word != NULL)
   {
     bool found = FALSE;
     int j;
     for (j = 0; j < wxResourceBitListCount; j++)
-      if (strcmp(wxResourceBitListTable[j].word, word) == 0)
+      if (wxStrcmp(wxResourceBitListTable[j].word, word) == 0)
       {
         bitList |= wxResourceBitListTable[j].bits;
         found = TRUE;
@@ -2056,6 +2062,7 @@ long wxParseWindowStyle(char *bitListString)
       wxLogWarning(_("Unrecognized style %s whilst parsing resource."), word);
       return 0;
     }
+    word = wxResourceParseWord(WXSTRINGCAST bitListString, &i);
   }
   return bitList;
 }
@@ -2064,25 +2071,25 @@ long wxParseWindowStyle(char *bitListString)
  * Load a bitmap from a wxWindows resource, choosing an optimum
  * depth and appropriate type.
  */
-wxBitmap *wxResourceCreateBitmap(char *resource, wxResourceTable *table)
+
+wxBitmap wxResourceCreateBitmap(const wxString& resource, wxResourceTable *table)
 {
   if (!table)
     table = wxDefaultResourceTable;
-    
+
   wxItemResource *item = table->FindResource(resource);
   if (item)
   {
-    if (!item->GetType() || strcmp(item->GetType(), "wxBitmap") != 0)
+    if ((item->GetType() == _T("")) || (item->GetType() != _T("wxBitmap")))
     {
-      wxLogWarning(_("%s not a bitmap resource specification."), resource);
-      return NULL;
+      wxLogWarning(_("%s not a bitmap resource specification."), (const wxChar*) resource);
+      return wxNullBitmap;
     }
     int thisDepth = wxDisplayDepth();
     long thisNoColours = (long)pow(2.0, (double)thisDepth);
 
-    wxItemResource *optResource = NULL;
-    
+    wxItemResource *optResource = (wxItemResource *) NULL;
+
     // Try to find optimum bitmap for this platform/colour depth
     wxNode *node = item->GetChildren().First();
     while (node)
@@ -2162,11 +2169,10 @@ wxBitmap *wxResourceCreateBitmap(char *resource, wxResourceTable *table)
     }
     // If no matching resource, fail.
     if (!optResource)
-      return NULL;
+      return wxNullBitmap;
 
-    char *name = optResource->GetName();
+    wxString name = optResource->GetName();
     int bitmapType = (int)optResource->GetValue1();
-    wxBitmap *bitmap = NULL;
     switch (bitmapType)
     {
       case wxBITMAP_TYPE_XBM_DATA:
@@ -2176,10 +2182,10 @@ wxBitmap *wxResourceCreateBitmap(char *resource, wxResourceTable *table)
         if (!item)
         {
           wxLogWarning(_("Failed to find XBM resource %s.\n"
-                         "Forgot to use wxResourceLoadBitmapData?"), name);
-          return NULL;
+                         "Forgot to use wxResourceLoadBitmapData?"), (const wxChar*) name);
+          return wxNullBitmap;
         }
-        bitmap = new wxBitmap((char *)item->GetValue1(), (int)item->GetValue2(), (int)item->GetValue3()); 
+        return wxBitmap(item->GetValue1(), (int)item->GetValue2(), (int)item->GetValue3()) ;
 #else
         wxLogWarning(_("No XBM facility available!"));
 #endif
@@ -2187,15 +2193,15 @@ wxBitmap *wxResourceCreateBitmap(char *resource, wxResourceTable *table)
       }
       case wxBITMAP_TYPE_XPM_DATA:
       {
-#if (defined(__WXGTK__)) || (defined(__WXMSW__) && USE_XPM_IN_MSW)
+#if (defined(__WXGTK__)) || (defined(__WXMSW__) && wxUSE_XPM_IN_MSW)
         wxItemResource *item = table->FindResource(name);
         if (!item)
         {
           wxLogWarning(_("Failed to find XPM resource %s.\n"
-                         "Forgot to use wxResourceLoadBitmapData?"), name);
-          return NULL;
+                         "Forgot to use wxResourceLoadBitmapData?"), (const wxChar*) name);
+          return wxNullBitmap;
         }
-        bitmap = new wxBitmap(item->GetValue1());
+        return wxBitmap((char **)item->GetValue1());
 #else
         wxLogWarning(_("No XPM facility available!"));
 #endif
@@ -2203,27 +2209,16 @@ wxBitmap *wxResourceCreateBitmap(char *resource, wxResourceTable *table)
       }
       default:
       {
-        bitmap = new wxBitmap(name, bitmapType);
+        return wxBitmap(name, bitmapType);
         break;
       }
     }
-    if (!bitmap)
-      return NULL;
-      
-    if (bitmap->Ok())
-    {
-      return bitmap;
-    }
-    else
-    {
-      delete bitmap;
-      return NULL;
-    }
+    return wxNullBitmap;
   }
   else
   {
-    wxLogWarning(_("Bitmap resource specification %s not found."), resource);
-    return NULL;
+    wxLogWarning(_("Bitmap resource specification %s not found."), (const wxChar*) resource);
+    return wxNullBitmap;
   }
 }
 
@@ -2231,25 +2226,25 @@ wxBitmap *wxResourceCreateBitmap(char *resource, wxResourceTable *table)
  * Load an icon from a wxWindows resource, choosing an optimum
  * depth and appropriate type.
  */
-wxIcon *wxResourceCreateIcon(char *resource, wxResourceTable *table)
+
+wxIcon wxResourceCreateIcon(const wxString& resource, wxResourceTable *table)
 {
   if (!table)
-  table = wxDefaultResourceTable;
-  
+    table = wxDefaultResourceTable;
+
   wxItemResource *item = table->FindResource(resource);
   if (item)
   {
-    if (!item->GetType() || strcmp(item->GetType(), "wxIcon") != 0)
+    if ((item->GetType() == _T("")) || wxStrcmp(item->GetType(), _T("wxIcon")) != 0)
     {
-      wxLogWarning(_("%s not an icon resource specification."), resource);
-      return NULL;
+      wxLogWarning(_("%s not an icon resource specification."), (const wxChar*) resource);
+      return wxNullIcon;
     }
     int thisDepth = wxDisplayDepth();
     long thisNoColours = (long)pow(2.0, (double)thisDepth);
 
-    wxItemResource *optResource = NULL;
-    
+    wxItemResource *optResource = (wxItemResource *) NULL;
+
     // Try to find optimum icon for this platform/colour depth
     wxNode *node = item->GetChildren().First();
     while (node)
@@ -2329,11 +2324,10 @@ wxIcon *wxResourceCreateIcon(char *resource, wxResourceTable *table)
     }
     // If no matching resource, fail.
     if (!optResource)
-      return NULL;
+      return wxNullIcon;
 
-    char *name = optResource->GetName();
+    wxString name = optResource->GetName();
     int bitmapType = (int)optResource->GetValue1();
-    wxIcon *icon = NULL;
     switch (bitmapType)
     {
       case wxBITMAP_TYPE_XBM_DATA:
@@ -2343,10 +2337,10 @@ wxIcon *wxResourceCreateIcon(char *resource, wxResourceTable *table)
         if (!item)
         {
           wxLogWarning(_("Failed to find XBM resource %s.\n"
-                         "Forgot to use wxResourceLoadIconData?"), name);
-          return NULL;
+                         "Forgot to use wxResourceLoadIconData?"), (const wxChar*) name);
+          return wxNullIcon;
         }
-        icon = new wxIcon((char **)item->GetValue1(), (int)item->GetValue2(), (int)item->GetValue3()); 
+        return wxIcon((const char **)item->GetValue1(), (int)item->GetValue2(), (int)item->GetValue3());
 #else
         wxLogWarning(_("No XBM facility available!"));
 #endif
@@ -2356,7 +2350,7 @@ wxIcon *wxResourceCreateIcon(char *resource, wxResourceTable *table)
       {
       // *** XPM ICON NOT YET IMPLEMENTED IN WXWINDOWS ***
 /*
-#if (defined(__WXGTK__)) || (defined(__WXMSW__) && USE_XPM_IN_MSW)
+#if (defined(__WXGTK__)) || (defined(__WXMSW__) && wxUSE_XPM_IN_MSW)
         wxItemResource *item = table->FindResource(name);
         if (!item)
         {
@@ -2365,7 +2359,7 @@ wxIcon *wxResourceCreateIcon(char *resource, wxResourceTable *table)
           wxLogWarning(buf);
           return NULL;
         }
-        icon = new wxIcon((char **)item->GetValue1());
+        return wxIcon((char **)item->GetValue1());
 #else
         wxLogWarning(_("No XPM facility available!"));
 #endif
@@ -2376,30 +2370,19 @@ wxIcon *wxResourceCreateIcon(char *resource, wxResourceTable *table)
       default:
       {
 #ifdef __WXGTK__
-        wxLogWarning(_("Icon resource specification %s not found."), resource);
+        wxLogWarning(_("Icon resource specification %s not found."), (const wxChar*) resource);
 #else
-        icon = new wxIcon(name, bitmapType);
+        return wxIcon(name, bitmapType);
 #endif
         break;
       }
     }
-    if (!icon)
-      return NULL;
-      
-    if (icon->Ok())
-    {
-      return icon;
-    }
-    else
-    {
-      delete icon;
-      return NULL;
-    }
+    return wxNullIcon;
   }
   else
   {
-    wxLogWarning(_("Icon resource specification %s not found."), resource);
-    return NULL;
+    wxLogWarning(_("Icon resource specification %s not found."), (const wxChar*) resource);
+    return wxNullIcon;
   }
 }
 
@@ -2410,7 +2393,7 @@ wxMenu *wxResourceCreateMenu(wxItemResource *item)
   while (node)
   {
     wxItemResource *child = (wxItemResource *)node->Data();
-    if (child->GetType() && strcmp(child->GetType(), "wxMenuSeparator") == 0)
+    if ((child->GetType() != _T("")) && (child->GetType() == _T("wxMenuSeparator")))
       menu->AppendSeparator();
     else if (child->GetChildren().Number() > 0)
     {
@@ -2427,13 +2410,13 @@ wxMenu *wxResourceCreateMenu(wxItemResource *item)
   return menu;
 }
 
-wxMenuBar *wxResourceCreateMenuBar(char *resource, wxResourceTable *table, wxMenuBar *menuBar)
+wxMenuBar *wxResourceCreateMenuBar(const wxString& resource, wxResourceTable *table, wxMenuBar *menuBar)
 {
   if (!table)
     table = wxDefaultResourceTable;
-    
+
   wxItemResource *menuResource = table->FindResource(resource);
-  if (menuResource && menuResource->GetType() && strcmp(menuResource->GetType(), "wxMenu") == 0)
+  if (menuResource && (menuResource->GetType() != _T("")) && (menuResource->GetType() == _T("wxMenu")))
   {
     if (!menuBar)
       menuBar = new wxMenuBar;
@@ -2448,48 +2431,48 @@ wxMenuBar *wxResourceCreateMenuBar(char *resource, wxResourceTable *table, wxMen
     }
     return menuBar;
   }
-  return NULL;
+  return (wxMenuBar *) NULL;
 }
 
-wxMenu *wxResourceCreateMenu(char *resource, wxResourceTable *table)
+wxMenu *wxResourceCreateMenu(const wxString& resource, wxResourceTable *table)
 {
   if (!table)
     table = wxDefaultResourceTable;
-    
+
   wxItemResource *menuResource = table->FindResource(resource);
-  if (menuResource && menuResource->GetType() && strcmp(menuResource->GetType(), "wxMenu") == 0)
+  if (menuResource && (menuResource->GetType() != _T("")) && (menuResource->GetType() == _T("wxMenu")))
 //  if (menuResource && (menuResource->GetType() == wxTYPE_MENU))
     return wxResourceCreateMenu(menuResource);
-  return NULL;
+  return (wxMenu *) NULL;
 }
 
 // Global equivalents (so don't have to refer to default table explicitly)
-bool wxResourceParseData(char *resource, wxResourceTable *table)
+bool wxResourceParseData(const wxString& resource, wxResourceTable *table)
 {
   if (!table)
     table = wxDefaultResourceTable;
-    
+
   return table->ParseResourceData(resource);
 }
 
-bool wxResourceParseFile(char *filename, wxResourceTable *table)
+bool wxResourceParseFile(const wxString& filename, wxResourceTable *table)
 {
   if (!table)
     table = wxDefaultResourceTable;
-    
+
   return table->ParseResourceFile(filename);
 }
 
 // Register XBM/XPM data
-bool wxResourceRegisterBitmapData(char *name, char bits[], int width, int height, wxResourceTable *table)
+bool wxResourceRegisterBitmapData(const wxString& name, char bits[], int width, int height, wxResourceTable *table)
 {
   if (!table)
     table = wxDefaultResourceTable;
-    
+
   return table->RegisterResourceBitmapData(name, bits, width, height);
 }
 
-bool wxResourceRegisterBitmapData(char *name, char **data, wxResourceTable *table)
+bool wxResourceRegisterBitmapData(const wxString& name, char **data, wxResourceTable *table)
 {
   if (!table)
     table = wxDefaultResourceTable;
@@ -2509,33 +2492,33 @@ void wxResourceClear(wxResourceTable *table)
  * Identifiers
  */
 
-bool wxResourceAddIdentifier(char *name, int value, wxResourceTable *table)
+bool wxResourceAddIdentifier(const wxString& name, int value, wxResourceTable *table)
 {
   if (!table)
     table = wxDefaultResourceTable;
-    
-  table->identifiers.Put(name, (wxObject *)value);
+
+  table->identifiers.Put(name, (wxObject *)(long)value);
   return TRUE;
 }
 
-int wxResourceGetIdentifier(char *name, wxResourceTable *table)
+int wxResourceGetIdentifier(const wxString& name, wxResourceTable *table)
 {
   if (!table)
     table = wxDefaultResourceTable;
-    
-  return (int)table->identifiers.Get(name);
+
+  return (int)(long)table->identifiers.Get(name);
 }
 
 /*
  * Parse #include file for #defines (only)
  */
 
-bool wxResourceParseIncludeFile(char *f, wxResourceTable *table)
+bool wxResourceParseIncludeFile(const wxString& f, wxResourceTable *table)
 {
   if (!table)
     table = wxDefaultResourceTable;
-    
-  FILE *fd = fopen(f, "r");
+
+  FILE *fd = fopen(f.fn_str(), "r");
   if (!fd)
   {
     return FALSE;
@@ -2545,12 +2528,12 @@ bool wxResourceParseIncludeFile(char *f, wxResourceTable *table)
     if (strcmp(wxResourceBuffer, "#define") == 0)
     {
       wxGetResourceToken(fd);
-      char *name = copystring(wxResourceBuffer);
+      wxChar *name = copystring(wxConvCurrent->cMB2WX(wxResourceBuffer));
       wxGetResourceToken(fd);
-      char *value = copystring(wxResourceBuffer);
-      if (isdigit(value[0]))
+      wxChar *value = copystring(wxConvCurrent->cMB2WX(wxResourceBuffer));
+      if (wxIsdigit(value[0]))
       {
-        int val = (int)atol(value);
+        int val = (int)wxAtol(value);
         wxResourceAddIdentifier(name, val, table);
       }
       delete[] name;
@@ -2577,7 +2560,7 @@ static int getc_string(char *s)
   }
 }
 
-static int ungetc_string(void)
+static int ungetc_string()
 {
   wxResourceStringPtr --;
   return 0;
@@ -2585,49 +2568,53 @@ static int ungetc_string(void)
 
 bool wxEatWhiteSpaceString(char *s)
 {
-  int ch = getc_string(s);
-  if (ch == EOF)
-    return TRUE;
-    
-  if ((ch != ' ') && (ch != '/') && (ch != ' ') && (ch != 10) && (ch != 13) && (ch != 9))
-  {
-    ungetc_string();
-    return TRUE;
-  }
+  int ch = 0;
 
-  // Eat whitespace
-  while (ch == ' ' || ch == 10 || ch == 13 || ch == 9)
-    ch = getc_string(s);
-  // Check for comment
-  if (ch == '/')
-  {
-    ch = getc_string(s);
-    if (ch == '*')
-    {
-      bool finished = FALSE;
-      while (!finished)
+   while ((ch = getc_string(s)) != EOF)
       {
-        ch = getc_string(s);
-        if (ch == EOF)
-          return FALSE;
-        if (ch == '*')
-        {
-          int newCh = getc_string(s);
-          if (newCh == '/')
-            finished = TRUE;
-          else
-          {
+      switch (ch)
+         {
+         case ' ':
+         case 0x0a:
+         case 0x0d:
+         case 0x09:
+            break;
+         case '/':
+            {
+            int prev_ch = ch;
+            ch = getc_string(s);
+            if (ch == EOF)
+               {
+               ungetc_string();
+               return TRUE;
+               }
+
+            if (ch == '*')
+               {
+               // Eat C comment
+               prev_ch = 0;
+               while ((ch = getc_string(s)) != EOF)
+                  {
+                  if (ch == '/' && prev_ch == '*')
+                     break;
+                  prev_ch = ch;
+                  }
+               }
+            else
+               {
+               ungetc_string();
+               ungetc_string();
+               return TRUE;
+               }
+            }
+            break;
+         default:
             ungetc_string();
-          }
-        }
+            return TRUE;
+
+         }
       }
-    }
-    else // False alarm
-      return FALSE;
-  }
-  else if (ch != EOF)
-    ungetc_string();
-  return wxEatWhiteSpaceString(s);
+   return FALSE;
 }
 
 bool wxGetResourceTokenString(char *s)
@@ -2683,7 +2670,7 @@ bool wxGetResourceTokenString(char *s)
         wxReallocateResourceBuffer();
       wxResourceBuffer[wxResourceBufferCount] = (char)ch;
       wxResourceBufferCount ++;
-      
+
       ch = getc_string(s);
     }
     wxResourceBuffer[wxResourceBufferCount] = 0;
@@ -2698,12 +2685,12 @@ bool wxGetResourceTokenString(char *s)
   static char *name = "....";
   with possible comments.
  */
-bool wxResourceReadOneResourceString(char *s, PrologDatabase& db, bool *eof, wxResourceTable *table)
+
+bool wxResourceReadOneResourceString(char *s, wxExprDatabase& db, bool *eof, wxResourceTable *table)
 {
   if (!table)
     table = wxDefaultResourceTable;
-    
+
   // static or #define
   if (!wxGetResourceTokenString(s))
   {
@@ -2714,12 +2701,12 @@ bool wxResourceReadOneResourceString(char *s, PrologDatabase& db, bool *eof, wxR
   if (strcmp(wxResourceBuffer, "#define") == 0)
   {
     wxGetResourceTokenString(s);
-    char *name = copystring(wxResourceBuffer);
+    wxChar *name = copystring(wxConvCurrent->cMB2WX(wxResourceBuffer));
     wxGetResourceTokenString(s);
-    char *value = copystring(wxResourceBuffer);
-    if (isalpha(value[0]))
+    wxChar *value = copystring(wxConvCurrent->cMB2WX(wxResourceBuffer));
+    if (wxIsdigit(value[0]))
     {
-      int val = (int)atol(value);
+      int val = (int)wxAtol(value);
       wxResourceAddIdentifier(name, val, table);
     }
     else
@@ -2731,7 +2718,7 @@ bool wxResourceReadOneResourceString(char *s, PrologDatabase& db, bool *eof, wxR
     }
     delete[] name;
     delete[] value;
+
     return TRUE;
   }
 /*
@@ -2757,10 +2744,10 @@ bool wxResourceReadOneResourceString(char *s, PrologDatabase& db, bool *eof, wxR
 */
   else if (strcmp(wxResourceBuffer, "static") != 0)
   {
-    char buf[300];
-    strcpy(buf, _("Found "));
-    strncat(buf, wxResourceBuffer, 30);
-    strcat(buf, _(", expected static, #include or #define\nwhilst parsing resource."));
+    wxChar buf[300];
+    wxStrcpy(buf, _("Found "));
+    wxStrncat(buf, wxConvCurrent->cMB2WX(wxResourceBuffer), 30);
+    wxStrcat(buf, _(", expected static, #include or #define\nwhilst parsing resource."));
     wxLogWarning(buf);
     return FALSE;
   }
@@ -2778,7 +2765,7 @@ bool wxResourceReadOneResourceString(char *s, PrologDatabase& db, bool *eof, wxR
     wxLogWarning(_("Expected 'char' whilst parsing resource."));
     return FALSE;
   }
-    
+
   // *name
   if (!wxGetResourceTokenString(s))
   {
@@ -2792,9 +2779,10 @@ bool wxResourceReadOneResourceString(char *s, PrologDatabase& db, bool *eof, wxR
     wxLogWarning(_("Expected '*' whilst parsing resource."));
     return FALSE;
   }
-  char nameBuf[100];
-  strncpy(nameBuf, wxResourceBuffer+1, 99);
-    
+  wxChar nameBuf[100];
+  wxMB2WX(nameBuf, wxResourceBuffer+1, 99);
+  nameBuf[99] = 0;
+
   // =
   if (!wxGetResourceTokenString(s))
   {
@@ -2836,11 +2824,11 @@ bool wxResourceParseString(char *s, wxResourceTable *table)
 {
   if (!table)
     table = wxDefaultResourceTable;
-    
+
   if (!s)
     return FALSE;
-    
-  // Turn backslashes into spaces 
+
+  // Turn backslashes into spaces
   if (s)
   {
     int len = strlen(s);
@@ -2853,7 +2841,7 @@ bool wxResourceParseString(char *s, wxResourceTable *table)
       }
   }
 
-  PrologDatabase db;
+  wxExprDatabase db;
   wxResourceStringPtr = 0;
 
   bool eof = FALSE;
@@ -2868,35 +2856,42 @@ bool wxResourceParseString(char *s, wxResourceTable *table)
  * resource loading facility
  */
 
-bool wxWindow::LoadFromResource(wxWindow *parent, const wxString& resourceName, const wxResourceTable *table)
+bool wxWindowBase::LoadFromResource(wxWindow *parent, const wxString& resourceName, const wxResourceTable *table)
 {
   if (!table)
     table = wxDefaultResourceTable;
-    
-  wxItemResource *resource = table->FindResource((const char *)resourceName);
+
+  wxItemResource *resource = table->FindResource((const wxChar *)resourceName);
 //  if (!resource || (resource->GetType() != wxTYPE_DIALOG_BOX))
-  if (!resource || !resource->GetType() ||
-    ! ((strcmp(resource->GetType(), "wxDialog") == 0) || (strcmp(resource->GetType(), "wxPanel") == 0)))
+  if (!resource || (resource->GetType() == _T("")) ||
+    ! ((resource->GetType() == _T("wxDialog")) || (resource->GetType() == _T("wxPanel"))))
     return FALSE;
 
-  char *title = resource->GetTitle();
+  wxString title(resource->GetTitle());
   long theWindowStyle = resource->GetStyle();
   bool isModal = (resource->GetValue1() != 0);
   int x = resource->GetX();
   int y = resource->GetY();
   int width = resource->GetWidth();
   int height = resource->GetHeight();
-  char *name = resource->GetName();
-
-  wxFont *theFont = resource->GetFont();
+  wxString name = resource->GetName();
 
   if (IsKindOf(CLASSINFO(wxDialog)))
   {
     wxDialog *dialogBox = (wxDialog *)this;
-   long modalStyle = isModal ? wxDIALOG_MODAL : 0;
+    long modalStyle = isModal ? wxDIALOG_MODAL : 0;
     if (!dialogBox->Create(parent, -1, title, wxPoint(x, y), wxSize(width, height), theWindowStyle|modalStyle, name))
       return FALSE;
-    dialogBox->SetClientSize(width, height);
+
+    // Only reset the client size if we know we're not going to do it again below.
+    if ((resource->GetResourceStyle() & wxRESOURCE_DIALOG_UNITS) == 0)
+      dialogBox->SetClientSize(width, height);
+  }
+  else if (IsKindOf(CLASSINFO(wxPanel)))
+  {
+    wxPanel* panel = (wxPanel *)this;
+    if (!panel->Create(parent, -1, wxPoint(x, y), wxSize(width, height), theWindowStyle, name))
+      return FALSE;
   }
   else
   {
@@ -2904,36 +2899,61 @@ bool wxWindow::LoadFromResource(wxWindow *parent, const wxString& resourceName,
       return FALSE;
   }
 
-  if (theFont)
-    SetFont(*theFont);
+  if ((resource->GetResourceStyle() & wxRESOURCE_USE_DEFAULTS) != 0)
+  {
+    // No need to do this since it's done in wxPanel or wxDialog constructor.
+    // SetFont(wxSystemSettings::GetSystemFont(wxSYS_DEFAULT_GUI_FONT));
+  }
+  else
+  {
+    if (resource->GetFont().Ok())
+      SetFont(resource->GetFont());
+    if (resource->GetBackgroundColour().Ok())
+      SetBackgroundColour(resource->GetBackgroundColour());
+  }
+
+  // Should have some kind of font at this point
+  if (!GetFont().Ok())
+      SetFont(wxSystemSettings::GetSystemFont(wxSYS_DEFAULT_GUI_FONT));
+  if (!GetBackgroundColour().Ok())
+      SetBackgroundColour(wxSystemSettings::GetSystemColour(wxSYS_COLOUR_3DFACE));
 
-  if (resource->GetBackgroundColour())
-    SetBackgroundColour(*resource->GetBackgroundColour());
+  // Only when we've created the window and set the font can we set the correct size,
+  // if based on dialog units.
+  if ((resource->GetResourceStyle() & wxRESOURCE_DIALOG_UNITS) != 0)
+  {
+    wxSize sz = ConvertDialogToPixels(wxSize(width, height));
+    SetClientSize(sz.x, sz.y);
+
+    wxPoint pt = ConvertDialogToPixels(wxPoint(x, y));
+    Move(pt.x, pt.y);
+  }
 
-   // TODO
-  if (resource->GetLabelColour())
-    SetForegroundColour(*resource->GetLabelColour());
-  else if (resource->GetButtonColour())
-    SetForegroundColour(*resource->GetButtonColour());
-    
   // Now create children
   wxNode *node = resource->GetChildren().First();
   while (node)
   {
     wxItemResource *childResource = (wxItemResource *)node->Data();
-    
-    (void) CreateItem(childResource, table);
+
+    (void) CreateItem(childResource, resource, table);
 
     node = node->Next();
   }
   return TRUE;
 }
 
-wxControl *wxWindow::CreateItem(const wxItemResource *resource, const wxResourceTable *table)
+wxControl *wxWindowBase::CreateItem(const wxItemResource *resource, const wxItemResource* parentResource, const wxResourceTable *table)
 {
   if (!table)
     table = wxDefaultResourceTable;
-  return table->CreateItem((wxWindow *)this, (wxItemResource *)resource);
+  return table->CreateItem((wxWindow *)this, resource, parentResource);
 }
 
-#endif // USE_WX_RESOURCES
+#ifdef __VISUALC__
+    #pragma warning(default:4706)   // assignment within conditional expression
+#endif // VC++
+
+#endif
+  // BC++/Win16
+
+#endif // wxUSE_WX_RESOURCES