From 07831c160bb1474f10970fa308e4489b472b3f18 Mon Sep 17 00:00:00 2001 From: Julian Smart Date: Sun, 30 Mar 2003 19:35:27 +0000 Subject: [PATCH] New location for proplist sample git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@19887 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775 --- .../samples/deprecated/proplist/.cvsignore | 7 + .../samples/deprecated/proplist/Makefile.in | 15 + contrib/samples/deprecated/proplist/cross.bmp | Bin 0 -> 198 bytes .../samples/deprecated/proplist/makefile.b32 | 10 + .../samples/deprecated/proplist/makefile.g95 | 10 + .../samples/deprecated/proplist/makefile.sc | 37 + .../samples/deprecated/proplist/makefile.unx | 23 + .../samples/deprecated/proplist/makefile.vc | 11 + .../samples/deprecated/proplist/makefile.wat | 11 + .../samples/deprecated/proplist/proplist.cpp | 420 ++ .../samples/deprecated/proplist/proplist.dsp | 154 + .../samples/deprecated/proplist/proplist.h | 128 + .../samples/deprecated/proplist/proplist.pro | 17 + .../samples/deprecated/proplist/proplist.rc | 5 + .../deprecated/proplist/proplistM5.xml | 3685 +++++++++++++++++ contrib/samples/deprecated/proplist/tick.bmp | Bin 0 -> 198 bytes 16 files changed, 4533 insertions(+) create mode 100644 contrib/samples/deprecated/proplist/.cvsignore create mode 100644 contrib/samples/deprecated/proplist/Makefile.in create mode 100644 contrib/samples/deprecated/proplist/cross.bmp create mode 100644 contrib/samples/deprecated/proplist/makefile.b32 create mode 100644 contrib/samples/deprecated/proplist/makefile.g95 create mode 100644 contrib/samples/deprecated/proplist/makefile.sc create mode 100644 contrib/samples/deprecated/proplist/makefile.unx create mode 100644 contrib/samples/deprecated/proplist/makefile.vc create mode 100644 contrib/samples/deprecated/proplist/makefile.wat create mode 100644 contrib/samples/deprecated/proplist/proplist.cpp create mode 100644 contrib/samples/deprecated/proplist/proplist.dsp create mode 100644 contrib/samples/deprecated/proplist/proplist.h create mode 100644 contrib/samples/deprecated/proplist/proplist.pro create mode 100644 contrib/samples/deprecated/proplist/proplist.rc create mode 100644 contrib/samples/deprecated/proplist/proplistM5.xml create mode 100644 contrib/samples/deprecated/proplist/tick.bmp diff --git a/contrib/samples/deprecated/proplist/.cvsignore b/contrib/samples/deprecated/proplist/.cvsignore new file mode 100644 index 0000000000..627ed35cd1 --- /dev/null +++ b/contrib/samples/deprecated/proplist/.cvsignore @@ -0,0 +1,7 @@ +proplistM5.mcp +proplistM*Data +*Classic?Debug* +*Classic?Release* +*Carbon?Debug* +*Carbon?Release* +proplist diff --git a/contrib/samples/deprecated/proplist/Makefile.in b/contrib/samples/deprecated/proplist/Makefile.in new file mode 100644 index 0000000000..17a47faf55 --- /dev/null +++ b/contrib/samples/deprecated/proplist/Makefile.in @@ -0,0 +1,15 @@ +# Purpose: makefile for proplist example (UNIX). +# Created: 2000-03-15 + +top_srcdir = @top_srcdir@/.. +top_builddir = ../../../.. +program_dir = contrib/samples/deprecated/proplist + +PROGRAM=proplist + +OBJECTS =$(PROGRAM).o +DEPFILES=$(PROGRAM).d + +include ../../../../src/makeprog.env + +@IF_GNU_MAKE@-include $(DEPFILES) diff --git a/contrib/samples/deprecated/proplist/cross.bmp b/contrib/samples/deprecated/proplist/cross.bmp new file mode 100644 index 0000000000000000000000000000000000000000..079cb0dd58010154f6a791eead3a4cc19c02cf31 GIT binary patch literal 198 zcmZup$qm3D40EMQNS&l}^k1o?@M^wn1~1l1?Et?*e8`4ecgHv{Y0+9kDTRf{z+H~uRU|SqMnJMG$uK0U!a!ytzjWs7-TIffM+-jaAS7o1 literal 0 HcmV?d00001 diff --git a/contrib/samples/deprecated/proplist/makefile.b32 b/contrib/samples/deprecated/proplist/makefile.b32 new file mode 100644 index 0000000000..9e35c97943 --- /dev/null +++ b/contrib/samples/deprecated/proplist/makefile.b32 @@ -0,0 +1,10 @@ +# Purpose: makefile for proplist example (BC++ 32bit) +# Created: 2000-03-15 + +WXDIR = $(WXWIN) + +TARGET=proplist +OBJECTS = $(TARGET).obj + +!include $(WXDIR)\src\makeprog.b32 + diff --git a/contrib/samples/deprecated/proplist/makefile.g95 b/contrib/samples/deprecated/proplist/makefile.g95 new file mode 100644 index 0000000000..ba4b3e981b --- /dev/null +++ b/contrib/samples/deprecated/proplist/makefile.g95 @@ -0,0 +1,10 @@ +# Purpose: makefile for proplist example (Cygwin/Mingw32) +# Created: #03.01.00 + +WXDIR = ../../../.. + +TARGET=proplist +OBJECTS = $(TARGET).o + +include $(WXDIR)/src/makeprog.g95 + diff --git a/contrib/samples/deprecated/proplist/makefile.sc b/contrib/samples/deprecated/proplist/makefile.sc new file mode 100644 index 0000000000..ccb825a992 --- /dev/null +++ b/contrib/samples/deprecated/proplist/makefile.sc @@ -0,0 +1,37 @@ +# Purpose: makefile for proplist example (Symantec C++) +# Created: 2000-03-15 + +WXDIR = $(WXWIN) +WXLIB = $(WXDIR)\lib\wx.lib +INCDIR = $(WXDIR)\include +INCLUDE=$(INCDIR) +TARGET=proplist + +include $(WXDIR)\src\makesc.env + +proplist.exe: proplist.obj $(DEFFILE) proplist.res + *$(CC) $(LDFLAGS) -o$@ $** $(LIBS) + *$(RC) -k proplist.res + +sc32.def: + echo EXETYPE NT > sc32.def + echo SUBSYSTEM WINDOWS >> sc32.def + +sc16.def: + echo NAME $(TARGET) > sc16.def + echo EXETYPE WINDOWS >> sc16.def + echo STUB 'WINSTUB.EXE' >> sc16.def + echo CODE PRELOAD MOVEABLE DISCARDABLE >> sc16.def + echo DATA PRELOAD MOVEABLE MULTIPLE >> sc16.def + echo HEAPSIZE 1024 >> sc16.def + echo STACKSIZE 8192 >> sc16.def + +clean: + -del *.obj + -del *.exe + -del *.res + -del *.map + -del *.rws + -del sc32.def + -del sc16.def + diff --git a/contrib/samples/deprecated/proplist/makefile.unx b/contrib/samples/deprecated/proplist/makefile.unx new file mode 100644 index 0000000000..e7143b6c99 --- /dev/null +++ b/contrib/samples/deprecated/proplist/makefile.unx @@ -0,0 +1,23 @@ +# Purpose: makefile for proplist example (Unix) +# Created: 2000-03-15 + +CXX = $(shell wx-config --cxx) + +PROGRAM = proplist + +OBJECTS = $(PROGRAM).o + +# implementation + +.SUFFIXES: .o .cpp + +.cpp.o : + $(CXX) -c `wx-config --cxxflags` -o $@ $< + +all: $(PROGRAM) + +$(PROGRAM): $(OBJECTS) + $(CXX) -o $(PROGRAM) $(OBJECTS) `wx-config --libs` + +clean: + rm -f *.o $(PROGRAM) diff --git a/contrib/samples/deprecated/proplist/makefile.vc b/contrib/samples/deprecated/proplist/makefile.vc new file mode 100644 index 0000000000..4cb42439fc --- /dev/null +++ b/contrib/samples/deprecated/proplist/makefile.vc @@ -0,0 +1,11 @@ +# Purpose: makefile for proplist example (VC++ 32bit) +# Created: 2000-03-15 + +# Set WXDIR for your system +WXDIR = $(WXWIN) + +PROGRAM=proplist +OBJECTS = $(PROGRAM).obj + +!include $(WXDIR)\src\makeprog.vc + diff --git a/contrib/samples/deprecated/proplist/makefile.wat b/contrib/samples/deprecated/proplist/makefile.wat new file mode 100644 index 0000000000..b2a02cf03d --- /dev/null +++ b/contrib/samples/deprecated/proplist/makefile.wat @@ -0,0 +1,11 @@ +# Purpose: makefile for proplist example (Watcom) +# Created: 2000-03-15 + +WXDIR = $(%WXWIN) + +PROGRAM = proplist +OBJECTS = $(PROGRAM).obj + +!include $(WXDIR)\src\makeprog.wat + + diff --git a/contrib/samples/deprecated/proplist/proplist.cpp b/contrib/samples/deprecated/proplist/proplist.cpp new file mode 100644 index 0000000000..8c04d7d35c --- /dev/null +++ b/contrib/samples/deprecated/proplist/proplist.cpp @@ -0,0 +1,420 @@ +///////////////////////////////////////////////////////////////////////////// +// Name: proplist.cpp +// Purpose: Property sheet test implementation +// Author: Julian Smart +// Modified by: +// Created: 04/01/98 +// RCS-ID: $Id$ +// Copyright: (c) Julian Smart +// Licence: wxWindows license +///////////////////////////////////////////////////////////////////////////// + +#ifdef __GNUG__ +#pragma implementation "proplist_sample.h" +#endif + +// For compilers that support precompilation, includes "wx/wx.h". +#include "wx/wxprec.h" + +#ifdef __BORLANDC__ +#pragma hdrstop +#endif + +#ifndef WX_PRECOMP +#include "wx/wx.h" +#endif + + +#if !wxUSE_PROPSHEET +#error Please set wxUSE_PROPSHEET to 1 in include/wx/msw/setup.h and recompile. +#endif + +#include "proplist.h" + +IMPLEMENT_APP(MyApp) + +wxPropertyValidatorRegistry myListValidatorRegistry; +wxPropertyValidatorRegistry myFormValidatorRegistry; + +MyApp::MyApp(void) +{ + m_childWindow = NULL; + m_mainFrame = NULL; +} + +bool MyApp::OnInit(void) +{ + RegisterValidators(); + + // Create the main frame window + m_mainFrame = new MyFrame(NULL, _T("wxPropertySheet Demo"), wxPoint(0, 0), wxSize(300, 400), wxDEFAULT_FRAME_STYLE); + + // Make a menubar + wxMenu *file_menu = new wxMenu; + file_menu->Append(PROPERTY_TEST_DIALOG_LIST, _T("Test property list &dialog...")); + file_menu->Append(PROPERTY_TEST_FRAME_LIST, _T("Test property list &frame...")); + file_menu->AppendSeparator(); + file_menu->Append(PROPERTY_TEST_DIALOG_FORM, _T("Test property form d&ialog...")); + file_menu->Append(PROPERTY_TEST_FRAME_FORM, _T("Test property form f&rame...")); + file_menu->AppendSeparator(); + file_menu->Append(PROPERTY_QUIT, _T("E&xit")); + + wxMenu *help_menu = new wxMenu; + help_menu->Append(PROPERTY_ABOUT, _T("&About")); + + wxMenuBar *menu_bar = new wxMenuBar; + + menu_bar->Append(file_menu, _T("&File")); + menu_bar->Append(help_menu, _T("&Help")); + + // Associate the menu bar with the frame + m_mainFrame->SetMenuBar(menu_bar); + + m_mainFrame->Centre(wxBOTH); + m_mainFrame->Show(TRUE); + + SetTopWindow(m_mainFrame); + + return TRUE; +} + +BEGIN_EVENT_TABLE(MyFrame, wxFrame) + EVT_CLOSE(MyFrame::OnCloseWindow) + EVT_MENU(PROPERTY_QUIT, MyFrame::OnQuit) + EVT_MENU(PROPERTY_ABOUT, MyFrame::OnAbout) + EVT_MENU(PROPERTY_TEST_DIALOG_LIST, MyFrame::OnDialogList) + EVT_MENU(PROPERTY_TEST_FRAME_LIST, MyFrame::OnFrameList) + EVT_MENU(PROPERTY_TEST_DIALOG_FORM, MyFrame::OnDialogForm) + EVT_MENU(PROPERTY_TEST_FRAME_FORM, MyFrame::OnFrameForm) +END_EVENT_TABLE() + +// Define my frame constructor +MyFrame::MyFrame(wxFrame *frame, const wxString& title, const wxPoint& pos, const wxSize& size, long type): + wxFrame(frame, -1, title, pos, size, type) +{ +} + +// Define the behaviour for the frame closing +// - must delete all frames except for the main one. +void MyFrame::OnCloseWindow(wxCloseEvent& event) +{ + if (wxGetApp().m_childWindow) + { + wxGetApp().m_childWindow->Close(TRUE); + } + + Destroy(); +} + +void MyFrame::OnQuit(wxCommandEvent& event) +{ + Close(TRUE); +} + +void MyFrame::OnDialogList(wxCommandEvent& event) +{ + wxGetApp().PropertyListTest(TRUE); +} + +void MyFrame::OnFrameList(wxCommandEvent& event) +{ + wxGetApp().PropertyListTest(FALSE); +} + +void MyFrame::OnDialogForm(wxCommandEvent& event) +{ + wxGetApp().PropertyFormTest(TRUE); +} + +void MyFrame::OnFrameForm(wxCommandEvent& event) +{ + wxGetApp().PropertyFormTest(FALSE); +} + +void MyFrame::OnAbout(wxCommandEvent& event) +{ + (void)wxMessageBox(_T("Property Classes Demo\nAuthor: Julian Smart"), _T("About Property Classes Test")); +} + +void MyApp::RegisterValidators(void) +{ + myListValidatorRegistry.RegisterValidator((wxString)_T("real"), new wxRealListValidator); + myListValidatorRegistry.RegisterValidator((wxString)_T("string"), new wxStringListValidator); + myListValidatorRegistry.RegisterValidator((wxString)_T("integer"), new wxIntegerListValidator); + myListValidatorRegistry.RegisterValidator((wxString)_T("bool"), new wxBoolListValidator); + myListValidatorRegistry.RegisterValidator((wxString)_T("stringlist"), new wxListOfStringsListValidator); + + myFormValidatorRegistry.RegisterValidator((wxString)_T("real"), new wxRealFormValidator); + myFormValidatorRegistry.RegisterValidator((wxString)_T("string"), new wxStringFormValidator); + myFormValidatorRegistry.RegisterValidator((wxString)_T("integer"), new wxIntegerFormValidator); + myFormValidatorRegistry.RegisterValidator((wxString)_T("bool"), new wxBoolFormValidator); +} + +void MyApp::PropertyListTest(bool useDialog) +{ + if (m_childWindow) + return; + + wxPropertySheet *sheet = new wxPropertySheet; + + sheet->AddProperty(new wxProperty(_T("fred"), 1.0, _T("real"))); + sheet->AddProperty(new wxProperty(_T("tough choice"), (bool)TRUE, _T("bool"))); + sheet->AddProperty(new wxProperty(_T("ian"), (long)45, _T("integer"), new wxIntegerListValidator(-50, 50))); + sheet->AddProperty(new wxProperty(_T("bill"), 25.0, _T("real"), new wxRealListValidator(0.0, 100.0))); + sheet->AddProperty(new wxProperty(_T("julian"), _T("one"), _T("string"))); + sheet->AddProperty(new wxProperty(_T("bitmap"), _T("none"), _T("string"), new wxFilenameListValidator(_T("Select a bitmap file"), _T("*.bmp")))); + wxStringList *strings = new wxStringList(wxT("one"), wxT("two"), wxT("three"), NULL); + sheet->AddProperty(new wxProperty(_T("constrained"), _T("one"), _T("string"), new wxStringListValidator(strings))); + + wxStringList *strings2 = new wxStringList(wxT("earth"), wxT("fire"), wxT("wind"), wxT("water"), NULL); + sheet->AddProperty(new wxProperty(_T("string list"), strings2, _T("stringlist"))); + + wxPropertyListView *view = new wxPropertyListView + ( + NULL, + wxPROP_BUTTON_OK | wxPROP_BUTTON_CANCEL | wxPROP_BUTTON_CHECK_CROSS + |wxPROP_DYNAMIC_VALUE_FIELD|wxPROP_PULLDOWN|wxPROP_SHOWVALUES + ); + + wxDialog *propDialog = NULL; + wxPropertyListFrame *propFrame = NULL; + if (useDialog) + { + propDialog = new PropListDialog(view, NULL, _T("Property Sheet Test"), + wxPoint(-1, -1), wxSize(400, 500), wxDEFAULT_DIALOG_STYLE|wxDIALOG_MODELESS); + m_childWindow = propDialog; + } + else + { + propFrame = new PropListFrame(view, NULL, _T("Property Sheet Test"), wxPoint(-1, -1), wxSize(400, 500)); + m_childWindow = propFrame; + } + + view->AddRegistry(&myListValidatorRegistry); + + if (useDialog) + { + view->ShowView(sheet, (wxPanel *)propDialog); + propDialog->Centre(wxBOTH); + propDialog->Show(TRUE); + } + else + { + propFrame->Initialize(); + view->ShowView(sheet, propFrame->GetPropertyPanel()); + + propFrame->Centre(wxBOTH); + propFrame->Show(TRUE); + } +} + +void MyApp::PropertyFormTest(bool useDialog) +{ + if (m_childWindow) + return; + + wxPropertySheet *sheet = new wxPropertySheet; + + sheet->AddProperty(new wxProperty(_T("fred"), 25.0, _T("real"), new wxRealFormValidator(0.0, 100.0))); + sheet->AddProperty(new wxProperty(_T("tough choice"), (bool)TRUE, _T("bool"))); + sheet->AddProperty(new wxProperty(_T("ian"), (long)45, _T("integer"), new wxIntegerFormValidator(-50, 50))); + sheet->AddProperty(new wxProperty(_T("julian"), _T("one"), _T("string"))); + wxStringList *strings = new wxStringList(wxT("one"), wxT("two"), wxT("three"), NULL); + sheet->AddProperty(new wxProperty(_T("constrained"), _T("one"), _T("string"), new wxStringFormValidator(strings))); + + wxPropertyFormView *view = new wxPropertyFormView(NULL); + + wxDialog *propDialog = NULL; + wxPropertyFormFrame *propFrame = NULL; + + if (useDialog) + { + propDialog = new PropFormDialog(view, NULL, _T("Property Form Test"), + wxPoint(-1, -1), wxSize(380, 250), wxDEFAULT_DIALOG_STYLE|wxDIALOG_MODAL); + m_childWindow = propDialog; + } + else + { + propFrame = new PropFormFrame(view, NULL, _T("Property Form Test"), + wxPoint(-1, -1), wxSize(380, 250)); + propFrame->Initialize(); + m_childWindow = propFrame; + } + + // BCC32 does not like ?: + wxWindow *panel ; + if ( propDialog ) + { + panel = propDialog; + } + else + { + panel = propFrame->GetPropertyPanel() ; + } + + wxLayoutConstraints* c; + +#if 0 + if (!propDialog) + { + c = new wxLayoutConstraints; + c->left.SameAs(m_childWindow, wxLeft, 4); + c->right.SameAs(m_childWindow, wxRight, 4); + c->top.SameAs(m_childWindow, wxTop, 4); + c->bottom.SameAs(m_childWindow, wxBottom, 40); + + panel->SetConstraints(c); + } +#endif + + // Add items to the panel + wxButton *okButton = new wxButton(panel, wxID_OK, _T("OK"), wxPoint(-1, -1), + wxSize(80, 26), 0, wxDefaultValidator, _T("ok")); + wxButton *cancelButton = new wxButton(panel, wxID_CANCEL, _T("Cancel"), wxPoint(-1, -1), + wxSize(80, 26), 0, wxDefaultValidator, _T("cancel")); + wxButton *updateButton = new wxButton(panel, wxID_PROP_UPDATE, _T("Update"), wxPoint(-1, -1), + wxSize(80, 26), 0, wxDefaultValidator, _T("update")); + wxButton *revertButton = new wxButton(panel, wxID_PROP_REVERT, _T("Revert"), wxPoint(-1, -1), + wxSize(80, 26), 0, wxDefaultValidator, _T("revert")); + + c = new wxLayoutConstraints; + c->right.SameAs(panel, wxRight, 4); + c->bottom.SameAs(panel, wxBottom, 4); + c->height.AsIs(); + c->width.AsIs(); + revertButton->SetConstraints(c); + + c = new wxLayoutConstraints; + c->right.SameAs(revertButton, wxLeft, 4); + c->bottom.SameAs(panel, wxBottom, 4); + c->height.AsIs(); + c->width.AsIs(); + updateButton->SetConstraints(c); + + c = new wxLayoutConstraints; + c->right.SameAs(updateButton, wxLeft, 4); + c->bottom.SameAs(panel, wxBottom, 4); + c->height.AsIs(); + c->width.AsIs(); + cancelButton->SetConstraints(c); + + c = new wxLayoutConstraints; + c->right.SameAs(cancelButton, wxLeft, 4); + c->bottom.SameAs(panel, wxBottom, 4); + c->height.AsIs(); + c->width.AsIs(); + okButton->SetConstraints(c); + + // The name of this text item matches the "fred" property + wxTextCtrl *text = new wxTextCtrl(panel, -1, _T("Fred"), wxPoint(-1, -1), wxSize( + 200, -1), 0, wxDefaultValidator, _T("fred")); + + c = new wxLayoutConstraints; + c->left.SameAs(panel, wxLeft, 4); + c->top.SameAs(panel, wxTop, 4); + c->height.AsIs(); + c->width.AsIs(); + text->SetConstraints(c); + + wxCheckBox *checkBox = new wxCheckBox(panel, -1, _T("Yes or no"), wxPoint(-1, -1), + wxSize(-1, -1), 0, wxDefaultValidator, _T("tough choice")); + + c = new wxLayoutConstraints; + c->left.SameAs(text, wxRight, 20); + c->top.SameAs(panel, wxTop, 4); + c->height.AsIs(); + c->width.AsIs(); + checkBox->SetConstraints(c); + + wxSlider *slider = new wxSlider(panel, -1, -50, 50, 150, wxPoint(-1, -1), + wxSize(200,10), 0, wxDefaultValidator, _T("ian")); + + c = new wxLayoutConstraints; + c->left.SameAs(panel, wxLeft, 4); + c->top.SameAs(text, wxBottom, 10); + c->height.AsIs(); + c->width.AsIs(); + slider->SetConstraints(c); + + wxListBox *listBox = new wxListBox(panel, -1, wxPoint(-1, -1), + wxSize(200, 100), 0, NULL, 0, wxDefaultValidator, _T("constrained")); + + c = new wxLayoutConstraints; + c->left.SameAs(panel, wxLeft, 4); + c->top.SameAs(slider, wxBottom, 10); + c->height.AsIs(); + c->width.AsIs(); + listBox->SetConstraints(c); + + view->AddRegistry(&myFormValidatorRegistry); + + panel->SetAutoLayout(TRUE); + + view->ShowView(sheet, panel); + view->AssociateNames(); + view->TransferToDialog(); + + if (useDialog) { + propDialog->Layout(); + propDialog->Centre(wxBOTH); + propDialog->Show(TRUE); + } + else + { + // panel->Layout(); + propFrame->Centre(wxBOTH); + propFrame->Show(TRUE); + } +} + +BEGIN_EVENT_TABLE(PropListFrame, wxPropertyListFrame) + EVT_CLOSE(PropListFrame::OnCloseWindow) +END_EVENT_TABLE() + +void PropListFrame::OnCloseWindow(wxCloseEvent& event) +{ + wxGetApp().m_childWindow = NULL; + + wxPropertyListFrame::OnCloseWindow(event); +} + +BEGIN_EVENT_TABLE(PropListDialog, wxPropertyListDialog) + EVT_CLOSE(PropListDialog::OnCloseWindow) +END_EVENT_TABLE() + +void PropListDialog::OnCloseWindow(wxCloseEvent& event) +{ + wxGetApp().m_childWindow = NULL; + + wxPropertyListDialog::OnCloseWindow(event); +} + +BEGIN_EVENT_TABLE(PropFormFrame, wxPropertyFormFrame) + EVT_CLOSE(PropFormFrame::OnCloseWindow) + EVT_SIZE(PropFormFrame::OnSize) +END_EVENT_TABLE() + +void PropFormFrame::OnCloseWindow(wxCloseEvent& event) +{ + wxGetApp().m_childWindow = NULL; + + wxPropertyFormFrame::OnCloseWindow(event); +} + +void PropFormFrame::OnSize(wxSizeEvent& event) +{ + wxPropertyFormFrame::OnSize(event); + GetPropertyPanel()->Layout(); +} + +BEGIN_EVENT_TABLE(PropFormDialog, wxPropertyFormDialog) + EVT_CLOSE(PropFormDialog::OnCloseWindow) +END_EVENT_TABLE() + +void PropFormDialog::OnCloseWindow(wxCloseEvent& event) +{ + wxGetApp().m_childWindow = NULL; + + wxPropertyFormDialog::OnCloseWindow(event); +} + diff --git a/contrib/samples/deprecated/proplist/proplist.dsp b/contrib/samples/deprecated/proplist/proplist.dsp new file mode 100644 index 0000000000..607b9c09eb --- /dev/null +++ b/contrib/samples/deprecated/proplist/proplist.dsp @@ -0,0 +1,154 @@ +# Microsoft Developer Studio Project File - Name="proplist" - Package Owner=<4> +# Microsoft Developer Studio Generated Build File, Format Version 6.00 +# ** DO NOT EDIT ** + +# TARGTYPE "Win32 (x86) Application" 0x0101 + +CFG=proplist - Win32 Debug +!MESSAGE This is not a valid makefile. To build this project using NMAKE, +!MESSAGE use the Export Makefile command and run +!MESSAGE +!MESSAGE NMAKE /f "proplist.mak". +!MESSAGE +!MESSAGE You can specify a configuration when running NMAKE +!MESSAGE by defining the macro CFG on the command line. For example: +!MESSAGE +!MESSAGE NMAKE /f "proplist.mak" CFG="proplist - Win32 Debug" +!MESSAGE +!MESSAGE Possible choices for configuration are: +!MESSAGE +!MESSAGE "proplist - Win32 Release DLL" (based on "Win32 (x86) Application") +!MESSAGE "proplist - Win32 Debug DLL" (based on "Win32 (x86) Application") +!MESSAGE "proplist - Win32 Release" (based on "Win32 (x86) Application") +!MESSAGE "proplist - Win32 Debug" (based on "Win32 (x86) Application") +!MESSAGE + +# Begin Project +# PROP Scc_ProjName "" +# PROP Scc_LocalPath "" +CPP=cl.exe +MTL=midl.exe +RSC=rc.exe + +!ELSEIF "$(CFG)" == "proplist - Win32 Release DLL" + +# PROP BASE Use_MFC 0 +# PROP BASE Use_Debug_Libraries 0 +# PROP BASE Output_Dir "ReleaseDll" +# PROP BASE Intermediate_Dir "ReleaseDll" +# PROP BASE Target_Dir "" +# PROP Use_MFC 0 +# PROP Use_Debug_Libraries 0 +# PROP Output_Dir "ReleaseDll" +# PROP Intermediate_Dir "ReleaseDll" +# PROP Ignore_Export_Lib 0 +# PROP Target_Dir "" +# ADD BASE CPP /nologo /W4 /O2 /D "NDEBUG" /D "WIN32" /D "_WINDOWS" /D WINVER=0x400 /YX /FD /c +# ADD CPP /nologo /W4 /O2 /I "../../include" /D "NDEBUG" /D "WIN32" /D "_WINDOWS" /D WINVER=0x400 /D WIN32 /D WINVER=0x400 /D _MT /D wxUSE_GUI=1 /YX /FD /c /MD /D WXUSINGDLL /I..\..\lib\mswdll +# ADD BASE MTL /nologo /D "NDEBUG" /mktyplib203 /o NUL /win32 +# ADD MTL /nologo /D "NDEBUG" /mktyplib203 /o NUL /win32 +# ADD BASE RSC /l 0x409 /d "NDEBUG" /I "../../include" +# ADD RSC /l 0x409 /d "NDEBUG" /I "../../include" +BSC32=bscmake.exe +# ADD BASE BSC32 /nologo +# ADD BSC32 /nologo +LINK32=link.exe +# ADD BASE LINK32 kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib comctl32.lib rpcrt4.lib wsock32.lib /nologo /subsystem:windows /machine:I386 +# ADD LINK32 kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib comctl32.lib rpcrt4.lib wsock32.lib /nologo /subsystem:windows /machine:I386 ..\..\lib\wxmsw250.lib + +!ELSEIF "$(CFG)" == "proplist - Win32 Debug DLL" + +# PROP BASE Use_MFC 0 +# PROP BASE Use_Debug_Libraries 1 +# PROP BASE Output_Dir "DebugDll" +# PROP BASE Intermediate_Dir "DebugDll" +# PROP BASE Target_Dir "" +# PROP Use_MFC 0 +# PROP Use_Debug_Libraries 1 +# PROP Output_Dir "DebugDll" +# PROP Intermediate_Dir "DebugDll" +# PROP Ignore_Export_Lib 0 +# PROP Target_Dir "" +# ADD BASE CPP /nologo /W4 /Zi /Od /D "_DEBUG" /D "WIN32" /D "_WINDOWS" /D WINVER=0x400 /YX /FD /c +# ADD CPP /nologo /W4 /Zi /Od /I "../../include" /D "_DEBUG" /D "WIN32" /D "_WINDOWS" /D WINVER=0x400 /D WIN32 /D WINVER=0x400 /D _MT /D wxUSE_GUI=1 /YX /FD /c /MDd /D "__WXDEBUG__" /D "WXDEBUG=1" /D WXUSINGDLL /I..\..\lib\mswdlld +# ADD BASE MTL /nologo /D "_DEBUG" /mktyplib203 /o NUL /win32 +# ADD MTL /nologo /D "_DEBUG" /mktyplib203 /o NUL /win32 +# ADD BASE RSC /l 0x409 /d "_DEBUG" /I "../../include" +# ADD RSC /l 0x409 /d "_DEBUG" /I "../../include" +BSC32=bscmake.exe +# ADD BASE BSC32 /nologo +# ADD BSC32 /nologo +LINK32=link.exe +# ADD BASE LINK32 kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib comctl32.lib rpcrt4.lib wsock32.lib /nologo /subsystem:windows /debug /machine:I386 /pdbtype:sept +# ADD LINK32 kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib comctl32.lib rpcrt4.lib wsock32.lib /nologo /subsystem:windows /debug /machine:I386 /pdbtype:sept ..\..\lib\wxmsw250d.lib + +!ELSEIF "$(CFG)" == "proplist - Win32 Release" + +# PROP BASE Use_MFC 0 +# PROP BASE Use_Debug_Libraries 0 +# PROP BASE Output_Dir "Release" +# PROP BASE Intermediate_Dir "Release" +# PROP BASE Target_Dir "" +# PROP Use_MFC 0 +# PROP Use_Debug_Libraries 0 +# PROP Output_Dir "Release" +# PROP Intermediate_Dir "Release" +# PROP Ignore_Export_Lib 0 +# PROP Target_Dir "" +# ADD BASE CPP /nologo /W4 /O2 /D "NDEBUG" /D "WIN32" /D "_WINDOWS" /D WINVER=0x400 /YX /FD /c +# ADD CPP /nologo /W4 /O2 /I "../../include" /D "NDEBUG" /D "WIN32" /D "_WINDOWS" /D WINVER=0x400 /D WIN32 /D WINVER=0x400 /D _MT /D wxUSE_GUI=1 /YX /FD /c /MD /I..\..\lib\msw +# ADD BASE MTL /nologo /D "NDEBUG" /mktyplib203 /o NUL /win32 +# ADD MTL /nologo /D "NDEBUG" /mktyplib203 /o NUL /win32 +# ADD BASE RSC /l 0x409 /d "NDEBUG" /I "../../include" +# ADD RSC /l 0x409 /d "NDEBUG" /I "../../include" +BSC32=bscmake.exe +# ADD BASE BSC32 /nologo +# ADD BSC32 /nologo +LINK32=link.exe +# ADD BASE LINK32 kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib comctl32.lib rpcrt4.lib wsock32.lib /nologo /subsystem:windows /machine:I386 +# ADD LINK32 kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib comctl32.lib rpcrt4.lib wsock32.lib /nologo /subsystem:windows /machine:I386 ..\..\lib\zlib.lib ..\..\lib\regex.lib ..\..\lib\png.lib ..\..\lib\jpeg.lib ..\..\lib\tiff.lib ..\..\lib\wxmsw.lib + +!ELSEIF "$(CFG)" == "proplist - Win32 Debug" + +# PROP BASE Use_MFC 0 +# PROP BASE Use_Debug_Libraries 1 +# PROP BASE Output_Dir "Debug" +# PROP BASE Intermediate_Dir "Debug" +# PROP BASE Target_Dir "" +# PROP Use_MFC 0 +# PROP Use_Debug_Libraries 1 +# PROP Output_Dir "Debug" +# PROP Intermediate_Dir "Debug" +# PROP Ignore_Export_Lib 0 +# PROP Target_Dir "" +# ADD BASE CPP /nologo /W4 /Zi /Od /D "_DEBUG" /D "WIN32" /D "_WINDOWS" /D WINVER=0x400 /YX /FD /c +# ADD CPP /nologo /W4 /Zi /Od /I "../../include" /D "_DEBUG" /D "WIN32" /D "_WINDOWS" /D WINVER=0x400 /D WIN32 /D WINVER=0x400 /D _MT /D wxUSE_GUI=1 /YX /FD /c /MDd /D "__WXDEBUG__" /D "WXDEBUG=1" /I..\..\lib\mswd +# ADD BASE MTL /nologo /D "_DEBUG" /mktyplib203 /o NUL /win32 +# ADD MTL /nologo /D "_DEBUG" /mktyplib203 /o NUL /win32 +# ADD BASE RSC /l 0x409 /d "_DEBUG" /I "../../include" +# ADD RSC /l 0x409 /d "_DEBUG" /I "../../include" +BSC32=bscmake.exe +# ADD BASE BSC32 /nologo +# ADD BSC32 /nologo +LINK32=link.exe +# ADD BASE LINK32 kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib comctl32.lib rpcrt4.lib wsock32.lib /nologo /subsystem:windows /debug /machine:I386 /pdbtype:sept +# ADD LINK32 kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib comctl32.lib rpcrt4.lib wsock32.lib /nologo /subsystem:windows /debug /machine:I386 /pdbtype:sept ..\..\lib\zlibd.lib ..\..\lib\regexd.lib ..\..\lib\pngd.lib ..\..\lib\jpegd.lib ..\..\lib\tiffd.lib ..\..\lib\wxmswd.lib + +!ENDIF + +# Begin Target + +# Name "proplist - Win32 Release DLL" +# Name "proplist - Win32 Debug DLL" +# Name "proplist - Win32 Release" +# Name "proplist - Win32 Debug" +# Begin Source File + +SOURCE=.\proplist.cpp +# End Source File +# Begin Source File + +SOURCE=.\proplist.rc +# End Source File +# End Target +# End Project diff --git a/contrib/samples/deprecated/proplist/proplist.h b/contrib/samples/deprecated/proplist/proplist.h new file mode 100644 index 0000000000..f984f05655 --- /dev/null +++ b/contrib/samples/deprecated/proplist/proplist.h @@ -0,0 +1,128 @@ +///////////////////////////////////////////////////////////////////////////// +// Name: proplist.h +// Purpose: Property sheet sample +// Author: Julian Smart +// Modified by: +// Created: 04/01/98 +// RCS-ID: $Id$ +// Copyright: (c) Julian Smart +// Licence: wxWindows license +///////////////////////////////////////////////////////////////////////////// + +#if defined(__GNUG__) && !defined(__APPLE__) +#pragma interface "proplist_sample.h" +#endif + +#ifndef _PROPTEST_H_ +#define _PROPTEST_H_ + +#include "wx/proplist.h" +#include "wx/propform.h" + +class MyChild; + +// Define a new application +class MyFrame; +class MyApp: public wxApp +{ +public: + MyApp(void); + bool OnInit(void); + + void RegisterValidators(void); + void PropertyListTest(bool useDialog); + void PropertyFormTest(bool useDialog); + + MyFrame* m_mainFrame; + wxWindow* m_childWindow; +}; + +DECLARE_APP(MyApp) + +// Define a new frame +class MyFrame: public wxFrame +{ + public: + MyFrame(wxFrame *frame, const wxString& title, const wxPoint& pos, const wxSize& size, long type); + + void OnCloseWindow(wxCloseEvent& event); + void OnQuit(wxCommandEvent& event); + void OnDialogList(wxCommandEvent& event); + void OnFrameList(wxCommandEvent& event); + void OnDialogForm(wxCommandEvent& event); + void OnFrameForm(wxCommandEvent& event); + void OnAbout(wxCommandEvent& event); + +DECLARE_EVENT_TABLE() +}; + +class PropListFrame: public wxPropertyListFrame +{ +public: + PropListFrame(wxPropertyListView *v, wxFrame *parent, const wxString& title, + const wxPoint& pos = wxDefaultPosition, const wxSize& size = wxDefaultSize, + long style = wxDEFAULT_FRAME_STYLE, const wxString& name = _T("frame")): + wxPropertyListFrame(v, parent, title, pos, size, style, name) + { + } + + void OnCloseWindow(wxCloseEvent& event); + + DECLARE_EVENT_TABLE() +}; + +class PropListDialog: public wxPropertyListDialog +{ +public: + PropListDialog(wxPropertyListView *v, wxWindow *parent, const wxString& title, + const wxPoint& pos = wxDefaultPosition, const wxSize& size = wxDefaultSize, + long style = wxDEFAULT_DIALOG_STYLE, const wxString& name = _T("dialogBox")): + wxPropertyListDialog(v, parent, title, pos, size, style, name) + { + } + + void OnCloseWindow(wxCloseEvent& event); + + DECLARE_EVENT_TABLE() +}; + +class PropFormFrame: public wxPropertyFormFrame +{ +public: + PropFormFrame(wxPropertyFormView *v, wxFrame *parent, const wxString& title, + const wxPoint& pos = wxDefaultPosition, const wxSize& size = wxDefaultSize, + long style = wxDEFAULT_FRAME_STYLE, const wxString& name = _T("frame")): + wxPropertyFormFrame(v, parent, title, pos, size, style, name) + { + } + + void OnCloseWindow(wxCloseEvent& event); + void OnSize(wxSizeEvent& event); + + DECLARE_EVENT_TABLE() +}; + +class PropFormDialog: public wxPropertyFormDialog +{ +public: + PropFormDialog(wxPropertyFormView *v, wxWindow *parent, const wxString& title, + const wxPoint& pos = wxDefaultPosition, const wxSize& size = wxDefaultSize, + long style = wxDEFAULT_DIALOG_STYLE, const wxString& name = _T("dialogBox")): + wxPropertyFormDialog(v, parent, title, pos, size, style, name) + { + } + + void OnCloseWindow(wxCloseEvent& event); + + DECLARE_EVENT_TABLE() +}; + +#define PROPERTY_QUIT 1 +#define PROPERTY_ABOUT 2 +#define PROPERTY_TEST_DIALOG_LIST 3 +#define PROPERTY_TEST_FRAME_LIST 4 +#define PROPERTY_TEST_DIALOG_FORM 5 +#define PROPERTY_TEST_FRAME_FORM 6 + +#endif + diff --git a/contrib/samples/deprecated/proplist/proplist.pro b/contrib/samples/deprecated/proplist/proplist.pro new file mode 100644 index 0000000000..1c4e4b3d42 --- /dev/null +++ b/contrib/samples/deprecated/proplist/proplist.pro @@ -0,0 +1,17 @@ +# this is the project file for the proplist wxWindows sample + +# we generate the VC++ IDE project file, comment this line +# to generate a makefile for (n)make +TEMPLATE = vc6app + +# wx is mandatory for wxWindows projects +CONFIG = wx + +# the configurations of wxWindows we want to use: the value below is the +# default one; possible other values are {Debug|Release}Unicode[Dll] +#WXCONFIGS = Debug Release DebugDll ReleaseDll + +# project files +SOURCES = proplist.cpp +RC_FILE = proplist.rc +TARGET = proplist diff --git a/contrib/samples/deprecated/proplist/proplist.rc b/contrib/samples/deprecated/proplist/proplist.rc new file mode 100644 index 0000000000..82f8ad6857 --- /dev/null +++ b/contrib/samples/deprecated/proplist/proplist.rc @@ -0,0 +1,5 @@ +//tick_bmp BITMAP "tick.bmp" +//cross_bmp BITMAP "cross.bmp" + +#include "wx/msw/wx.rc" + diff --git a/contrib/samples/deprecated/proplist/proplistM5.xml b/contrib/samples/deprecated/proplist/proplistM5.xml new file mode 100644 index 0000000000..c559aa9798 --- /dev/null +++ b/contrib/samples/deprecated/proplist/proplistM5.xml @@ -0,0 +1,3685 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +]> + + + + Classic Release + + + + UserSourceTrees + + + CustomColor1 + Red0 + Green32767 + Blue0 + + CustomColor2 + Red0 + Green32767 + Blue0 + + CustomColor3 + Red0 + Green32767 + Blue0 + + CustomColor4 + Red0 + Green32767 + Blue0 + + + + AlwaysSearchUserPathstrue + InterpretDOSAndUnixPathstrue + UserSearchPaths + + SearchPath + Path: + PathFormatMacOS + PathRootProject + + Recursivetrue + HostFlagsAll + + + SearchPath + Path:::include: + PathFormatMacOS + PathRootProject + + Recursivefalse + HostFlagsAll + + + SearchPath + Path:::lib: + PathFormatMacOS + PathRootProject + + Recursivetrue + HostFlagsAll + + + SystemSearchPaths + + SearchPath + PathMSL + PathFormatWindows + PathRootCodeWarrior + + Recursivetrue + HostFlagsAll + + + SearchPath + Path:MacOS Support: + PathFormatMacOS + PathRootCodeWarrior + + Recursivetrue + HostFlagsAll + + + + + LinkerMacOS PPC Linker + PreLinker + PostLinker + TargetnameClassic Release + OutputDirectory + Path: + PathFormatMacOS + PathRootProject + + SaveEntriesUsingRelativePathsfalse + + + FileMappings + + FileTypeAPPL + FileExtension + Compiler + Precompilefalse + Launchabletrue + ResourceFiletrue + IgnoredByMakefalse + + + FileTypeAppl + FileExtension + Compiler + Precompilefalse + Launchabletrue + ResourceFiletrue + IgnoredByMakefalse + + + FileTypeMMLB + FileExtension + CompilerLib Import PPC + Precompilefalse + Launchablefalse + ResourceFilefalse + IgnoredByMakefalse + + + FileTypeMPLF + FileExtension + CompilerLib Import PPC + Precompilefalse + Launchablefalse + ResourceFilefalse + IgnoredByMakefalse + + + FileTypeMWCD + FileExtension + Compiler + Precompilefalse + Launchabletrue + ResourceFiletrue + IgnoredByMakefalse + + + FileTypeRSRC + FileExtension + Compiler + Precompilefalse + Launchabletrue + ResourceFiletrue + IgnoredByMakefalse + + + FileTypeTEXT + FileExtension.c + CompilerMW C/C++ PPC + Precompilefalse + Launchablefalse + ResourceFilefalse + IgnoredByMakefalse + + + FileTypeTEXT + FileExtension.c++ + CompilerMW C/C++ PPC + Precompilefalse + Launchablefalse + ResourceFilefalse + IgnoredByMakefalse + + + FileTypeTEXT + FileExtension.cc + CompilerMW C/C++ PPC + Precompilefalse + Launchablefalse + ResourceFilefalse + IgnoredByMakefalse + + + FileTypeTEXT + FileExtension.cp + CompilerMW C/C++ PPC + Precompilefalse + Launchablefalse + ResourceFilefalse + IgnoredByMakefalse + + + FileTypeTEXT + FileExtension.cpp + CompilerMW C/C++ PPC + Precompilefalse + Launchablefalse + ResourceFilefalse + IgnoredByMakefalse + + + FileTypeTEXT + FileExtension.exp + Compiler + Precompilefalse + Launchablefalse + ResourceFilefalse + IgnoredByMakefalse + + + FileTypeTEXT + FileExtension.h + CompilerMW C/C++ PPC + Precompilefalse + Launchablefalse + ResourceFilefalse + IgnoredByMaketrue + + + FileTypeTEXT + FileExtension.pch + CompilerMW C/C++ PPC + Precompiletrue + Launchablefalse + ResourceFilefalse + IgnoredByMakefalse + + + FileTypeTEXT + FileExtension.pch++ + CompilerMW C/C++ PPC + Precompiletrue + Launchablefalse + ResourceFilefalse + IgnoredByMakefalse + + + FileTypeTEXT + FileExtension.r + CompilerRez + Precompilefalse + Launchablefalse + ResourceFilefalse + IgnoredByMakefalse + + + FileTypeXCOF + FileExtension + CompilerXCOFF Import PPC + Precompilefalse + Launchablefalse + ResourceFilefalse + IgnoredByMakefalse + + + FileTypedocu + FileExtension + Compiler + Precompilefalse + Launchabletrue + ResourceFiletrue + IgnoredByMakefalse + + + FileTypersrc + FileExtension + Compiler + Precompilefalse + Launchabletrue + ResourceFiletrue + IgnoredByMakefalse + + + FileTypeshlb + FileExtension + CompilerPEF Import PPC + Precompilefalse + Launchablefalse + ResourceFilefalse + IgnoredByMakefalse + + + FileTypestub + FileExtension + CompilerPEF Import PPC + Precompilefalse + Launchablefalse + ResourceFilefalse + IgnoredByMakefalse + + + FileExtension.doc + Compiler + Precompilefalse + Launchabletrue + ResourceFilefalse + IgnoredByMaketrue + + + FileExtension.o + CompilerXCOFF Import PPC + Precompilefalse + Launchablefalse + ResourceFilefalse + IgnoredByMakefalse + + + FileExtension.ppob + Compiler + Precompilefalse + Launchabletrue + ResourceFiletrue + IgnoredByMakefalse + + + FileExtension.rsrc + Compiler + Precompilefalse + Launchabletrue + ResourceFiletrue + IgnoredByMakefalse + + + + + CacheModDatestrue + ActivateBrowsertrue + DumpBrowserInfofalse + CacheSubprojectstrue + UseThirdPartyDebuggerfalse + DebuggerCommandLine + Debugger Runtime + 0002000000000000000000000000000000000000000000000000000000000000 + 0000000000000000000000000000000000000000000000000000000000000000 + 0000000000000000000000000000000000000000000000000000000000000000 + 0000000000000000000000000000000000000000000000000000000000000000 + 0000000000000000000000000000000000000000000000000000000000000000 + 0000000000000000000000000000000000000000000000000000000000000000 + 0000000000000000000000000000000000000000000000000000000000000000 + 0000000000000000000000000000000000000000000000000000000000000000 + 0000000000000000000000000000000000000000000000000000000000000000 + 0000000000000000000000000000000000000000000000000000000000000000 + 0000000000000000000000000000000000000000000000000000000000000000 + 0000000000000000000000000000000000000000000000000000000000000000 + 0000000000000000000000000000000000000000000000000000000000000000 + 0000000000000000000000000000000000000000000000000000000000000000 + 0000000000000000000000000000000000000000000000000000000000000000 + 0000000000000000000000000000000000000000000000000000000000000000 + 0000000000000000000000000000000000000000000000000000000000000000 + 0000000000000000000000000000000000000000000000000000000000000000 + 0000000000000000000000000000000000000000000000000000000000000000 + 0000000000000000000000000000000000000000000000000000000000000000 + 0000000000000000000000000000000000000000000000000000000000000000 + 0000000000000000000000000000000000000000000000000000000000000000 + 0000000000000000000000000000000000000000000000000000000000000000 + 0000000000000000000000000000000000000000000000000000000000000000 + 0000000000000000000000000000000000000000000000000000000000000000 + 0000000000000000000000000000000000000000000000000000000000000000 + 0000000000000000000000000000000000000000000000000000000000000000 + 0000000000000000000000000000000000000000000000000000000000000000 + 0000000000000000000000000000000000000000000000000000000000000000 + 0000000000000000000000000000000000000000000000000000000000000000 + 0000000000000000000000000000000000000000000000000000000000000000 + 0000000000000000000000000000000000000000000000000000000000000000 + 00000000000000000000000000000000 + + + + LogSystemMessagestrue + AutoTargetDLLsfalse + StopAtWatchpointstrue + PauseWhileRunningfalse + PauseInterval5 + PauseUIFlags0 + AltExePath + Path + PathFormatGeneric + PathRootAbsolute + + StopAtTempBPOnLaunchtrue + CacheSymbolicstrue + TempBPFunctionNamemain + TempBPTypefalse + + + MWFrontEnd_C_cplusplus0 + MWFrontEnd_C_checkprotos0 + MWFrontEnd_C_arm0 + MWFrontEnd_C_trigraphs0 + MWFrontEnd_C_onlystdkeywords0 + MWFrontEnd_C_enumsalwaysint0 + MWFrontEnd_C_mpwpointerstyle1 + MWFrontEnd_C_prefixname/wx/wx_cw.h + MWFrontEnd_C_ansistrict0 + MWFrontEnd_C_mpwcnewline1 + MWFrontEnd_C_wchar_type1 + MWFrontEnd_C_enableexceptions1 + MWFrontEnd_C_dontreusestrings0 + MWFrontEnd_C_poolstrings0 + MWFrontEnd_C_dontinline0 + MWFrontEnd_C_useRTTI1 + MWFrontEnd_C_multibyteaware0 + MWFrontEnd_C_unsignedchars1 + MWFrontEnd_C_autoinline0 + MWFrontEnd_C_booltruefalse1 + MWFrontEnd_C_direct_to_som0 + MWFrontEnd_C_som_env_check0 + MWFrontEnd_C_alwaysinline0 + MWFrontEnd_C_inlinelevel0 + MWFrontEnd_C_ecplusplus0 + MWFrontEnd_C_objective_c0 + MWFrontEnd_C_defer_codegen0 + + + MWWarning_C_warn_illpragma0 + MWWarning_C_warn_emptydecl0 + MWWarning_C_warn_possunwant0 + MWWarning_C_warn_unusedvar0 + MWWarning_C_warn_unusedarg0 + MWWarning_C_warn_extracomma0 + MWWarning_C_pedantic0 + MWWarning_C_warningerrors0 + MWWarning_C_warn_hidevirtual0 + MWWarning_C_warn_implicitconv0 + MWWarning_C_warn_notinlined0 + MWWarning_C_warn_structclass0 + + + MWMerge_MacOS_projectTypeApplication + MWMerge_MacOS_outputNameMerge Out + MWMerge_MacOS_outputCreator1061109567 + MWMerge_MacOS_outputType1095782476 + MWMerge_MacOS_suppressWarning0 + MWMerge_MacOS_copyFragments1 + MWMerge_MacOS_copyResources1 + MWMerge_MacOS_skipResources + + ”¼P + =ÃH + =Ø: + + + + MWCodeGen_PPC_structalignmentPPC + MWCodeGen_PPC_tracebacktablesNone + MWCodeGen_PPC_processorGeneric + MWCodeGen_PPC_readonlystrings0 + MWCodeGen_PPC_tocdata1 + MWCodeGen_PPC_profiler0 + MWCodeGen_PPC_fpcontract1 + MWCodeGen_PPC_schedule0 + MWCodeGen_PPC_peephole1 + MWCodeGen_PPC_processorspecific0 + MWCodeGen_PPC_altivec0 + MWCodeGen_PPC_vectortocdata0 + MWCodeGen_PPC_vrsave0 + + + MWDisassembler_PPC_showcode1 + MWDisassembler_PPC_extended1 + MWDisassembler_PPC_mix0 + MWDisassembler_PPC_nohex0 + MWDisassembler_PPC_showdata1 + MWDisassembler_PPC_showexceptions1 + MWDisassembler_PPC_showsym0 + MWDisassembler_PPC_shownames1 + + + GlobalOptimizer_PPC_optimizationlevelLevel0 + GlobalOptimizer_PPC_optforSpeed + + + MWLinker_PPC_linksym1 + MWLinker_PPC_symfullpath1 + MWLinker_PPC_linkmap0 + MWLinker_PPC_nolinkwarnings0 + MWLinker_PPC_dontdeadstripinitcode0 + MWLinker_PPC_permitmultdefs0 + MWLinker_PPC_linkmodeFast + MWLinker_PPC_initname + MWLinker_PPC_mainname__start + MWLinker_PPC_termname + PPC Mach-O CodeGen + 0001000001010000010000000001010101000000 + + PPC Mach-O Linker + 0001000000000100000100000000000000000000000000000000000000007374 + 6172740000000000000000000000000000000000000000000000000000000000 + 000000000000000000000000000000000000000000000000000000000000 + + PPC Mach-O Target + 0001000005612E6F757400000000000000000000000000000000000000000000 + 0000000000000000000000000000000000000000000000000000000000000000 + 000000003F3F3F3F4D41504C0000004000000000000000000000000000000000 + 0000000000000000000000000000000000000000000000000000000000000000 + 0000000000000000000000000000000000000000000000000000000000000000 + 00000000 + + + + MWPEF_exportsNone + MWPEF_libfolder0 + MWPEF_sortcodeNone + MWPEF_expandbss0 + MWPEF_sharedata0 + MWPEF_olddefversion0 + MWPEF_oldimpversion0 + MWPEF_currentversion0 + MWPEF_fragmentname + MWPEF_collapsereloads0 + + + MWProject_PPC_typeApplication + MWProject_PPC_outfileproplist Classic Release + MWProject_PPC_filecreator1061109567 + MWProject_PPC_filetype1095782476 + MWProject_PPC_size3840 + MWProject_PPC_minsize3840 + MWProject_PPC_stacksize64 + MWProject_PPC_flags22720 + MWProject_PPC_symfilename + MWProject_PPC_rsrcname + MWProject_PPC_rsrcheaderNative + MWProject_PPC_rsrctype1061109567 + MWProject_PPC_rsrcid0 + MWProject_PPC_rsrcflags0 + MWProject_PPC_rsrcstore0 + MWProject_PPC_rsrcmerge0 + + + MWAssembler_PPC_auxheader0 + MWAssembler_PPC_symmodeMac + MWAssembler_PPC_dialectPPC + MWAssembler_PPC_prefixfile + MWAssembler_PPC_typecheck0 + MWAssembler_PPC_warnings0 + MWAssembler_PPC_casesensitive0 + + + MWRez_Language_maxwidth80 + MWRez_Language_scriptRoman + MWRez_Language_alignmentAlign1 + MWRez_Language_filtermodeFilterSkip + MWRez_Language_suppresswarnings0 + MWRez_Language_escapecontrolchars1 + MWRez_Language_prefixname + MWRez_Language_filteredtypes'CODE' 'DATA' 'PICT' + + + + Name + wx_PPC.lib + MacOS + Library + Debug + + + Name + MSL C++.PPC.Lib + MacOS + Library + Debug + + + Name + MSL C.PPC.Lib + MacOS + Library + Debug + + + Name + console.stubs.c + MacOS + Text + + + + Name + MSL RuntimePPC.Lib + MacOS + Library + Debug + + + Name + wx_PPC.rsrc + MacOS + Resource + + + + Name + tiff.lib + MacOS + Library + + + + Name + jpeg.lib + MacOS + Library + + + + Name + png.lib + MacOS + Library + + + + Name + zlib.lib + MacOS + Library + + + + Name + proplist.cpp + MacOS + Text + + + + Name + AppearanceLib + MacOS + Library + + + + Name + ATSUnicodeLib + MacOS + Library + + + + Name + CarbonAccessors.o + MacOS + Library + + + + Name + ControlsLib + MacOS + Library + + + + Name + CursorDevicesGlue.o + MacOS + Library + + + + Name + DialogsLib + MacOS + Library + + + + Name + DragLib + MacOS + Library + + + + Name + InterfaceLib + MacOS + Library + + + + Name + InternetConfigLib + MacOS + Library + + + + Name + WindowsLib + MacOS + Library + + + + Name + MathLib + MacOS + Library + + + + Name + MenusLib + MacOS + Library + + + + Name + NavigationLib + MacOS + Library + + + + Name + OpenTptAppleTalkLib + MacOS + Library + + + + Name + OpenTptATalkPPC.o + MacOS + Library + + + + Name + OpenTptInetPPC.o + MacOS + Library + + + + Name + OpenTptInternetLib + MacOS + Library + + + + Name + OpenTransportLib + MacOS + Library + + + + Name + OpenTransportAppPPC.o + MacOS + Library + + + + Name + PLStringFuncsPPC.lib + MacOS + Library + + + + Name + TextEncodingConverter + MacOS + Library + + + + Name + Textension + MacOS + Library + + + + Name + ThreadsLib + MacOS + Library + + + + Name + UnicodeConverter + MacOS + Library + + + + + + Name + wx_PPC.lib + MacOS + + + Name + MSL C++.PPC.Lib + MacOS + + + Name + MSL C.PPC.Lib + MacOS + + + Name + console.stubs.c + MacOS + + + Name + MSL RuntimePPC.Lib + MacOS + + + Name + wx_PPC.rsrc + MacOS + + + Name + tiff.lib + MacOS + + + Name + jpeg.lib + MacOS + + + Name + png.lib + MacOS + + + Name + zlib.lib + MacOS + + + Name + proplist.cpp + MacOS + + + Name + AppearanceLib + MacOS + + + Name + ATSUnicodeLib + MacOS + + + Name + CarbonAccessors.o + MacOS + + + Name + ControlsLib + MacOS + + + Name + CursorDevicesGlue.o + MacOS + + + Name + DialogsLib + MacOS + + + Name + DragLib + MacOS + + + Name + InterfaceLib + MacOS + + + Name + InternetConfigLib + MacOS + + + Name + WindowsLib + MacOS + + + Name + MathLib + MacOS + + + Name + MenusLib + MacOS + + + Name + NavigationLib + MacOS + + + Name + OpenTptAppleTalkLib + MacOS + + + Name + OpenTptATalkPPC.o + MacOS + + + Name + OpenTptInetPPC.o + MacOS + + + Name + OpenTptInternetLib + MacOS + + + Name + OpenTransportLib + MacOS + + + Name + OpenTransportAppPPC.o + MacOS + + + Name + PLStringFuncsPPC.lib + MacOS + + + Name + TextEncodingConverter + MacOS + + + Name + Textension + MacOS + + + Name + ThreadsLib + MacOS + + + Name + UnicodeConverter + MacOS + + + + + Classic Debug + + + + UserSourceTrees + + + CustomColor1 + Red0 + Green32767 + Blue0 + + CustomColor2 + Red0 + Green32767 + Blue0 + + CustomColor3 + Red0 + Green32767 + Blue0 + + CustomColor4 + Red0 + Green32767 + Blue0 + + + + AlwaysSearchUserPathstrue + InterpretDOSAndUnixPathstrue + UserSearchPaths + + SearchPath + Path: + PathFormatMacOS + PathRootProject + + Recursivetrue + HostFlagsAll + + + SearchPath + Path:::include: + PathFormatMacOS + PathRootProject + + Recursivefalse + HostFlagsAll + + + SearchPath + Path:::lib: + PathFormatMacOS + PathRootProject + + Recursivetrue + HostFlagsAll + + + SystemSearchPaths + + SearchPath + PathMSL + PathFormatWindows + PathRootCodeWarrior + + Recursivetrue + HostFlagsAll + + + SearchPath + Path:MacOS Support: + PathFormatMacOS + PathRootCodeWarrior + + Recursivetrue + HostFlagsAll + + + + + LinkerMacOS PPC Linker + PreLinker + PostLinker + TargetnameClassic Debug + OutputDirectory + Path: + PathFormatMacOS + PathRootProject + + SaveEntriesUsingRelativePathsfalse + + + FileMappings + + FileTypeAPPL + FileExtension + Compiler + Precompilefalse + Launchabletrue + ResourceFiletrue + IgnoredByMakefalse + + + FileTypeAppl + FileExtension + Compiler + Precompilefalse + Launchabletrue + ResourceFiletrue + IgnoredByMakefalse + + + FileTypeMMLB + FileExtension + CompilerLib Import PPC + Precompilefalse + Launchablefalse + ResourceFilefalse + IgnoredByMakefalse + + + FileTypeMPLF + FileExtension + CompilerLib Import PPC + Precompilefalse + Launchablefalse + ResourceFilefalse + IgnoredByMakefalse + + + FileTypeMWCD + FileExtension + Compiler + Precompilefalse + Launchabletrue + ResourceFiletrue + IgnoredByMakefalse + + + FileTypeRSRC + FileExtension + Compiler + Precompilefalse + Launchabletrue + ResourceFiletrue + IgnoredByMakefalse + + + FileTypeTEXT + FileExtension.c + CompilerMW C/C++ PPC + Precompilefalse + Launchablefalse + ResourceFilefalse + IgnoredByMakefalse + + + FileTypeTEXT + FileExtension.c++ + CompilerMW C/C++ PPC + Precompilefalse + Launchablefalse + ResourceFilefalse + IgnoredByMakefalse + + + FileTypeTEXT + FileExtension.cc + CompilerMW C/C++ PPC + Precompilefalse + Launchablefalse + ResourceFilefalse + IgnoredByMakefalse + + + FileTypeTEXT + FileExtension.cp + CompilerMW C/C++ PPC + Precompilefalse + Launchablefalse + ResourceFilefalse + IgnoredByMakefalse + + + FileTypeTEXT + FileExtension.cpp + CompilerMW C/C++ PPC + Precompilefalse + Launchablefalse + ResourceFilefalse + IgnoredByMakefalse + + + FileTypeTEXT + FileExtension.exp + Compiler + Precompilefalse + Launchablefalse + ResourceFilefalse + IgnoredByMakefalse + + + FileTypeTEXT + FileExtension.h + CompilerMW C/C++ PPC + Precompilefalse + Launchablefalse + ResourceFilefalse + IgnoredByMaketrue + + + FileTypeTEXT + FileExtension.pch + CompilerMW C/C++ PPC + Precompiletrue + Launchablefalse + ResourceFilefalse + IgnoredByMakefalse + + + FileTypeTEXT + FileExtension.pch++ + CompilerMW C/C++ PPC + Precompiletrue + Launchablefalse + ResourceFilefalse + IgnoredByMakefalse + + + FileTypeTEXT + FileExtension.r + CompilerRez + Precompilefalse + Launchablefalse + ResourceFilefalse + IgnoredByMakefalse + + + FileTypeXCOF + FileExtension + CompilerXCOFF Import PPC + Precompilefalse + Launchablefalse + ResourceFilefalse + IgnoredByMakefalse + + + FileTypedocu + FileExtension + Compiler + Precompilefalse + Launchabletrue + ResourceFiletrue + IgnoredByMakefalse + + + FileTypersrc + FileExtension + Compiler + Precompilefalse + Launchabletrue + ResourceFiletrue + IgnoredByMakefalse + + + FileTypeshlb + FileExtension + CompilerPEF Import PPC + Precompilefalse + Launchablefalse + ResourceFilefalse + IgnoredByMakefalse + + + FileTypestub + FileExtension + CompilerPEF Import PPC + Precompilefalse + Launchablefalse + ResourceFilefalse + IgnoredByMakefalse + + + FileExtension.doc + Compiler + Precompilefalse + Launchabletrue + ResourceFilefalse + IgnoredByMaketrue + + + FileExtension.o + CompilerXCOFF Import PPC + Precompilefalse + Launchablefalse + ResourceFilefalse + IgnoredByMakefalse + + + FileExtension.ppob + Compiler + Precompilefalse + Launchabletrue + ResourceFiletrue + IgnoredByMakefalse + + + FileExtension.rsrc + Compiler + Precompilefalse + Launchabletrue + ResourceFiletrue + IgnoredByMakefalse + + + + + CacheModDatestrue + ActivateBrowsertrue + DumpBrowserInfofalse + CacheSubprojectstrue + UseThirdPartyDebuggerfalse + DebuggerCommandLine + Debugger Runtime + 0002000000000000000000000000000000000000000000000000000000000000 + 0000000000000000000000000000000000000000000000000000000000000000 + 0000000000000000000000000000000000000000000000000000000000000000 + 0000000000000000000000000000000000000000000000000000000000000000 + 0000000000000000000000000000000000000000000000000000000000000000 + 0000000000000000000000000000000000000000000000000000000000000000 + 0000000000000000000000000000000000000000000000000000000000000000 + 0000000000000000000000000000000000000000000000000000000000000000 + 0000000000000000000000000000000000000000000000000000000000000000 + 0000000000000000000000000000000000000000000000000000000000000000 + 0000000000000000000000000000000000000000000000000000000000000000 + 0000000000000000000000000000000000000000000000000000000000000000 + 0000000000000000000000000000000000000000000000000000000000000000 + 0000000000000000000000000000000000000000000000000000000000000000 + 0000000000000000000000000000000000000000000000000000000000000000 + 0000000000000000000000000000000000000000000000000000000000000000 + 0000000000000000000000000000000000000000000000000000000000000000 + 0000000000000000000000000000000000000000000000000000000000000000 + 0000000000000000000000000000000000000000000000000000000000000000 + 0000000000000000000000000000000000000000000000000000000000000000 + 0000000000000000000000000000000000000000000000000000000000000000 + 0000000000000000000000000000000000000000000000000000000000000000 + 0000000000000000000000000000000000000000000000000000000000000000 + 0000000000000000000000000000000000000000000000000000000000000000 + 0000000000000000000000000000000000000000000000000000000000000000 + 0000000000000000000000000000000000000000000000000000000000000000 + 0000000000000000000000000000000000000000000000000000000000000000 + 0000000000000000000000000000000000000000000000000000000000000000 + 0000000000000000000000000000000000000000000000000000000000000000 + 0000000000000000000000000000000000000000000000000000000000000000 + 0000000000000000000000000000000000000000000000000000000000000000 + 0000000000000000000000000000000000000000000000000000000000000000 + 000000000000000000000000000000000E2D755010000000000001000E2D7E60 + 0002000000000000000000000E2D2DD000000000000000000000000000000000 + 0000000000000000000000000000000000000000000000000000000000000000 + 0000000000000000000000000000000000000000000000000000000000000000 + 0000000000000000000000000000000000000000000000000000000000000000 + 0000000000000000000000000000000000000000000000000000000000000000 + 0000000000000000000000000000000000000000000000000000000000000000 + 0000000000000000000000000000000000000000000000000000000000000000 + 00000000000000000000000000000000 + + + + LogSystemMessagestrue + AutoTargetDLLsfalse + StopAtWatchpointstrue + PauseWhileRunningfalse + PauseInterval5 + PauseUIFlags0 + AltExePath + Path + PathFormatGeneric + PathRootAbsolute + + StopAtTempBPOnLaunchtrue + CacheSymbolicstrue + TempBPFunctionNamemain + TempBPTypefalse + + + MWFrontEnd_C_cplusplus0 + MWFrontEnd_C_checkprotos0 + MWFrontEnd_C_arm0 + MWFrontEnd_C_trigraphs0 + MWFrontEnd_C_onlystdkeywords0 + MWFrontEnd_C_enumsalwaysint0 + MWFrontEnd_C_mpwpointerstyle0 + MWFrontEnd_C_prefixname/wx/wx_cw_d.h + MWFrontEnd_C_ansistrict0 + MWFrontEnd_C_mpwcnewline1 + MWFrontEnd_C_wchar_type1 + MWFrontEnd_C_enableexceptions1 + MWFrontEnd_C_dontreusestrings0 + MWFrontEnd_C_poolstrings0 + MWFrontEnd_C_dontinline0 + MWFrontEnd_C_useRTTI1 + MWFrontEnd_C_multibyteaware0 + MWFrontEnd_C_unsignedchars1 + MWFrontEnd_C_autoinline0 + MWFrontEnd_C_booltruefalse1 + MWFrontEnd_C_direct_to_som0 + MWFrontEnd_C_som_env_check0 + MWFrontEnd_C_alwaysinline0 + MWFrontEnd_C_inlinelevel0 + MWFrontEnd_C_ecplusplus0 + MWFrontEnd_C_objective_c0 + MWFrontEnd_C_defer_codegen0 + + + MWWarning_C_warn_illpragma1 + MWWarning_C_warn_emptydecl1 + MWWarning_C_warn_possunwant1 + MWWarning_C_warn_unusedvar0 + MWWarning_C_warn_unusedarg0 + MWWarning_C_warn_extracomma0 + MWWarning_C_pedantic1 + MWWarning_C_warningerrors0 + MWWarning_C_warn_hidevirtual1 + MWWarning_C_warn_implicitconv1 + MWWarning_C_warn_notinlined1 + MWWarning_C_warn_structclass1 + + + MWMerge_MacOS_projectTypeApplication + MWMerge_MacOS_outputNameMerge Out + MWMerge_MacOS_outputCreator1061109567 + MWMerge_MacOS_outputType1095782476 + MWMerge_MacOS_suppressWarning0 + MWMerge_MacOS_copyFragments1 + MWMerge_MacOS_copyResources1 + MWMerge_MacOS_skipResources + + ”¼P + =ÃH + =Ø: + + + + MWCodeGen_PPC_structalignmentPPC + MWCodeGen_PPC_tracebacktablesInline + MWCodeGen_PPC_processorGeneric + MWCodeGen_PPC_readonlystrings0 + MWCodeGen_PPC_tocdata1 + MWCodeGen_PPC_profiler0 + MWCodeGen_PPC_fpcontract1 + MWCodeGen_PPC_schedule0 + MWCodeGen_PPC_peephole1 + MWCodeGen_PPC_processorspecific0 + MWCodeGen_PPC_altivec0 + MWCodeGen_PPC_vectortocdata0 + MWCodeGen_PPC_vrsave0 + + + MWDisassembler_PPC_showcode1 + MWDisassembler_PPC_extended1 + MWDisassembler_PPC_mix0 + MWDisassembler_PPC_nohex0 + MWDisassembler_PPC_showdata1 + MWDisassembler_PPC_showexceptions1 + MWDisassembler_PPC_showsym0 + MWDisassembler_PPC_shownames1 + + + GlobalOptimizer_PPC_optimizationlevelLevel0 + GlobalOptimizer_PPC_optforSpeed + + + MWLinker_PPC_linksym1 + MWLinker_PPC_symfullpath1 + MWLinker_PPC_linkmap0 + MWLinker_PPC_nolinkwarnings0 + MWLinker_PPC_dontdeadstripinitcode0 + MWLinker_PPC_permitmultdefs0 + MWLinker_PPC_linkmodeFast + MWLinker_PPC_initname + MWLinker_PPC_mainname__start + MWLinker_PPC_termname + PPC Mach-O CodeGen + 0001000001010000010000000001010101000000 + + PPC Mach-O Linker + 0001000000000100000100000000000000000000000000000000000000007374 + 6172740000000000000000000000000000000000000000000000000000000000 + 000000000000000000000000000000000000000000000000000000000000 + + PPC Mach-O Target + 0001000005612E6F757400000000000000000000000000000000000000000000 + 0000000000000000000000000000000000000000000000000000000000000000 + 000000003F3F3F3F4D41504C0000004000000000000000000000000000000000 + 0000000000000000000000000000000000000000000000000000000000000000 + 0000000000000000000000000000000000000000000000000000000000000000 + 00000000 + + + + MWPEF_exportsNone + MWPEF_libfolder0 + MWPEF_sortcodeNone + MWPEF_expandbss0 + MWPEF_sharedata0 + MWPEF_olddefversion0 + MWPEF_oldimpversion0 + MWPEF_currentversion0 + MWPEF_fragmentname + MWPEF_collapsereloads0 + + + MWProject_PPC_typeApplication + MWProject_PPC_outfileproplist Classic Debug + MWProject_PPC_filecreator1061109567 + MWProject_PPC_filetype1095782476 + MWProject_PPC_size3840 + MWProject_PPC_minsize3840 + MWProject_PPC_stacksize64 + MWProject_PPC_flags22720 + MWProject_PPC_symfilename + MWProject_PPC_rsrcname + MWProject_PPC_rsrcheaderNative + MWProject_PPC_rsrctype1061109567 + MWProject_PPC_rsrcid0 + MWProject_PPC_rsrcflags0 + MWProject_PPC_rsrcstore0 + MWProject_PPC_rsrcmerge0 + + + MWAssembler_PPC_auxheader0 + MWAssembler_PPC_symmodeMac + MWAssembler_PPC_dialectPPC + MWAssembler_PPC_prefixfile + MWAssembler_PPC_typecheck0 + MWAssembler_PPC_warnings0 + MWAssembler_PPC_casesensitive0 + + + MWRez_Language_maxwidth80 + MWRez_Language_scriptRoman + MWRez_Language_alignmentAlign1 + MWRez_Language_filtermodeFilterSkip + MWRez_Language_suppresswarnings0 + MWRez_Language_escapecontrolchars1 + MWRez_Language_prefixname + MWRez_Language_filteredtypes'CODE' 'DATA' 'PICT' + + + + Name + MSL C++.PPC.Lib + MacOS + Library + Debug + + + Name + MSL C.PPC.Lib + MacOS + Library + Debug + + + Name + console.stubs.c + MacOS + Text + Debug + + + Name + MSL RuntimePPC.Lib + MacOS + Library + Debug + + + Name + wx_PPC_d.lib + MacOS + Library + Debug + + + Name + wx_PPC.rsrc + MacOS + Resource + Debug + + + Name + zlib.lib + MacOS + Library + Debug + + + Name + png.lib + MacOS + Library + Debug + + + Name + tiffd.lib + MacOS + Library + Debug + + + Name + jpeg.lib + MacOS + Library + Debug + + + Name + proplist.cpp + MacOS + Text + Debug + + + Name + AppearanceLib + MacOS + Library + Debug + + + Name + ATSUnicodeLib + MacOS + Library + Debug + + + Name + CarbonAccessors.o + MacOS + Library + Debug + + + Name + ControlsLib + MacOS + Library + Debug + + + Name + CursorDevicesGlue.o + MacOS + Library + Debug + + + Name + DialogsLib + MacOS + Library + Debug + + + Name + DragLib + MacOS + Library + Debug + + + Name + InterfaceLib + MacOS + Library + Debug + + + Name + InternetConfigLib + MacOS + Library + Debug + + + Name + WindowsLib + MacOS + Library + Debug + + + Name + MathLib + MacOS + Library + Debug + + + Name + MenusLib + MacOS + Library + Debug + + + Name + NavigationLib + MacOS + Library + Debug + + + Name + OpenTptAppleTalkLib + MacOS + Library + Debug + + + Name + OpenTptATalkPPC.o + MacOS + Library + Debug + + + Name + OpenTptInetPPC.o + MacOS + Library + Debug + + + Name + OpenTptInternetLib + MacOS + Library + Debug + + + Name + OpenTransportLib + MacOS + Library + Debug + + + Name + OpenTransportAppPPC.o + MacOS + Library + Debug + + + Name + PLStringFuncsPPC.lib + MacOS + Library + Debug + + + Name + TextEncodingConverter + MacOS + Library + Debug + + + Name + Textension + MacOS + Library + Debug + + + Name + ThreadsLib + MacOS + Library + Debug + + + Name + UnicodeConverter + MacOS + Library + Debug + + + + + Name + MSL C++.PPC.Lib + MacOS + + + Name + MSL C.PPC.Lib + MacOS + + + Name + console.stubs.c + MacOS + + + Name + MSL RuntimePPC.Lib + MacOS + + + Name + wx_PPC_d.lib + MacOS + + + Name + wx_PPC.rsrc + MacOS + + + Name + zlib.lib + MacOS + + + Name + png.lib + MacOS + + + Name + tiffd.lib + MacOS + + + Name + jpeg.lib + MacOS + + + Name + proplist.cpp + MacOS + + + Name + AppearanceLib + MacOS + + + Name + ATSUnicodeLib + MacOS + + + Name + CarbonAccessors.o + MacOS + + + Name + ControlsLib + MacOS + + + Name + CursorDevicesGlue.o + MacOS + + + Name + DialogsLib + MacOS + + + Name + DragLib + MacOS + + + Name + InterfaceLib + MacOS + + + Name + InternetConfigLib + MacOS + + + Name + WindowsLib + MacOS + + + Name + MathLib + MacOS + + + Name + MenusLib + MacOS + + + Name + NavigationLib + MacOS + + + Name + OpenTptAppleTalkLib + MacOS + + + Name + OpenTptATalkPPC.o + MacOS + + + Name + OpenTptInetPPC.o + MacOS + + + Name + OpenTptInternetLib + MacOS + + + Name + OpenTransportLib + MacOS + + + Name + OpenTransportAppPPC.o + MacOS + + + Name + PLStringFuncsPPC.lib + MacOS + + + Name + TextEncodingConverter + MacOS + + + Name + Textension + MacOS + + + Name + ThreadsLib + MacOS + + + Name + UnicodeConverter + MacOS + + + + + Carbon Debug + + + + UserSourceTrees + + + CustomColor1 + Red0 + Green32767 + Blue0 + + CustomColor2 + Red0 + Green32767 + Blue0 + + CustomColor3 + Red0 + Green32767 + Blue0 + + CustomColor4 + Red0 + Green32767 + Blue0 + + + + AlwaysSearchUserPathstrue + InterpretDOSAndUnixPathstrue + UserSearchPaths + + SearchPath + Path: + PathFormatMacOS + PathRootProject + + Recursivetrue + HostFlagsAll + + + SearchPath + Path:::include: + PathFormatMacOS + PathRootProject + + Recursivefalse + HostFlagsAll + + + SearchPath + Path:::lib: + PathFormatMacOS + PathRootProject + + Recursivetrue + HostFlagsAll + + + SystemSearchPaths + + SearchPath + PathMSL + PathFormatWindows + PathRootCodeWarrior + + Recursivetrue + HostFlagsAll + + + SearchPath + Path:MacOS Support: + PathFormatMacOS + PathRootCodeWarrior + + Recursivetrue + HostFlagsAll + + + + + LinkerMacOS PPC Linker + PreLinker + PostLinker + TargetnameCarbon Debug + OutputDirectory + Path: + PathFormatMacOS + PathRootProject + + SaveEntriesUsingRelativePathsfalse + + + FileMappings + + FileTypeAPPL + FileExtension + Compiler + Precompilefalse + Launchabletrue + ResourceFiletrue + IgnoredByMakefalse + + + FileTypeAppl + FileExtension + Compiler + Precompilefalse + Launchabletrue + ResourceFiletrue + IgnoredByMakefalse + + + FileTypeMMLB + FileExtension + CompilerLib Import PPC + Precompilefalse + Launchablefalse + ResourceFilefalse + IgnoredByMakefalse + + + FileTypeMPLF + FileExtension + CompilerLib Import PPC + Precompilefalse + Launchablefalse + ResourceFilefalse + IgnoredByMakefalse + + + FileTypeMWCD + FileExtension + Compiler + Precompilefalse + Launchabletrue + ResourceFiletrue + IgnoredByMakefalse + + + FileTypeRSRC + FileExtension + Compiler + Precompilefalse + Launchabletrue + ResourceFiletrue + IgnoredByMakefalse + + + FileTypeTEXT + FileExtension.c + CompilerMW C/C++ PPC + Precompilefalse + Launchablefalse + ResourceFilefalse + IgnoredByMakefalse + + + FileTypeTEXT + FileExtension.c++ + CompilerMW C/C++ PPC + Precompilefalse + Launchablefalse + ResourceFilefalse + IgnoredByMakefalse + + + FileTypeTEXT + FileExtension.cc + CompilerMW C/C++ PPC + Precompilefalse + Launchablefalse + ResourceFilefalse + IgnoredByMakefalse + + + FileTypeTEXT + FileExtension.cp + CompilerMW C/C++ PPC + Precompilefalse + Launchablefalse + ResourceFilefalse + IgnoredByMakefalse + + + FileTypeTEXT + FileExtension.cpp + CompilerMW C/C++ PPC + Precompilefalse + Launchablefalse + ResourceFilefalse + IgnoredByMakefalse + + + FileTypeTEXT + FileExtension.exp + Compiler + Precompilefalse + Launchablefalse + ResourceFilefalse + IgnoredByMakefalse + + + FileTypeTEXT + FileExtension.h + CompilerMW C/C++ PPC + Precompilefalse + Launchablefalse + ResourceFilefalse + IgnoredByMaketrue + + + FileTypeTEXT + FileExtension.pch + CompilerMW C/C++ PPC + Precompiletrue + Launchablefalse + ResourceFilefalse + IgnoredByMakefalse + + + FileTypeTEXT + FileExtension.pch++ + CompilerMW C/C++ PPC + Precompiletrue + Launchablefalse + ResourceFilefalse + IgnoredByMakefalse + + + FileTypeTEXT + FileExtension.r + CompilerRez + Precompilefalse + Launchablefalse + ResourceFilefalse + IgnoredByMakefalse + + + FileTypeXCOF + FileExtension + CompilerXCOFF Import PPC + Precompilefalse + Launchablefalse + ResourceFilefalse + IgnoredByMakefalse + + + FileTypedocu + FileExtension + Compiler + Precompilefalse + Launchabletrue + ResourceFiletrue + IgnoredByMakefalse + + + FileTypersrc + FileExtension + Compiler + Precompilefalse + Launchabletrue + ResourceFiletrue + IgnoredByMakefalse + + + FileTypeshlb + FileExtension + CompilerPEF Import PPC + Precompilefalse + Launchablefalse + ResourceFilefalse + IgnoredByMakefalse + + + FileTypestub + FileExtension + CompilerPEF Import PPC + Precompilefalse + Launchablefalse + ResourceFilefalse + IgnoredByMakefalse + + + FileExtension.doc + Compiler + Precompilefalse + Launchabletrue + ResourceFilefalse + IgnoredByMaketrue + + + FileExtension.o + CompilerXCOFF Import PPC + Precompilefalse + Launchablefalse + ResourceFilefalse + IgnoredByMakefalse + + + FileExtension.ppob + Compiler + Precompilefalse + Launchabletrue + ResourceFiletrue + IgnoredByMakefalse + + + FileExtension.rsrc + Compiler + Precompilefalse + Launchabletrue + ResourceFiletrue + IgnoredByMakefalse + + + + + CacheModDatestrue + ActivateBrowsertrue + DumpBrowserInfofalse + CacheSubprojectstrue + UseThirdPartyDebuggerfalse + DebuggerCommandLine + Debugger Runtime + 0002000000000000000000000000000000000000000000000000000000000000 + 0000000000000000000000000000000000000000000000000000000000000000 + 0000000000000000000000000000000000000000000000000000000000000000 + 0000000000000000000000000000000000000000000000000000000000000000 + 0000000000000000000000000000000000000000000000000000000000000000 + 0000000000000000000000000000000000000000000000000000000000000000 + 0000000000000000000000000000000000000000000000000000000000000000 + 0000000000000000000000000000000000000000000000000000000000000000 + 0000000000000000000000000000000000000000000000000000000000000000 + 0000000000000000000000000000000000000000000000000000000000000000 + 0000000000000000000000000000000000000000000000000000000000000000 + 0000000000000000000000000000000000000000000000000000000000000000 + 0000000000000000000000000000000000000000000000000000000000000000 + 0000000000000000000000000000000000000000000000000000000000000000 + 0000000000000000000000000000000000000000000000000000000000000000 + 0000000000000000000000000000000000000000000000000000000000000000 + 0000000000000000000000000000000000000000000000000000000000000000 + 0000000000000000000000000000000000000000000000000000000000000000 + 0000000000000000000000000000000000000000000000000000000000000000 + 0000000000000000000000000000000000000000000000000000000000000000 + 0000000000000000000000000000000000000000000000000000000000000000 + 0000000000000000000000000000000000000000000000000000000000000000 + 0000000000000000000000000000000000000000000000000000000000000000 + 0000000000000000000000000000000000000000000000000000000000000000 + 0000000000000000000000000000000000000000000000000000000000000000 + 0000000000000000000000000000000000000000000000000000000000000000 + 0000000000000000000000000000000000000000000000000000000000000000 + 0000000000000000000000000000000000000000000000000000000000000000 + 0000000000000000000000000000000000000000000000000000000000000000 + 0000000000000000000000000000000000000000000000000000000000000000 + 0000000000000000000000000000000000000000000000000000000000000000 + 0000000000000000000000000000000000000000000000000000000000000000 + 00000000000000000000000000000000 + + + + LogSystemMessagestrue + AutoTargetDLLsfalse + StopAtWatchpointstrue + PauseWhileRunningfalse + PauseInterval5 + PauseUIFlags0 + AltExePath + Path + PathFormatGeneric + PathRootAbsolute + + StopAtTempBPOnLaunchtrue + CacheSymbolicstrue + TempBPFunctionNamemain + TempBPTypefalse + + + MWFrontEnd_C_cplusplus0 + MWFrontEnd_C_checkprotos0 + MWFrontEnd_C_arm0 + MWFrontEnd_C_trigraphs0 + MWFrontEnd_C_onlystdkeywords0 + MWFrontEnd_C_enumsalwaysint0 + MWFrontEnd_C_mpwpointerstyle0 + MWFrontEnd_C_prefixname/wx/wx_cwc_d.h + MWFrontEnd_C_ansistrict0 + MWFrontEnd_C_mpwcnewline1 + MWFrontEnd_C_wchar_type1 + MWFrontEnd_C_enableexceptions1 + MWFrontEnd_C_dontreusestrings0 + MWFrontEnd_C_poolstrings0 + MWFrontEnd_C_dontinline0 + MWFrontEnd_C_useRTTI1 + MWFrontEnd_C_multibyteaware0 + MWFrontEnd_C_unsignedchars1 + MWFrontEnd_C_autoinline0 + MWFrontEnd_C_booltruefalse1 + MWFrontEnd_C_direct_to_som0 + MWFrontEnd_C_som_env_check0 + MWFrontEnd_C_alwaysinline0 + MWFrontEnd_C_inlinelevel0 + MWFrontEnd_C_ecplusplus0 + MWFrontEnd_C_objective_c0 + MWFrontEnd_C_defer_codegen0 + + + MWWarning_C_warn_illpragma1 + MWWarning_C_warn_emptydecl1 + MWWarning_C_warn_possunwant1 + MWWarning_C_warn_unusedvar0 + MWWarning_C_warn_unusedarg0 + MWWarning_C_warn_extracomma0 + MWWarning_C_pedantic1 + MWWarning_C_warningerrors0 + MWWarning_C_warn_hidevirtual1 + MWWarning_C_warn_implicitconv1 + MWWarning_C_warn_notinlined1 + MWWarning_C_warn_structclass1 + + + MWMerge_MacOS_projectTypeApplication + MWMerge_MacOS_outputNameMerge Out + MWMerge_MacOS_outputCreator1061109567 + MWMerge_MacOS_outputType1095782476 + MWMerge_MacOS_suppressWarning0 + MWMerge_MacOS_copyFragments1 + MWMerge_MacOS_copyResources1 + MWMerge_MacOS_skipResources + + ”¼P + =ÃH + =Ø: + + + + MWCodeGen_PPC_structalignmentPPC + MWCodeGen_PPC_tracebacktablesInline + MWCodeGen_PPC_processorGeneric + MWCodeGen_PPC_readonlystrings0 + MWCodeGen_PPC_tocdata1 + MWCodeGen_PPC_profiler0 + MWCodeGen_PPC_fpcontract1 + MWCodeGen_PPC_schedule0 + MWCodeGen_PPC_peephole1 + MWCodeGen_PPC_processorspecific0 + MWCodeGen_PPC_altivec0 + MWCodeGen_PPC_vectortocdata0 + MWCodeGen_PPC_vrsave0 + + + MWDisassembler_PPC_showcode1 + MWDisassembler_PPC_extended1 + MWDisassembler_PPC_mix0 + MWDisassembler_PPC_nohex0 + MWDisassembler_PPC_showdata1 + MWDisassembler_PPC_showexceptions1 + MWDisassembler_PPC_showsym0 + MWDisassembler_PPC_shownames1 + + + GlobalOptimizer_PPC_optimizationlevelLevel0 + GlobalOptimizer_PPC_optforSpeed + + + MWLinker_PPC_linksym1 + MWLinker_PPC_symfullpath1 + MWLinker_PPC_linkmap0 + MWLinker_PPC_nolinkwarnings0 + MWLinker_PPC_dontdeadstripinitcode0 + MWLinker_PPC_permitmultdefs0 + MWLinker_PPC_linkmodeFast + MWLinker_PPC_initname + MWLinker_PPC_mainname__start + MWLinker_PPC_termname + PPC Mach-O CodeGen + 0001000001010000010000000001010101000000 + + PPC Mach-O Linker + 0001000000000100000100000000000000000000000000000000000000007374 + 6172740000000000000000000000000000000000000000000000000000000000 + 000000000000000000000000000000000000000000000000000000000000 + + PPC Mach-O Target + 0001000005612E6F757400000000000000000000000000000000000000000000 + 0000000000000000000000000000000000000000000000000000000000000000 + 000000003F3F3F3F4D41504C0000004000000000000000000000000000000000 + 0000000000000000000000000000000000000000000000000000000000000000 + 0000000000000000000000000000000000000000000000000000000000000000 + 00000000 + + + + MWPEF_exportsNone + MWPEF_libfolder0 + MWPEF_sortcodeNone + MWPEF_expandbss0 + MWPEF_sharedata0 + MWPEF_olddefversion0 + MWPEF_oldimpversion0 + MWPEF_currentversion0 + MWPEF_fragmentname + MWPEF_collapsereloads0 + + + MWProject_PPC_typeApplication + MWProject_PPC_outfileproplist Carbon Debug + MWProject_PPC_filecreator1061109567 + MWProject_PPC_filetype1095782476 + MWProject_PPC_size3840 + MWProject_PPC_minsize3840 + MWProject_PPC_stacksize64 + MWProject_PPC_flags22720 + MWProject_PPC_symfilename + MWProject_PPC_rsrcname + MWProject_PPC_rsrcheaderNative + MWProject_PPC_rsrctype1061109567 + MWProject_PPC_rsrcid0 + MWProject_PPC_rsrcflags0 + MWProject_PPC_rsrcstore0 + MWProject_PPC_rsrcmerge0 + + + MWAssembler_PPC_auxheader0 + MWAssembler_PPC_symmodeMac + MWAssembler_PPC_dialectPPC + MWAssembler_PPC_prefixfile + MWAssembler_PPC_typecheck0 + MWAssembler_PPC_warnings0 + MWAssembler_PPC_casesensitive0 + + + MWRez_Language_maxwidth80 + MWRez_Language_scriptRoman + MWRez_Language_alignmentAlign1 + MWRez_Language_filtermodeFilterSkip + MWRez_Language_suppresswarnings0 + MWRez_Language_escapecontrolchars1 + MWRez_Language_prefixname + MWRez_Language_filteredtypes'CODE' 'DATA' 'PICT' + + + + Name + MSL C++.PPC.Lib + MacOS + Library + Debug + + + Name + console.stubs.c + MacOS + Text + Debug + + + Name + MSL RuntimePPC.Lib + MacOS + Library + Debug + + + Name + wx_CARBON_d.lib + MacOS + Library + Debug + + + Name + MSL C.CARBON.Lib + MacOS + Library + Debug + + + Name + wx_CARBON.rsrc + MacOS + Resource + Debug + + + Name + tiffd.lib + MacOS + Library + Debug + + + Name + jpeg.lib + MacOS + Library + Debug + + + Name + png.lib + MacOS + Library + Debug + + + Name + zlib.lib + MacOS + Library + Debug + + + Name + proplist.cpp + MacOS + Text + Debug + + + Name + CarbonLib + MacOS + Library + Debug + + + Name + CarbonFrameworkLib + MacOS + Library + Debug + + + + + Name + MSL C++.PPC.Lib + MacOS + + + Name + console.stubs.c + MacOS + + + Name + MSL RuntimePPC.Lib + MacOS + + + Name + wx_CARBON_d.lib + MacOS + + + Name + MSL C.CARBON.Lib + MacOS + + + Name + wx_CARBON.rsrc + MacOS + + + Name + tiffd.lib + MacOS + + + Name + jpeg.lib + MacOS + + + Name + png.lib + MacOS + + + Name + zlib.lib + MacOS + + + Name + proplist.cpp + MacOS + + + Name + CarbonLib + MacOS + + + Name + CarbonFrameworkLib + MacOS + + + + + Carbon Release + + + + UserSourceTrees + + + CustomColor1 + Red0 + Green32767 + Blue0 + + CustomColor2 + Red0 + Green32767 + Blue0 + + CustomColor3 + Red0 + Green32767 + Blue0 + + CustomColor4 + Red0 + Green32767 + Blue0 + + + + AlwaysSearchUserPathstrue + InterpretDOSAndUnixPathstrue + UserSearchPaths + + SearchPath + Path: + PathFormatMacOS + PathRootProject + + Recursivetrue + HostFlagsAll + + + SearchPath + Path:::include: + PathFormatMacOS + PathRootProject + + Recursivefalse + HostFlagsAll + + + SearchPath + Path:::lib: + PathFormatMacOS + PathRootProject + + Recursivetrue + HostFlagsAll + + + SystemSearchPaths + + SearchPath + PathMSL + PathFormatWindows + PathRootCodeWarrior + + Recursivetrue + HostFlagsAll + + + SearchPath + Path:MacOS Support: + PathFormatMacOS + PathRootCodeWarrior + + Recursivetrue + HostFlagsAll + + + + + LinkerMacOS PPC Linker + PreLinker + PostLinker + TargetnameCarbon Release + OutputDirectory + Path: + PathFormatMacOS + PathRootProject + + SaveEntriesUsingRelativePathsfalse + + + FileMappings + + FileTypeAPPL + FileExtension + Compiler + Precompilefalse + Launchabletrue + ResourceFiletrue + IgnoredByMakefalse + + + FileTypeAppl + FileExtension + Compiler + Precompilefalse + Launchabletrue + ResourceFiletrue + IgnoredByMakefalse + + + FileTypeMMLB + FileExtension + CompilerLib Import PPC + Precompilefalse + Launchablefalse + ResourceFilefalse + IgnoredByMakefalse + + + FileTypeMPLF + FileExtension + CompilerLib Import PPC + Precompilefalse + Launchablefalse + ResourceFilefalse + IgnoredByMakefalse + + + FileTypeMWCD + FileExtension + Compiler + Precompilefalse + Launchabletrue + ResourceFiletrue + IgnoredByMakefalse + + + FileTypeRSRC + FileExtension + Compiler + Precompilefalse + Launchabletrue + ResourceFiletrue + IgnoredByMakefalse + + + FileTypeTEXT + FileExtension.c + CompilerMW C/C++ PPC + Precompilefalse + Launchablefalse + ResourceFilefalse + IgnoredByMakefalse + + + FileTypeTEXT + FileExtension.c++ + CompilerMW C/C++ PPC + Precompilefalse + Launchablefalse + ResourceFilefalse + IgnoredByMakefalse + + + FileTypeTEXT + FileExtension.cc + CompilerMW C/C++ PPC + Precompilefalse + Launchablefalse + ResourceFilefalse + IgnoredByMakefalse + + + FileTypeTEXT + FileExtension.cp + CompilerMW C/C++ PPC + Precompilefalse + Launchablefalse + ResourceFilefalse + IgnoredByMakefalse + + + FileTypeTEXT + FileExtension.cpp + CompilerMW C/C++ PPC + Precompilefalse + Launchablefalse + ResourceFilefalse + IgnoredByMakefalse + + + FileTypeTEXT + FileExtension.exp + Compiler + Precompilefalse + Launchablefalse + ResourceFilefalse + IgnoredByMakefalse + + + FileTypeTEXT + FileExtension.h + CompilerMW C/C++ PPC + Precompilefalse + Launchablefalse + ResourceFilefalse + IgnoredByMaketrue + + + FileTypeTEXT + FileExtension.pch + CompilerMW C/C++ PPC + Precompiletrue + Launchablefalse + ResourceFilefalse + IgnoredByMakefalse + + + FileTypeTEXT + FileExtension.pch++ + CompilerMW C/C++ PPC + Precompiletrue + Launchablefalse + ResourceFilefalse + IgnoredByMakefalse + + + FileTypeTEXT + FileExtension.r + CompilerRez + Precompilefalse + Launchablefalse + ResourceFilefalse + IgnoredByMakefalse + + + FileTypeXCOF + FileExtension + CompilerXCOFF Import PPC + Precompilefalse + Launchablefalse + ResourceFilefalse + IgnoredByMakefalse + + + FileTypedocu + FileExtension + Compiler + Precompilefalse + Launchabletrue + ResourceFiletrue + IgnoredByMakefalse + + + FileTypersrc + FileExtension + Compiler + Precompilefalse + Launchabletrue + ResourceFiletrue + IgnoredByMakefalse + + + FileTypeshlb + FileExtension + CompilerPEF Import PPC + Precompilefalse + Launchablefalse + ResourceFilefalse + IgnoredByMakefalse + + + FileTypestub + FileExtension + CompilerPEF Import PPC + Precompilefalse + Launchablefalse + ResourceFilefalse + IgnoredByMakefalse + + + FileExtension.doc + Compiler + Precompilefalse + Launchabletrue + ResourceFilefalse + IgnoredByMaketrue + + + FileExtension.o + CompilerXCOFF Import PPC + Precompilefalse + Launchablefalse + ResourceFilefalse + IgnoredByMakefalse + + + FileExtension.ppob + Compiler + Precompilefalse + Launchabletrue + ResourceFiletrue + IgnoredByMakefalse + + + FileExtension.rsrc + Compiler + Precompilefalse + Launchabletrue + ResourceFiletrue + IgnoredByMakefalse + + + + + CacheModDatestrue + ActivateBrowsertrue + DumpBrowserInfofalse + CacheSubprojectstrue + UseThirdPartyDebuggerfalse + DebuggerCommandLine + Debugger Runtime + 0002000000000000000000000000000000000000000000000000000000000000 + 0000000000000000000000000000000000000000000000000000000000000000 + 0000000000000000000000000000000000000000000000000000000000000000 + 0000000000000000000000000000000000000000000000000000000000000000 + 0000000000000000000000000000000000000000000000000000000000000000 + 0000000000000000000000000000000000000000000000000000000000000000 + 0000000000000000000000000000000000000000000000000000000000000000 + 0000000000000000000000000000000000000000000000000000000000000000 + 0000000000000000000000000000000000000000000000000000000000000000 + 0000000000000000000000000000000000000000000000000000000000000000 + 0000000000000000000000000000000000000000000000000000000000000000 + 0000000000000000000000000000000000000000000000000000000000000000 + 0000000000000000000000000000000000000000000000000000000000000000 + 0000000000000000000000000000000000000000000000000000000000000000 + 0000000000000000000000000000000000000000000000000000000000000000 + 0000000000000000000000000000000000000000000000000000000000000000 + 0000000000000000000000000000000000000000000000000000000000000000 + 0000000000000000000000000000000000000000000000000000000000000000 + 0000000000000000000000000000000000000000000000000000000000000000 + 0000000000000000000000000000000000000000000000000000000000000000 + 0000000000000000000000000000000000000000000000000000000000000000 + 0000000000000000000000000000000000000000000000000000000000000000 + 0000000000000000000000000000000000000000000000000000000000000000 + 0000000000000000000000000000000000000000000000000000000000000000 + 0000000000000000000000000000000000000000000000000000000000000000 + 0000000000000000000000000000000000000000000000000000000000000000 + 0000000000000000000000000000000000000000000000000000000000000000 + 0000000000000000000000000000000000000000000000000000000000000000 + 0000000000000000000000000000000000000000000000000000000000000000 + 0000000000000000000000000000000000000000000000000000000000000000 + 0000000000000000000000000000000000000000000000000000000000000000 + 0000000000000000000000000000000000000000000000000000000000000000 + 00000000000000000000000000000000 + + + + LogSystemMessagestrue + AutoTargetDLLsfalse + StopAtWatchpointstrue + PauseWhileRunningfalse + PauseInterval5 + PauseUIFlags0 + AltExePath + Path + PathFormatGeneric + PathRootAbsolute + + StopAtTempBPOnLaunchtrue + CacheSymbolicstrue + TempBPFunctionNamemain + TempBPTypefalse + + + MWFrontEnd_C_cplusplus0 + MWFrontEnd_C_checkprotos0 + MWFrontEnd_C_arm0 + MWFrontEnd_C_trigraphs0 + MWFrontEnd_C_onlystdkeywords0 + MWFrontEnd_C_enumsalwaysint0 + MWFrontEnd_C_mpwpointerstyle1 + MWFrontEnd_C_prefixname/wx/wx_cwc.h + MWFrontEnd_C_ansistrict0 + MWFrontEnd_C_mpwcnewline1 + MWFrontEnd_C_wchar_type1 + MWFrontEnd_C_enableexceptions1 + MWFrontEnd_C_dontreusestrings0 + MWFrontEnd_C_poolstrings0 + MWFrontEnd_C_dontinline0 + MWFrontEnd_C_useRTTI1 + MWFrontEnd_C_multibyteaware0 + MWFrontEnd_C_unsignedchars1 + MWFrontEnd_C_autoinline0 + MWFrontEnd_C_booltruefalse1 + MWFrontEnd_C_direct_to_som0 + MWFrontEnd_C_som_env_check0 + MWFrontEnd_C_alwaysinline0 + MWFrontEnd_C_inlinelevel0 + MWFrontEnd_C_ecplusplus0 + MWFrontEnd_C_objective_c0 + MWFrontEnd_C_defer_codegen0 + + + MWWarning_C_warn_illpragma0 + MWWarning_C_warn_emptydecl0 + MWWarning_C_warn_possunwant0 + MWWarning_C_warn_unusedvar0 + MWWarning_C_warn_unusedarg0 + MWWarning_C_warn_extracomma0 + MWWarning_C_pedantic0 + MWWarning_C_warningerrors0 + MWWarning_C_warn_hidevirtual0 + MWWarning_C_warn_implicitconv0 + MWWarning_C_warn_notinlined0 + MWWarning_C_warn_structclass0 + + + MWMerge_MacOS_projectTypeApplication + MWMerge_MacOS_outputNameMerge Out + MWMerge_MacOS_outputCreator1061109567 + MWMerge_MacOS_outputType1095782476 + MWMerge_MacOS_suppressWarning0 + MWMerge_MacOS_copyFragments1 + MWMerge_MacOS_copyResources1 + MWMerge_MacOS_skipResources + + ”¼P + =ÃH + =Ø: + + + + MWCodeGen_PPC_structalignmentPPC + MWCodeGen_PPC_tracebacktablesNone + MWCodeGen_PPC_processorGeneric + MWCodeGen_PPC_readonlystrings0 + MWCodeGen_PPC_tocdata1 + MWCodeGen_PPC_profiler0 + MWCodeGen_PPC_fpcontract1 + MWCodeGen_PPC_schedule0 + MWCodeGen_PPC_peephole1 + MWCodeGen_PPC_processorspecific0 + MWCodeGen_PPC_altivec0 + MWCodeGen_PPC_vectortocdata0 + MWCodeGen_PPC_vrsave0 + + + MWDisassembler_PPC_showcode1 + MWDisassembler_PPC_extended1 + MWDisassembler_PPC_mix0 + MWDisassembler_PPC_nohex0 + MWDisassembler_PPC_showdata1 + MWDisassembler_PPC_showexceptions1 + MWDisassembler_PPC_showsym0 + MWDisassembler_PPC_shownames1 + + + GlobalOptimizer_PPC_optimizationlevelLevel0 + GlobalOptimizer_PPC_optforSpeed + + + MWLinker_PPC_linksym1 + MWLinker_PPC_symfullpath1 + MWLinker_PPC_linkmap0 + MWLinker_PPC_nolinkwarnings0 + MWLinker_PPC_dontdeadstripinitcode0 + MWLinker_PPC_permitmultdefs0 + MWLinker_PPC_linkmodeFast + MWLinker_PPC_initname + MWLinker_PPC_mainname__start + MWLinker_PPC_termname + PPC Mach-O CodeGen + 0001000001010000010000000001010101000000 + + PPC Mach-O Linker + 0001000000000100000100000000000000000000000000000000000000007374 + 6172740000000000000000000000000000000000000000000000000000000000 + 000000000000000000000000000000000000000000000000000000000000 + + PPC Mach-O Target + 0001000005612E6F757400000000000000000000000000000000000000000000 + 0000000000000000000000000000000000000000000000000000000000000000 + 000000003F3F3F3F4D41504C0000004000000000000000000000000000000000 + 0000000000000000000000000000000000000000000000000000000000000000 + 0000000000000000000000000000000000000000000000000000000000000000 + 00000000 + + + + MWPEF_exportsNone + MWPEF_libfolder0 + MWPEF_sortcodeNone + MWPEF_expandbss0 + MWPEF_sharedata0 + MWPEF_olddefversion0 + MWPEF_oldimpversion0 + MWPEF_currentversion0 + MWPEF_fragmentname + MWPEF_collapsereloads0 + + + MWProject_PPC_typeApplication + MWProject_PPC_outfileproplist Carbon Release + MWProject_PPC_filecreator1061109567 + MWProject_PPC_filetype1095782476 + MWProject_PPC_size3840 + MWProject_PPC_minsize3840 + MWProject_PPC_stacksize64 + MWProject_PPC_flags22720 + MWProject_PPC_symfilename + MWProject_PPC_rsrcname + MWProject_PPC_rsrcheaderNative + MWProject_PPC_rsrctype1061109567 + MWProject_PPC_rsrcid0 + MWProject_PPC_rsrcflags0 + MWProject_PPC_rsrcstore0 + MWProject_PPC_rsrcmerge0 + + + MWAssembler_PPC_auxheader0 + MWAssembler_PPC_symmodeMac + MWAssembler_PPC_dialectPPC + MWAssembler_PPC_prefixfile + MWAssembler_PPC_typecheck0 + MWAssembler_PPC_warnings0 + MWAssembler_PPC_casesensitive0 + + + MWRez_Language_maxwidth80 + MWRez_Language_scriptRoman + MWRez_Language_alignmentAlign1 + MWRez_Language_filtermodeFilterSkip + MWRez_Language_suppresswarnings0 + MWRez_Language_escapecontrolchars1 + MWRez_Language_prefixname + MWRez_Language_filteredtypes'CODE' 'DATA' 'PICT' + + + + Name + MSL C++.PPC.Lib + MacOS + Library + Debug + + + Name + console.stubs.c + MacOS + Text + + + + Name + MSL RuntimePPC.Lib + MacOS + Library + Debug + + + Name + MSL C.CARBON.Lib + MacOS + Library + + + + Name + wx_CARBON.lib + MacOS + Library + + + + Name + wx_CARBON.rsrc + MacOS + Resource + + + + Name + tiff.lib + MacOS + Library + + + + Name + jpeg.lib + MacOS + Library + + + + Name + proplist.cpp + MacOS + Text + + + + Name + zlib.lib + MacOS + Library + + + + Name + png.lib + MacOS + Library + + + + Name + CarbonLib + MacOS + Library + + + + Name + CarbonFrameworkLib + MacOS + Library + + + + + + Name + MSL C++.PPC.Lib + MacOS + + + Name + console.stubs.c + MacOS + + + Name + MSL RuntimePPC.Lib + MacOS + + + Name + MSL C.CARBON.Lib + MacOS + + + Name + wx_CARBON.lib + MacOS + + + Name + wx_CARBON.rsrc + MacOS + + + Name + tiff.lib + MacOS + + + Name + jpeg.lib + MacOS + + + Name + proplist.cpp + MacOS + + + Name + zlib.lib + MacOS + + + Name + png.lib + MacOS + + + Name + CarbonLib + MacOS + + + Name + CarbonFrameworkLib + MacOS + + + + + + + Classic Release + Classic Debug + Carbon Debug + Carbon Release + + + + + Classic Release + Name + proplist.cpp + MacOS + + wx + + Carbon Release + Name + wx_CARBON.lib + MacOS + + + Carbon Debug + Name + wx_CARBON_d.lib + MacOS + + + Carbon Debug + Name + wx_CARBON.rsrc + MacOS + + + Classic Release + Name + wx_PPC.lib + MacOS + + + Classic Debug + Name + wx_PPC_d.lib + MacOS + + + Classic Release + Name + wx_PPC.rsrc + MacOS + + + Classic Release + Name + tiff.lib + MacOS + + + Classic Release + Name + zlib.lib + MacOS + + + Classic Release + Name + png.lib + MacOS + + + Classic Debug + Name + tiffd.lib + MacOS + + + Classic Release + Name + jpeg.lib + MacOS + + + MSL ANSI Libraries + + Classic Release + Name + console.stubs.c + MacOS + + + Classic Release + Name + MSL RuntimePPC.Lib + MacOS + + + Classic Release + Name + MSL C++.PPC.Lib + MacOS + + + Classic Release + Name + MSL C.PPC.Lib + MacOS + + + Carbon Debug + Name + MSL C.CARBON.Lib + MacOS + + + Win32 SDK + + MacOS + Carbon + + Carbon Debug + Name + CarbonLib + MacOS + + + Carbon Debug + Name + CarbonFrameworkLib + MacOS + + + Classic + + Classic Release + Name + AppearanceLib + MacOS + + + Classic Release + Name + ATSUnicodeLib + MacOS + + + Classic Release + Name + CarbonAccessors.o + MacOS + + + Classic Release + Name + ControlsLib + MacOS + + + Classic Release + Name + CursorDevicesGlue.o + MacOS + + + Classic Release + Name + DialogsLib + MacOS + + + Classic Release + Name + DragLib + MacOS + + + Classic Release + Name + InterfaceLib + MacOS + + + Classic Release + Name + InternetConfigLib + MacOS + + + Classic Release + Name + WindowsLib + MacOS + + + Classic Release + Name + MathLib + MacOS + + + Classic Release + Name + MenusLib + MacOS + + + Classic Release + Name + NavigationLib + MacOS + + + Classic Release + Name + OpenTptAppleTalkLib + MacOS + + + Classic Release + Name + OpenTptATalkPPC.o + MacOS + + + Classic Release + Name + OpenTptInetPPC.o + MacOS + + + Classic Release + Name + OpenTptInternetLib + MacOS + + + Classic Release + Name + OpenTransportLib + MacOS + + + Classic Release + Name + OpenTransportAppPPC.o + MacOS + + + Classic Release + Name + PLStringFuncsPPC.lib + MacOS + + + Classic Release + Name + TextEncodingConverter + MacOS + + + Classic Release + Name + Textension + MacOS + + + Classic Release + Name + ThreadsLib + MacOS + + + Classic Release + Name + UnicodeConverter + MacOS + + + + + + diff --git a/contrib/samples/deprecated/proplist/tick.bmp b/contrib/samples/deprecated/proplist/tick.bmp new file mode 100644 index 0000000000000000000000000000000000000000..3673eda5de62c1fc3db392cba62bc2e74ad51d90 GIT binary patch literal 198 zcmZvT!3}^g3_|a<9syhMs~1$ShPC0%zsoR vTD4Ar8P!@-DTScB)%%zLZ&*;|h`