// Include wxWindows' headers
#ifndef WX_PRECOMP
- #include <wx/wx.h>
+ #include "wx/wx.h"
#endif
-#include <wx/image.h>
-#include <wx/statline.h>
-#include <wx/spinbutt.h>
-#include <wx/spinctrl.h>
-#include <wx/splitter.h>
-#include <wx/listctrl.h>
-#include <wx/treectrl.h>
-#include <wx/notebook.h>
+#include "wx/image.h"
+#include "wx/statline.h"
+#include "wx/spinbutt.h"
+#include "wx/spinctrl.h"
+#include "wx/splitter.h"
+#include "wx/listctrl.h"
+#include "wx/treectrl.h"
+#include "wx/notebook.h"
// Declare window functions
#define ID_TEXTCTRL_MDL 20
#define ID_LISTBOX_MFTR 11
#define ID_LISTBOX_MDL 21
-wxSizer *MonitorDialogFunc( wxPanel *parent, bool call_fit = TRUE, bool set_sizer = TRUE );
+wxSizer *MonitorDialogFunc( wxPanel *parent, bool call_fit = true, bool set_sizer = true );
// Declare bitmap functions
/////////////////////////////////////////////////////////////////////////////
-// Name: dynsash_switch.cpp
+// Name: contrib/samples/gizmos/dynsash_switch/dynsash_switch.cpp
// Purpose: Test custom scrollbar handling of wxDynamicSashWindow by
// creating a dynamic sash window where the client scrolls a
// a subwindow of the client window by responding to scroll
#include "wx/wx.h"
#endif
-#include <wx/app.h>
-#include <wx/frame.h>
-#include <wx/choice.h>
-#include <wx/dcclient.h>
-#include <wx/gizmos/dynamicsash.h>
-#include <wx/layout.h>
-#include <wx/scrolbar.h>
+#include "wx/app.h"
+#include "wx/frame.h"
+#include "wx/choice.h"
+#include "wx/dcclient.h"
+#include "wx/gizmos/dynamicsash.h"
+#include "wx/layout.h"
+#include "wx/scrolbar.h"
class SwitchDemo : public wxApp {
public:
/////////////////////////////////////////////////////////////////////////////
-// Name: doc.cpp
+// Name: contrib/samples/ogl/ogledit/doc.cpp
// Purpose: Implements document functionality in OGLEdit
// Author: Julian Smart
// Modified by:
#endif
#ifndef WX_PRECOMP
-#include <wx/wx.h>
+#include "wx/wx.h"
#endif
-#include <wx/ioswrap.h>
+#include "wx/ioswrap.h"
#if !wxUSE_DOC_VIEW_ARCHITECTURE
#error You must set wxUSE_DOC_VIEW_ARCHITECTURE to 1 in wx_setup.h!
/////////////////////////////////////////////////////////////////////////////
-// Name: doc.h
+// Name: contrib/samples/ogl/ogledit/doc.h
// Purpose: Document classes
// Author: Julian Smart
// Modified by:
#ifndef _OGLSAMPLE_DOC_H_
#define _OGLSAMPLE_DOC_H_
-#include <wx/docview.h>
-#include <wx/cmdproc.h>
-#include <wx/string.h>
+#include "wx/docview.h"
+#include "wx/cmdproc.h"
+#include "wx/string.h"
-#include <wx/ogl/ogl.h> // base header of OGL, includes and adjusts wx/deprecated/setup.h
+#include "wx/ogl/ogl.h" // base header of OGL, includes and adjusts wx/deprecated/setup.h
#if wxUSE_PROLOGIO
-#include <wx/deprecated/wxexpr.h>
+#include "wx/deprecated/wxexpr.h"
#endif
-#include <wx/ogl/ogl.h>
+#include "wx/ogl/ogl.h"
#if wxUSE_STD_IOSTREAM
#include <iosfwd>
/////////////////////////////////////////////////////////////////////////////
-// Name: ogledit.cpp
+// Name: contrib/samples/ogl/ogledit/ogledit.cpp
// Purpose: OGLEdit sample app
// Author: Julian Smart
// Modified by:
#endif
#ifndef WX_PRECOMP
-#include <wx/wx.h>
+#include "wx/wx.h"
#endif
#if !wxUSE_DOC_VIEW_ARCHITECTURE
/////////////////////////////////////////////////////////////////////////////
-// Name: ogledit.h
+// Name: contrib/samples/ogl/ogledit/ogledit.h
// Purpose: OGL sample
// Author: Julian Smart
// Modified by:
#ifndef _OGLSAMPLE_OGLEDIT_H_
#define _OGLSAMPLE_OGLEDIT_H_
-#include <wx/docview.h>
-#include <wx/ogl/ogl.h> // base header of OGL, includes and adjusts wx/deprecated/setup.h
+#include "wx/docview.h"
+#include "wx/ogl/ogl.h" // base header of OGL, includes and adjusts wx/deprecated/setup.h
// Define a new application
class MyFrame;
/////////////////////////////////////////////////////////////////////////////
-// Name: palette.cpp
+// Name: samples/ogl/ogledit/palette.cpp
// Purpose: OGLEdit palette
// Author: Julian Smart
// Modified by:
#endif
#ifndef WX_PRECOMP
-#include <wx/wx.h>
+#include "wx/wx.h"
#endif
-#include <wx/toolbar.h>
+#include "wx/toolbar.h"
#include <ctype.h>
#include <stdlib.h>
palette->currentlySelected = PALETTE_ARROW;
return palette;
}
-
/////////////////////////////////////////////////////////////////////////////
-// Name: palette.h
+// Name: contrib/samples/ogl/ogledit/palette.h
// Purpose: OGL sample palette
// Author: Julian Smart
// Modified by:
#ifndef _OGLSAMPLE_PALETTE_H_
#define _OGLSAMPLE_PALETTE_H_
-#include <wx/wx.h>
-#include <wx/string.h>
-#include <wx/deprecated/setup.h>
-#include <wx/deprecated/tbarsmpl.h>
+#include "wx/wx.h"
+#include "wx/string.h"
+#include "wx/deprecated/setup.h"
+#include "wx/deprecated/tbarsmpl.h"
/*
* Object editor tool palette
/////////////////////////////////////////////////////////////////////////////
-// Name: view.cpp
+// Name: contrib/samples/ogl/ogledit/view.cpp
// Purpose: Implements view functionality in OGLEdit
// Author: Julian Smart
// Modified by:
#endif
#ifndef WX_PRECOMP
-#include <wx/wx.h>
+#include "wx/wx.h"
#endif
-#include <wx/colordlg.h>
+#include "wx/colordlg.h"
#if !wxUSE_DOC_VIEW_ARCHITECTURE
#error You must set wxUSE_DOC_VIEW_ARCHITECTURE to 1 in wx_setup.h!
/////////////////////////////////////////////////////////////////////////////
-// Name: view.h
+// Name: contrib/samples/ogl/ogledit/view.h
// Purpose: View-related classes
// Author: Julian Smart
// Modified by:
#define _OGLSAMPLE_VIEW_H_
#include "doc.h"
-#include <wx/ogl/ogl.h>
+#include "wx/ogl/ogl.h"
class MyCanvas: public wxShapeCanvas
{
/////////////////////////////////////////////////////////////////////////////
-// Name: cspalette.cpp
+// Name: contrib/samples/ogl/studio/cspalette.cpp
// Purpose: OGLEdit palette
// Author: Julian Smart
// Modified by:
#endif
#ifndef WX_PRECOMP
-#include <wx/wx.h>
+#include "wx/wx.h"
#endif
-#include <wx/laywin.h>
+#include "wx/laywin.h"
#include <ctype.h>
#include <stdlib.h>
/////////////////////////////////////////////////////////////////////////////
-// Name: cspalette.h
+// Name: contrib/samples/ogl/studio/cspalette.h
// Purpose: OGL sample palette
// Author: Julian Smart
// Modified by:
#ifndef _STUDIO_CSPALETTE_H_
#define _STUDIO_CSPALETTE_H_
-#include <wx/wx.h>
-#include <wx/string.h>
-#include <wx/ogl/ogl.h> // base header of OGL, includes and adjusts wx/deprecated/setup.h
+#include "wx/wx.h"
+#include "wx/string.h"
+#include "wx/ogl/ogl.h" // base header of OGL, includes and adjusts wx/deprecated/setup.h
/*
* Object editor tool palette
/////////////////////////////////////////////////////////////////////////////
-// Name: csprint.cpp
+// Name: contrib/samples/ogl/studio/csprint.cpp
// Purpose: Printing and clipboard functionality
// Author: Julian Smart
// Modified by:
#endif
#ifndef WX_PRECOMP
-#include <wx/wx.h>
+#include "wx/wx.h"
#endif
-#include <wx/ogl/ogl.h> // base header of OGL, includes and adjusts wx/deprecated/setup.h
+#include "wx/ogl/ogl.h" // base header of OGL, includes and adjusts wx/deprecated/setup.h
-#include <wx/clipbrd.h>
+#include "wx/clipbrd.h"
#ifdef __WXMSW__
-#include <wx/metafile.h>
+#include "wx/metafile.h"
#endif
#include "studio.h"
return true;
}
-
-
/////////////////////////////////////////////////////////////////////////////
-// Name: dialogs.cpp
+// Name: contrib/samples/ogl/studio/dialogs.cpp
// Purpose: Implements Studio dialogs
// Author: Julian Smart
// Modified by:
// Created: 12/07/98
// RCS-ID: $Id$
// Copyright: (c) Julian Smart
-// Licence:
+// Licence: wxWindows licence
/////////////////////////////////////////////////////////////////////////////
// For compilers that support precompilation, includes "wx.h".
#endif
#ifndef WX_PRECOMP
-#include <wx/wx.h>
+#include "wx/wx.h"
#endif
#include "dialogs.h"
csTextBoxDialog::csTextBoxDialog()
{
}
-
-
/////////////////////////////////////////////////////////////////////////////
-// Name: dialogs.h
+// Name: contrib/samples/ogl/studio/dialogs.h
// Purpose: Miscellaneous dialogs
// Author: Julian Smart
// Modified by:
// Created: 12/07/98
// RCS-ID: $Id$
// Copyright: (c) Julian Smart
-// Licence:
+// Licence: wxWindows licence
/////////////////////////////////////////////////////////////////////////////
#ifndef _STUDIO_DIALOGS_H_
#define _STUDIO_DIALOGS_H_
-#include <wx/wx.h>
-#include <wx/notebook.h>
+#include "wx/wx.h"
+#include "wx/notebook.h"
-#include <wx/ogl/ogl.h> // base header of OGL, includes and adjusts wx/deprecated/setup.h
+#include "wx/ogl/ogl.h" // base header of OGL, includes and adjusts wx/deprecated/setup.h
#if wxUSE_WX_RESOURCES
/////////////////////////////////////////////////////////////////////////////
-// Name: doc.cpp
+// Name: contrib/samples/ogl/studio/doc.cpp
// Purpose: Implements document functionality
// Author: Julian Smart
// Modified by:
#endif
#ifndef WX_PRECOMP
-#include <wx/wx.h>
+#include "wx/wx.h"
#endif
#include "studio.h"
#include "doc.h"
#include "view.h"
-#include <wx/ogl/basicp.h>
+#include "wx/ogl/basicp.h"
IMPLEMENT_DYNAMIC_CLASS(csDiagramDocument, wxDocument)
return true;
}
-
/////////////////////////////////////////////////////////////////////////////
-// Name: doc.h
+// Name: contrib/samples/ogl/studio/doc.h
// Purpose: Document classes
// Author: Julian Smart
// Modified by:
#ifndef _STUDIO_DOC_H_
#define _STUDIO_DOC_H_
-#include <wx/docview.h>
-#include <wx/cmdproc.h>
-#include <wx/string.h>
+#include "wx/docview.h"
+#include "wx/cmdproc.h"
+#include "wx/string.h"
-#include <wx/ogl/ogl.h> // base header of OGL, includes and adjusts wx/deprecated/setup.h
+#include "wx/ogl/ogl.h" // base header of OGL, includes and adjusts wx/deprecated/setup.h
#include "shapes.h"
/////////////////////////////////////////////////////////////////////////////
-// Name: mainfrm.h
+// Name: contrib/samples/ogl/studio/mainfrm.h
// Purpose: Studio main window class
// Author: Julian Smart
// Modified by:
// Created: 27/7/98
// RCS-ID: $Id$
// Copyright: (c) Julian Smart
-// Licence:
+// Licence: wxWindows licence
/////////////////////////////////////////////////////////////////////////////
#ifndef _STUDIO_MAINFRM_H_
#define _STUDIO_MAINFRM_H_
-#include <wx/docmdi.h>
+#include "wx/docmdi.h"
class wxSashLayoutWindow;
class wxSashEvent;
#endif
// _STUDIO_MAINFRM_H_
-
/////////////////////////////////////////////////////////////////////////////
-// Name: project.h
+// Name: contrib/samples/ogl/studio/project.h
// Purpose: Studio project classes
// Author: Julian Smart
// Modified by:
// Created: 27/7/98
// RCS-ID: $Id$
// Copyright: (c) Julian Smart
-// Licence:
+// Licence: wxWindows licence
/////////////////////////////////////////////////////////////////////////////
#ifndef _STUDIO_PROJECT_H_
#define _STUDIO_PROJECT_H_
-#include <wx/treectrl.h>
-#include <wx/imaglist.h>
+#include "wx/treectrl.h"
+#include "wx/imaglist.h"
/*
* This is the project tree control.
#endif
// _STUDIO_PROJECT_H_
-
/////////////////////////////////////////////////////////////////////////////
-// Name: shapes.cpp
+// Name: contrib/samples/ogl/studio/shapes.cpp
// Purpose: Implements Studio shapes
// Author: Julian Smart
// Modified by:
#endif
#ifndef WX_PRECOMP
-#include <wx/wx.h>
+#include "wx/wx.h"
#endif
#if !wxUSE_DOC_VIEW_ARCHITECTURE
#error You must set wxUSE_DOC_VIEW_ARCHITECTURE to 1 in wx_setup.h!
#endif
-#include <wx/ogl/ogl.h> // base header of OGL, includes and adjusts wx/deprecated/setup.h
+#include "wx/ogl/ogl.h" // base header of OGL, includes and adjusts wx/deprecated/setup.h
#include "studio.h"
#include "doc.h"
{
studioShapeEditProc(*this, event);
}
-
/////////////////////////////////////////////////////////////////////////////
-// Name: shapes.h
+// Name: contrib/samples/ogl/studio/shapes.h
// Purpose: Shape classes
// Author: Julian Smart
// Modified by:
// Created: 12/07/98
// RCS-ID: $Id$
// Copyright: (c) Julian Smart
-// Licence:
+// Licence: wxWindows licence
/////////////////////////////////////////////////////////////////////////////
#ifndef _STUDIO_SHAPES_H_
#define _STUDIO_SHAPES_H_
-#include <wx/docview.h>
-#include <wx/string.h>
-#include <wx/ogl/ogl.h> // base header of OGL, includes and adjusts wx/deprecated/setup.h
-#include <wx/ogl/basicp.h>
-#include <wx/ogl/linesp.h>
-#include <wx/ogl/drawn.h>
+#include "wx/docview.h"
+#include "wx/string.h"
+#include "wx/ogl/ogl.h" // base header of OGL, includes and adjusts wx/deprecated/setup.h
+#include "wx/ogl/basicp.h"
+#include "wx/ogl/linesp.h"
+#include "wx/ogl/drawn.h"
class csDiagramDocument;
/////////////////////////////////////////////////////////////////////////////
-// Name: Studio.h
+// Name: contrib/samples/ogl/studio/studio.h
// Purpose: Studio application class
// Author: Julian Smart
// Modified by:
// Created: 27/7/98
// RCS-ID: $Id$
// Copyright: (c) Julian Smart
-// Licence:
+// Licence: wxWindows licence
/////////////////////////////////////////////////////////////////////////////
#ifndef _STUDIO_STUDIO_H_
#define _STUDIO_STUDIO_H_
-#include <wx/docmdi.h>
-#include <wx/help.h>
-#include <wx/cshelp.h>
-#include <wx/helphtml.h>
+#include "wx/docmdi.h"
+#include "wx/help.h"
+#include "wx/cshelp.h"
+#include "wx/helphtml.h"
#ifdef __WXMSW__
- #include <wx/msw/helpchm.h>
+ #include "wx/msw/helpchm.h"
#else
- #include <wx/html/helpctrl.h>
+ #include "wx/html/helpctrl.h"
#endif
-#include <wx/ogl/ogl.h>
-#include <wx/ogl/canvas.h>
+#include "wx/ogl/ogl.h"
+#include "wx/ogl/canvas.h"
#include "shapes.h"
class csEditorToolPalette;
#endif
// _STUDIO_STUDIO_H_
-
/////////////////////////////////////////////////////////////////////////////
-// Name: symbols.cpp
+// Name: contrib/samples/ogl/studio/symbols.cpp
// Purpose: Implements the Studio symbol database
// Author: Julian Smart
// Modified by:
// Created: 12/07/98
// RCS-ID: $Id$
// Copyright: (c) Julian Smart
-// Licence:
+// Licence: wxWindows licence
/////////////////////////////////////////////////////////////////////////////
// For compilers that support precompilation, includes "wx.h".
#endif
#ifndef WX_PRECOMP
-#include <wx/wx.h>
+#include "wx/wx.h"
#endif
-#include <wx/ogl/ogl.h> // base header of OGL, includes and adjusts wx/deprecated/setup.h
+#include "wx/ogl/ogl.h" // base header of OGL, includes and adjusts wx/deprecated/setup.h
#include "studio.h"
#include "doc.h"
return newBitmap;
}
-
/////////////////////////////////////////////////////////////////////////////
-// Name: symbols.h
+// Name: contrib/samples/ogl/studio/symbols.h
// Purpose: Symbol classes (symbol database)
// Author: Julian Smart
// Modified by:
// Created: 12/07/98
// RCS-ID: $Id$
// Copyright: (c) Julian Smart
-// Licence:
+// Licence: wxWindows licence
/////////////////////////////////////////////////////////////////////////////
#ifndef _STUDIO_SYMBOLS_H_
#define _STUDIO_SYMBOLS_H_
-#include <wx/docview.h>
-#include <wx/string.h>
+#include "wx/docview.h"
+#include "wx/string.h"
-#include <wx/ogl/ogl.h> // base header of OGL, includes and adjusts wx/deprecated/setup.h
+#include "wx/ogl/ogl.h" // base header of OGL, includes and adjusts wx/deprecated/setup.h
/*
* csSymbol
/////////////////////////////////////////////////////////////////////////////
-// Name: view.cpp
+// Name: contrib/samples/ogl/studio/view.cpp
// Purpose: Implements view functionality
// Author: Julian Smart
// Modified by:
// Created: 12/07/98
// RCS-ID: $Id$
// Copyright: (c) Julian Smart
-// Licence:
+// Licence: wxWindows licence
/////////////////////////////////////////////////////////////////////////////
// For compilers that support precompilation, includes "wx.h".
#endif
#ifndef WX_PRECOMP
-#include <wx/wx.h>
+#include "wx/wx.h"
#endif
-#include <wx/colordlg.h>
+#include "wx/colordlg.h"
#if !wxUSE_DOC_VIEW_ARCHITECTURE
#error You must set wxUSE_DOC_VIEW_ARCHITECTURE to 1 in wx_setup.h!
#include "cspalette.h"
#include "symbols.h"
#include "dialogs.h"
-#include <wx/ogl/basicp.h>
-#include <wx/ogl/linesp.h>
+#include "wx/ogl/basicp.h"
+#include "wx/ogl/linesp.h"
IMPLEMENT_DYNAMIC_CLASS(csDiagramView, wxView)
/////////////////////////////////////////////////////////////////////////////
-// Name: view.h
+// Name: contrib/samples/ogl/studio/view.h
// Purpose: View-related classes
// Author: Julian Smart
// Modified by:
#define _STUDIO_VIEW_H_
#include "doc.h"
-#include <wx/ogl/ogl.h>
+#include "wx/ogl/ogl.h"
class csDiagramView;
class csCanvas: public wxShapeCanvas
//////////////////////////////////////////////////////////////////////////////
-// File: edit.cpp
+// File: contrib/samples/stc/edit.cpp
// Purpose: STC test module
// Maintainer: Wyo
// Created: 2003-09-01
// headers
//----------------------------------------------------------------------------
-// For compilers that support precompilation, includes <wx/wx.h>.
+// For compilers that support precompilation, includes "wx/wx.h".
#include "wx/wxprec.h"
#ifdef __BORLANDC__
//////////////////////////////////////////////////////////////////////////////
-// File: prefs.cpp
+// File: contrib/samples/stc/prefs.cpp
// Purpose: STC test Preferences initialization
// Maintainer: Wyo
// Created: 2003-09-01
// headers
//----------------------------------------------------------------------------
-// For compilers that support precompilation, includes <wx/wx.h>.
+// For compilers that support precompilation, includes "wx/wx.h".
#include "wx/wxprec.h"
#ifdef __BORLANDC__
//////////////////////////////////////////////////////////////////////////////
-// File: stctest.cpp
+// File: contrib/samples/stc/stctest.cpp
// Purpose: STC test application
// Maintainer: Otto Wyss
// Created: 2003-09-01
// headers
//----------------------------------------------------------------------------
-// For compilers that support precompilation, includes <wx/wx.h>.
+// For compilers that support precompilation, includes "wx/wx.h".
#include "wx/wxprec.h"
#ifdef __BORLANDC__
//////////////////////////////////////////////////////////////////////////////
-// File: edit.cpp
+// File: contrib/samples/stc/edit.cpp
// Purpose: STC test module
// Maintainer: Wyo
// Created: 2003-09-01
// headers
//----------------------------------------------------------------------------
-// For compilers that support precompilation, includes <wx/wx.h>.
+// For compilers that support precompilation, includes "wx/wx.h".
#include "wx/wxprec.h"
#ifdef __BORLANDC__
//////////////////////////////////////////////////////////////////////////////
-// File: prefs.cpp
+// File: contrib/samples/stc/prefs.cpp
// Purpose: STC test Preferences initialization
// Maintainer: Wyo
// Created: 2003-09-01
// headers
//----------------------------------------------------------------------------
-// For compilers that support precompilation, includes <wx/wx.h>.
+// For compilers that support precompilation, includes "wx/wx.h".
#include "wx/wxprec.h"
#ifdef __BORLANDC__
//////////////////////////////////////////////////////////////////////////////
-// File: stctest.cpp
+// File: contrib/samples/stc/stctest.cpp
// Purpose: STC test application
// Maintainer: Otto Wyss
// Created: 2003-09-01
// headers
//----------------------------------------------------------------------------
-// For compilers that support precompilation, includes <wx/wx.h>.
+// For compilers that support precompilation, includes "wx/wx.h".
#include "wx/wxprec.h"
#ifdef __BORLANDC__