// Created: 04/01/98
// RCS-ID: $Id$
// Copyright: (c) Julian Smart and Markus Holzem
-// Licence: wxWindows license
+// Licence: wxWindows license
/////////////////////////////////////////////////////////////////////////////
#ifdef __GNUG__
#include "wx/validate.h"
+#include "wx/log.h"
+
#if USE_WX_RESOURCES
#include <ctype.h>
delete wxDefaultResourceTable;
}
-void wxWarning(char *msg)
+void wxLogWarning(char *msg)
{
wxMessageBox(msg, _("Warning"), wxOK);
}
PrologDatabase db;
if (!db.ReadPrologFromString(data))
{
- wxWarning(_("Ill-formed resource file syntax."));
+ wxLogWarning(_("Ill-formed resource file syntax."));
return FALSE;
}
{
int id = childResource->GetId();
if ( id == 0 )
- id = -1;
+ id = -1;
wxControl *control = NULL;
wxString itemType(childResource->GetType());
if (bitmap)
control = new wxBitmapButton(parent, id, *bitmap,
wxPoint(childResource->GetX(), childResource->GetY()),
- wxSize(childResource->GetWidth(), childResource->GetHeight()),
- childResource->GetStyle(), wxDefaultValidator, childResource->GetName());
+ wxSize(childResource->GetWidth(), childResource->GetHeight()),
+ 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()),
+ wxSize(childResource->GetWidth(), childResource->GetHeight()),
childResource->GetStyle(), wxDefaultValidator, childResource->GetName());
}
else if (itemType == wxString("wxMessage") || itemType == wxString("wxStaticText") ||
- itemType == wxString("wxStaticBitmap"))
+ itemType == wxString("wxStaticBitmap"))
{
if (childResource->GetValue4())
{
if (bitmap)
control = new wxStaticBitmap(parent, id, *bitmap,
wxPoint(childResource->GetX(), childResource->GetY()),
- wxSize(childResource->GetWidth(), childResource->GetHeight()),
+ wxSize(childResource->GetWidth(), childResource->GetHeight()),
childResource->GetStyle(), childResource->GetName());
#endif
}
{
control = new wxStaticText(parent, id, childResource->GetTitle(),
wxPoint(childResource->GetX(), childResource->GetY()),
- wxSize(childResource->GetWidth(), childResource->GetHeight()),
+ wxSize(childResource->GetWidth(), childResource->GetHeight()),
childResource->GetStyle(), childResource->GetName());
}
}
{
control = new wxTextCtrl(parent, id, childResource->GetValue4(),
wxPoint(childResource->GetX(), childResource->GetY()),
- wxSize(childResource->GetWidth(), childResource->GetHeight()),
+ wxSize(childResource->GetWidth(), childResource->GetHeight()),
childResource->GetStyle(), wxDefaultValidator, childResource->GetName());
}
else if (itemType == wxString("wxCheckBox"))
{
control = new wxCheckBox(parent, id, childResource->GetTitle(),
wxPoint(childResource->GetX(), childResource->GetY()),
- wxSize(childResource->GetWidth(), childResource->GetHeight()),
+ wxSize(childResource->GetWidth(), childResource->GetHeight()),
childResource->GetStyle(), wxDefaultValidator, childResource->GetName());
((wxCheckBox *)control)->SetValue((childResource->GetValue1() != 0));
{
control = new wxGauge(parent, id, (int)childResource->GetValue2(),
wxPoint(childResource->GetX(), childResource->GetY()),
- wxSize(childResource->GetWidth(), childResource->GetHeight()),
+ wxSize(childResource->GetWidth(), childResource->GetHeight()),
childResource->GetStyle(), wxDefaultValidator, childResource->GetName());
((wxGauge *)control)->SetValue((int)childResource->GetValue1());
{
control = new wxRadioButton(parent, id, childResource->GetTitle(), // (int)childResource->GetValue1(),
wxPoint(childResource->GetX(), childResource->GetY()),
- wxSize(childResource->GetWidth(), childResource->GetHeight()),
+ wxSize(childResource->GetWidth(), childResource->GetHeight()),
childResource->GetStyle(), wxDefaultValidator, childResource->GetName());
}
#endif
{
control = new wxStaticBox(parent, id, childResource->GetTitle(),
wxPoint(childResource->GetX(), childResource->GetY()),
- wxSize(childResource->GetWidth(), childResource->GetHeight()),
+ wxSize(childResource->GetWidth(), childResource->GetHeight()),
childResource->GetStyle(), childResource->GetName());
}
else if (itemType == wxString("wxListBox"))
}
control = new wxListBox(parent, id,
wxPoint(childResource->GetX(), childResource->GetY()),
- wxSize(childResource->GetWidth(), childResource->GetHeight()),
+ wxSize(childResource->GetWidth(), childResource->GetHeight()),
noStrings, strings, childResource->GetStyle(), wxDefaultValidator, childResource->GetName());
if (strings)
}
control = new wxChoice(parent, id,
wxPoint(childResource->GetX(), childResource->GetY()),
- wxSize(childResource->GetWidth(), childResource->GetHeight()),
+ wxSize(childResource->GetWidth(), childResource->GetHeight()),
noStrings, strings, childResource->GetStyle(), wxDefaultValidator, childResource->GetName());
if (strings)
}
control = new wxComboBox(parent, id, childResource->GetValue4(),
wxPoint(childResource->GetX(), childResource->GetY()),
- wxSize(childResource->GetWidth(), childResource->GetHeight()),
+ wxSize(childResource->GetWidth(), childResource->GetHeight()),
noStrings, strings, childResource->GetStyle(), wxDefaultValidator, childResource->GetName());
if (strings)
}
control = new wxRadioBox(parent, (wxWindowID) id, wxString(childResource->GetTitle()),
wxPoint(childResource->GetX(), childResource->GetY()),
- wxSize(childResource->GetWidth(), childResource->GetHeight()),
+ wxSize(childResource->GetWidth(), childResource->GetHeight()),
noStrings, strings, (int)childResource->GetValue1(), childResource->GetStyle(), wxDefaultValidator,
- childResource->GetName());
+ childResource->GetName());
if (strings)
delete[] strings;
while (node)
{
PrologExpr *clause = (PrologExpr *)node->Data();
- wxString functor(clause->Functor());
+ wxString functor(clause->Functor());
wxItemResource *item = NULL;
if (functor == "dialog")
static bool wxIsValidControlClass(const wxString& c)
{
- int i;
- for ( i = 0; i < g_ValidControlClassesCount; i++)
- {
- if ( c == g_ValidControlClasses[i] )
- return TRUE;
- }
- return FALSE;
+ int i;
+ for ( i = 0; i < g_ValidControlClassesCount; i++)
+ {
+ if ( c == g_ValidControlClasses[i] )
+ return TRUE;
+ }
+ return FALSE;
}
wxItemResource *wxResourceInterpretDialog(wxResourceTable& table, PrologExpr *expr, bool isPanel)
if ( expr1->Type() == PrologString || expr1->Type() == PrologWord )
{
- if ( wxIsValidControlClass(expr1->StringValue()) )
- {
- count = 1;
- controlType = expr1->StringValue();
- }
- else
- {
+ if ( wxIsValidControlClass(expr1->StringValue()) )
+ {
+ count = 1;
+ controlType = expr1->StringValue();
+ }
+ else
+ {
wxString str(expr1->StringValue());
id = wxResourceGetIdentifier(WXSTRINGCAST str, &table);
if (id == 0)
{
- char buf[300];
- sprintf(buf, _("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());
- wxWarning(buf);
- delete controlItem;
- return NULL;
+ 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());
+ delete controlItem;
+ return NULL;
}
- else
- {
- // Success - we have an id, so the 2nd element must be the control class.
- controlType = expr->Nth(1)->StringValue();
- count = 2;
- }
- }
+ else
+ {
+ // Success - we have an id, so the 2nd element must be the control class.
+ controlType = expr->Nth(1)->StringValue();
+ count = 2;
+ }
+ }
}
else if (expr1->Type() == PrologInteger)
{
id = (int)expr1->IntegerValue();
- // Success - we have an id, so the 2nd element must be the control class.
- controlType = expr->Nth(1)->StringValue();
- count = 2;
+ // Success - we have an id, so the 2nd element must be the control class.
+ controlType = expr->Nth(1)->StringValue();
+ count = 2;
}
expr1 = expr->Nth(count);
count ++;
if ( expr1 )
- title = expr1->StringValue();
+ title = expr1->StringValue();
expr1 = expr->Nth(count);
count ++;
{
// Check for default value
if (expr->Nth(count) && (expr->Nth(count)->Type() == PrologInteger))
- {
+ {
controlItem->SetValue1(expr->Nth(count)->IntegerValue());
- count ++;
+ count ++;
if (expr->Nth(count) && expr->Nth(count)->Type() == PrologList)
controlItem->SetFont(wxResourceInterpretFontSpec(expr->Nth(count)));
}
{
// Check for default value
if (expr->Nth(count) && (expr->Nth(count)->Type() == PrologInteger))
- {
+ {
controlItem->SetValue1(expr->Nth(count)->IntegerValue());
- count ++;
+ count ++;
if (expr->Nth(count) && expr->Nth(count)->Type() == PrologList)
controlItem->SetFont(wxResourceInterpretFontSpec(expr->Nth(count)));
}
{
// 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);
- count ++;
+ count ++;
if (expr->Nth(count) && expr->Nth(count)->Type() == PrologList)
- {
+ {
// controlItem->SetLabelFont(wxResourceInterpretFontSpec(expr->Nth(count)));
- // Do nothing - no label font any more
- count ++;
+ // Do nothing - no label font any more
+ count ++;
if (expr->Nth(count) && expr->Nth(count)->Type() == PrologList)
controlItem->SetFont(wxResourceInterpretFontSpec(expr->Nth(count)));
- }
- }
+ }
+ }
}
else if (controlType == "wxMessage" || controlType == "wxStaticText")
{
{
// Check for default value
if (expr->Nth(count) && (expr->Nth(count)->Type() == PrologInteger))
- {
+ {
controlItem->SetValue1(expr->Nth(count)->IntegerValue());
- count ++;
+ count ++;
// Check for range
if (expr->Nth(count) && (expr->Nth(count)->Type() == PrologInteger))
- {
+ {
controlItem->SetValue2(expr->Nth(count)->IntegerValue());
- count ++;
+ count ++;
if (expr->Nth(count) && expr->Nth(count)->Type() == PrologList)
{
- // controlItem->SetLabelFont(wxResourceInterpretFontSpec(expr->Nth(count)));
- // Do nothing
- count ++;
+ // controlItem->SetLabelFont(wxResourceInterpretFontSpec(expr->Nth(count)));
+ // Do nothing
+ count ++;
if (expr->Nth(count) && expr->Nth(count)->Type() == PrologList)
controlItem->SetFont(wxResourceInterpretFontSpec(expr->Nth(count)));
- }
- }
- }
+ }
+ }
+ }
}
else if (controlType == "wxSlider")
{
// Check for default value
if (expr->Nth(count) && (expr->Nth(count)->Type() == PrologInteger))
- {
+ {
controlItem->SetValue1(expr->Nth(count)->IntegerValue());
- count ++;
+ count ++;
// Check for min
if (expr->Nth(count) && (expr->Nth(count)->Type() == PrologInteger))
- {
+ {
controlItem->SetValue2(expr->Nth(count)->IntegerValue());
- count ++;
+ count ++;
// Check for max
if (expr->Nth(count) && (expr->Nth(count)->Type() == PrologInteger))
- {
+ {
controlItem->SetValue3(expr->Nth(count)->IntegerValue());
- count ++;
+ count ++;
if (expr->Nth(count) && expr->Nth(count)->Type() == PrologList)
- {
+ {
// controlItem->SetLabelFont(wxResourceInterpretFontSpec(expr->Nth(count)));
- // do nothing
- count ++;
+ // do nothing
+ count ++;
if (expr->Nth(count) && expr->Nth(count)->Type() == PrologList)
controlItem->SetFont(wxResourceInterpretFontSpec(expr->Nth(count)));
- }
- }
- }
- }
+ }
+ }
+ }
+ }
}
else if (controlType == "wxScrollBar")
{
// DEFAULT VALUE
if (expr->Nth(count) && (expr->Nth(count)->Type() == PrologInteger))
- {
+ {
controlItem->SetValue1(expr->Nth(count)->IntegerValue());
- count ++;
+ count ++;
// PAGE LENGTH
if (expr->Nth(count) && (expr->Nth(count)->Type() == PrologInteger))
- {
+ {
controlItem->SetValue2(expr->Nth(count)->IntegerValue());
- count ++;
+ count ++;
// OBJECT LENGTH
if (expr->Nth(count) && (expr->Nth(count)->Type() == PrologInteger))
- {
+ {
controlItem->SetValue3(expr->Nth(count)->IntegerValue());
- count ++;
+ count ++;
// VIEW LENGTH
if (expr->Nth(count) && (expr->Nth(count)->Type() == PrologInteger))
controlItem->SetValue5(expr->Nth(count)->IntegerValue());
- }
- }
- }
+ }
+ }
+ }
}
else if (controlType == "wxListBox")
{
stringExpr = stringExpr->GetNext();
}
controlItem->SetStringValues(stringList);
- count ++;
+ count ++;
// Check for wxSINGLE/wxMULTIPLE
PrologExpr *mult = NULL;
controlItem->SetValue1(wxLB_MULTIPLE);
else if (m == "wxEXTENDED")
controlItem->SetValue1(wxLB_EXTENDED);
- count ++;
+ count ++;
if (expr->Nth(count) && expr->Nth(count)->Type() == PrologList)
- {
+ {
// controlItem->SetLabelFont(wxResourceInterpretFontSpec(expr->Nth(count)));
- count ++;
+ count ++;
if (expr->Nth(count) && expr->Nth(count)->Type() == PrologList)
controlItem->SetFont(wxResourceInterpretFontSpec(expr->Nth(count)));
- }
- }
- }
+ }
+ }
+ }
}
else if (controlType == "wxChoice")
{
}
controlItem->SetStringValues(stringList);
- count ++;
+ count ++;
if (expr->Nth(count) && expr->Nth(count)->Type() == PrologList)
- {
+ {
// controlItem->SetLabelFont(wxResourceInterpretFontSpec(expr->Nth(count)));
- count ++;
+ count ++;
if (expr->Nth(count) && expr->Nth(count)->Type() == PrologList)
controlItem->SetFont(wxResourceInterpretFontSpec(expr->Nth(count)));
- }
- }
+ }
+ }
}
#if USE_COMBOBOX
else if (controlType == "wxComboBox")
{
PrologExpr *textValue = expr->Nth(count);
if (textValue && (textValue->Type() == PrologString || textValue->Type() == PrologWord))
- {
+ {
wxString str(textValue->StringValue());
controlItem->SetValue4(WXSTRINGCAST str);
- count ++;
+ count ++;
PrologExpr *valueList = NULL;
// Check for default value list
}
controlItem->SetStringValues(stringList);
- count ++;
+ count ++;
if (expr->Nth(count) && expr->Nth(count)->Type() == PrologList)
- {
+ {
// controlItem->SetLabelFont(wxResourceInterpretFontSpec(expr->Nth(count)));
- count ++;
+ count ++;
if (expr->Nth(count) && expr->Nth(count)->Type() == PrologList)
controlItem->SetFont(wxResourceInterpretFontSpec(expr->Nth(count)));
- }
- }
- }
+ }
+ }
+ }
}
#endif
#if 0
stringExpr = stringExpr->GetNext();
}
controlItem->SetStringValues(stringList);
- count ++;
+ count ++;
// majorDim (number of rows or cols)
if (expr->Nth(count) && (expr->Nth(count)->Type() == PrologInteger))
- {
+ {
controlItem->SetValue1(expr->Nth(count)->IntegerValue());
- count ++;
- }
+ count ++;
+ }
else
controlItem->SetValue1(0);
if (expr->Nth(count) && expr->Nth(count)->Type() == PrologList)
- {
+ {
// controlItem->SetLabelFont(wxResourceInterpretFontSpec(expr->Nth(count)));
- count ++;
+ count ++;
if (expr->Nth(count) && expr->Nth(count)->Type() == PrologList)
controlItem->SetFont(wxResourceInterpretFontSpec(expr->Nth(count)));
- }
- }
+ }
+ }
}
#endif
else
id = wxResourceGetIdentifier(WXSTRINGCAST str, &table);
if (id == 0)
{
- char buf[300];
- sprintf(buf, _("Could not resolve menu id '%s'. Use (non-zero) integer instead\n or provide #define (see manual for caveats)"),
- (const char*) idExpr->StringValue());
- wxWarning(buf);
+ wxLogWarning(_("Could not resolve menu id '%s'. "
+ "Use (non-zero) integer instead\n"
+ "or provide #define (see manual for caveats)"),
+ (const char*) idExpr->StringValue());
}
}
else if (idExpr->Type() == PrologInteger)
}
else
{
- char buf[300];
- sprintf(buf, _("#define %s must be an integer."), name);
- wxWarning(buf);
+ wxLogWarning(_("#define %s must be an integer."), name);
delete[] name;
delete[] value;
return FALSE;
name[len-1] = 0;
if (!wxResourceParseIncludeFile(actualName, table))
{
- char buf[400];
- sprintf(buf, _("Could not find resource include file %s."), actualName);
- wxWarning(buf);
+ wxLogWarning(_("Could not find resource include file %s."), actualName);
}
delete[] name;
return TRUE;
strcpy(buf, _("Found "));
strncat(buf, wxResourceBuffer, 30);
strcat(buf, _(", expected static, #include or #define\nwhilst parsing resource."));
- wxWarning(buf);
+ wxLogWarning(buf);
return FALSE;
}
// char
if (!wxGetResourceToken(fd))
{
- wxWarning(_("Unexpected end of file whilst parsing resource."));
+ wxLogWarning(_("Unexpected end of file whilst parsing resource."));
*eof = TRUE;
return FALSE;
}
if (strcmp(wxResourceBuffer, "char") != 0)
{
- wxWarning(_("Expected 'char' whilst parsing resource."));
+ wxLogWarning(_("Expected 'char' whilst parsing resource."));
return FALSE;
}
// *name
if (!wxGetResourceToken(fd))
{
- wxWarning(_("Unexpected end of file whilst parsing resource."));
+ wxLogWarning(_("Unexpected end of file whilst parsing resource."));
*eof = TRUE;
return FALSE;
}
if (wxResourceBuffer[0] != '*')
{
- wxWarning(_("Expected '*' whilst parsing resource."));
+ wxLogWarning(_("Expected '*' whilst parsing resource."));
return FALSE;
}
char nameBuf[100];
// =
if (!wxGetResourceToken(fd))
{
- wxWarning(_("Unexpected end of file whilst parsing resource."));
+ wxLogWarning(_("Unexpected end of file whilst parsing resource."));
*eof = TRUE;
return FALSE;
}
if (strcmp(wxResourceBuffer, "=") != 0)
{
- wxWarning(_("Expected '=' whilst parsing resource."));
+ wxLogWarning(_("Expected '=' whilst parsing resource."));
return FALSE;
}
// String
if (!wxGetResourceToken(fd))
{
- wxWarning(_("Unexpected end of file whilst parsing resource."));
+ wxLogWarning(_("Unexpected end of file whilst parsing resource."));
*eof = TRUE;
return FALSE;
}
{
if (!db.ReadPrologFromString(wxResourceBuffer))
{
- char buf[300];
- sprintf(buf, _("%s: ill-formed resource file syntax."), nameBuf);
- wxWarning(buf);
+ wxLogWarning(_("%s: ill-formed resource file syntax."), nameBuf);
return FALSE;
}
}
{ "wxLB_SINGLE", wxLB_SINGLE },
{ "wxLB_MULTIPLE", wxLB_MULTIPLE },
{ "wxLB_EXTENDED", wxLB_EXTENDED },
- { "wxNEEDED_SB", wxNEEDED_SB },
- { "wxALWAYS_SB", wxALWAYS_SB },
{ "wxLB_NEEDED_SB", wxLB_NEEDED_SB },
{ "wxLB_ALWAYS_SB", wxLB_ALWAYS_SB },
{ "wxLB_SORT", wxLB_SORT },
{ "wxDEFAULT_DIALOG_STYLE", wxDEFAULT_DIALOG_STYLE},
{ "wxBORDER", wxBORDER},
{ "wxRETAINED", wxRETAINED},
- { "wxEDITABLE", wxEDITABLE},
- { "wxREADONLY", wxREADONLY},
{ "wxNATIVE_IMPL", 0},
{ "wxEXTENDED_IMPL", 0},
{ "wxBACKINGSTORE", wxBACKINGSTORE},
}
if (!found)
{
- char buf[200];
- sprintf(buf, _("Unrecognized style %s whilst parsing resource."), word);
- wxWarning(buf);
+ wxLogWarning(_("Unrecognized style %s whilst parsing resource."), word);
return 0;
}
}
{
if (!item->GetType() || strcmp(item->GetType(), "wxBitmap") != 0)
{
- char buf[300];
- sprintf(buf, _("%s not a bitmap resource specification."), resource);
- wxWarning(buf);
+ wxLogWarning(_("%s not a bitmap resource specification."), resource);
return NULL;
}
int thisDepth = wxDisplayDepth();
wxItemResource *item = table->FindResource(name);
if (!item)
{
- char buf[400];
- sprintf(buf, _("Failed to find XBM resource %s.\nForgot to use wxResourceLoadBitmapData?"), name);
- wxWarning(buf);
+ wxLogWarning(_("Failed to find XBM resource %s.\n"
+ "Forgot to use wxResourceLoadBitmapData?"), name);
return NULL;
}
bitmap = new wxBitmap((char *)item->GetValue1(), (int)item->GetValue2(), (int)item->GetValue3());
#else
- wxWarning(_("No XBM facility available!"));
+ wxLogWarning(_("No XBM facility available!"));
#endif
break;
}
wxItemResource *item = table->FindResource(name);
if (!item)
{
- char buf[400];
- sprintf(buf, _("Failed to find XPM resource %s.\nForgot to use wxResourceLoadBitmapData?"), name);
- wxWarning(buf);
+ wxLogWarning(_("Failed to find XPM resource %s.\n"
+ "Forgot to use wxResourceLoadBitmapData?"), name);
return NULL;
}
bitmap = new wxBitmap(item->GetValue1());
#else
- wxWarning(_("No XPM facility available!"));
+ wxLogWarning(_("No XPM facility available!"));
#endif
break;
}
}
else
{
- char buf[300];
- sprintf(buf, _("Bitmap resource specification %s not found."), resource);
- wxWarning(buf);
+ wxLogWarning(_("Bitmap resource specification %s not found."), resource);
return NULL;
}
}
{
if (!item->GetType() || strcmp(item->GetType(), "wxIcon") != 0)
{
- char buf[300];
- sprintf(buf, _("%s not an icon resource specification."), resource);
- wxWarning(buf);
+ wxLogWarning(_("%s not an icon resource specification."), resource);
return NULL;
}
int thisDepth = wxDisplayDepth();
wxItemResource *item = table->FindResource(name);
if (!item)
{
- char buf[400];
- sprintf(buf, _("Failed to find XBM resource %s.\nForgot to use wxResourceLoadIconData?"), name);
- wxWarning(buf);
+ wxLogWarning(_("Failed to find XBM resource %s.\n"
+ "Forgot to use wxResourceLoadIconData?"), name);
return NULL;
}
icon = new wxIcon((char *)item->GetValue1(), (int)item->GetValue2(), (int)item->GetValue3());
#else
- wxWarning(_("No XBM facility available!"));
+ wxLogWarning(_("No XBM facility available!"));
#endif
break;
}
{
char buf[400];
sprintf(buf, _("Failed to find XPM resource %s.\nForgot to use wxResourceLoadIconData?"), name);
- wxWarning(buf);
+ wxLogWarning(buf);
return NULL;
}
icon = new wxIcon((char **)item->GetValue1());
#else
- wxWarning(_("No XPM facility available!"));
+ wxLogWarning(_("No XPM facility available!"));
#endif
*/
- wxWarning(_("No XPM icon facility available!"));
+ wxLogWarning(_("No XPM icon facility available!"));
break;
}
default:
}
else
{
- char buf[300];
- sprintf(buf, _("Icon resource specification %s not found."), resource);
- wxWarning(buf);
+ wxLogWarning(_("Icon resource specification %s not found."), resource);
return NULL;
}
}
}
else
{
- char buf[300];
- sprintf(buf, _("#define %s must be an integer."), name);
- wxWarning(buf);
+ wxLogWarning(_("#define %s must be an integer."), name);
delete[] name;
delete[] value;
return FALSE;
{
char buf[400];
sprintf(buf, _("Could not find resource include file %s."), actualName);
- wxWarning(buf);
+ wxLogWarning(buf);
}
delete[] name;
return TRUE;
strcpy(buf, _("Found "));
strncat(buf, wxResourceBuffer, 30);
strcat(buf, _(", expected static, #include or #define\nwhilst parsing resource."));
- wxWarning(buf);
+ wxLogWarning(buf);
return FALSE;
}
// char
if (!wxGetResourceTokenString(s))
{
- wxWarning(_("Unexpected end of file whilst parsing resource."));
+ wxLogWarning(_("Unexpected end of file whilst parsing resource."));
*eof = TRUE;
return FALSE;
}
if (strcmp(wxResourceBuffer, "char") != 0)
{
- wxWarning(_("Expected 'char' whilst parsing resource."));
+ wxLogWarning(_("Expected 'char' whilst parsing resource."));
return FALSE;
}
// *name
if (!wxGetResourceTokenString(s))
{
- wxWarning(_("Unexpected end of file whilst parsing resource."));
+ wxLogWarning(_("Unexpected end of file whilst parsing resource."));
*eof = TRUE;
return FALSE;
}
if (wxResourceBuffer[0] != '*')
{
- wxWarning(_("Expected '*' whilst parsing resource."));
+ wxLogWarning(_("Expected '*' whilst parsing resource."));
return FALSE;
}
char nameBuf[100];
// =
if (!wxGetResourceTokenString(s))
{
- wxWarning(_("Unexpected end of file whilst parsing resource."));
+ wxLogWarning(_("Unexpected end of file whilst parsing resource."));
*eof = TRUE;
return FALSE;
}
if (strcmp(wxResourceBuffer, "=") != 0)
{
- wxWarning(_("Expected '=' whilst parsing resource."));
+ wxLogWarning(_("Expected '=' whilst parsing resource."));
return FALSE;
}
// String
if (!wxGetResourceTokenString(s))
{
- wxWarning(_("Unexpected end of file whilst parsing resource."));
+ wxLogWarning(_("Unexpected end of file whilst parsing resource."));
*eof = TRUE;
return FALSE;
}
{
if (!db.ReadPrologFromString(wxResourceBuffer))
{
- char buf[300];
- sprintf(buf, _("%s: ill-formed resource file syntax."), nameBuf);
- wxWarning(buf);
+ wxLogWarning(_("%s: ill-formed resource file syntax."), nameBuf);
return FALSE;
}
}
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);
if (resource->GetBackgroundColour())
SetBackgroundColour(*resource->GetBackgroundColour());
- // TODO
+ // TODO
if (resource->GetLabelColour())
SetForegroundColour(*resource->GetLabelColour());
else if (resource->GetButtonColour())