]> git.saurik.com Git - wxWidgets.git/commitdiff
Use 'wx/' for contrib samples and make wxTinderbox properly rebuilded after commits...
authorWłodzimierz Skiba <abx@abx.art.pl>
Fri, 10 Feb 2006 11:59:52 +0000 (11:59 +0000)
committerWłodzimierz Skiba <abx@abx.art.pl>
Fri, 10 Feb 2006 11:59:52 +0000 (11:59 +0000)
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@37440 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775

32 files changed:
contrib/samples/applet/dialogs_wdr.h
contrib/samples/gizmos/dynsash_switch/dynsash_switch.cpp
contrib/samples/ogl/ogledit/doc.cpp
contrib/samples/ogl/ogledit/doc.h
contrib/samples/ogl/ogledit/ogledit.cpp
contrib/samples/ogl/ogledit/ogledit.h
contrib/samples/ogl/ogledit/palette.cpp
contrib/samples/ogl/ogledit/palette.h
contrib/samples/ogl/ogledit/view.cpp
contrib/samples/ogl/ogledit/view.h
contrib/samples/ogl/studio/cspalette.cpp
contrib/samples/ogl/studio/cspalette.h
contrib/samples/ogl/studio/csprint.cpp
contrib/samples/ogl/studio/dialogs.cpp
contrib/samples/ogl/studio/dialogs.h
contrib/samples/ogl/studio/doc.cpp
contrib/samples/ogl/studio/doc.h
contrib/samples/ogl/studio/mainfrm.h
contrib/samples/ogl/studio/project.h
contrib/samples/ogl/studio/shapes.cpp
contrib/samples/ogl/studio/shapes.h
contrib/samples/ogl/studio/studio.h
contrib/samples/ogl/studio/symbols.cpp
contrib/samples/ogl/studio/symbols.h
contrib/samples/ogl/studio/view.cpp
contrib/samples/ogl/studio/view.h
contrib/samples/stc/edit.cpp
contrib/samples/stc/prefs.cpp
contrib/samples/stc/stctest.cpp
samples/stc/edit.cpp
samples/stc/prefs.cpp
samples/stc/stctest.cpp

index 3faba601c99ab6aba54af76eb7d63beea35c8376..45a13e7cbed011fcddbca527438b61ced09dcd85 100644 (file)
@@ -9,17 +9,17 @@
 // 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
 
@@ -29,7 +29,7 @@
 #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
 
index 239843942788025b7d367208ccdf0f7d34ae3052..cfc5fba0b99fe6c66c6f3c2fce550522bc774da5 100644 (file)
@@ -1,5 +1,5 @@
 /////////////////////////////////////////////////////////////////////////////
-// 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:
index 5d67e7e068d015364f2260156b0b2dc67361100b..9759405727d1536601e2ec641ff8629abee53318 100644 (file)
@@ -1,5 +1,5 @@
 /////////////////////////////////////////////////////////////////////////////
-// 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!
index 68fe372062d852b041de0667d1b850a9675175d3..912d81c15b914e452f94eccc2b24d245a03d90e7 100644 (file)
@@ -1,5 +1,5 @@
 /////////////////////////////////////////////////////////////////////////////
-// 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>
index 62dc84a88671c6b8d55cd8a9c7637d7951e3d4eb..8c0263ed090c895030915dc89bed674ccf2d2c91 100644 (file)
@@ -1,5 +1,5 @@
 /////////////////////////////////////////////////////////////////////////////
-// Name:        ogledit.cpp
+// Name:        contrib/samples/ogl/ogledit/ogledit.cpp
 // Purpose:     OGLEdit sample app
 // Author:      Julian Smart
 // Modified by:
@@ -17,7 +17,7 @@
 #endif
 
 #ifndef WX_PRECOMP
-#include <wx/wx.h>
+#include "wx/wx.h"
 #endif
 
 #if !wxUSE_DOC_VIEW_ARCHITECTURE
index 4b6a44738960648720de3f60df5ae32aa2c00368..804ba67e4f1c1f098773abd48b5e725ef3cbb0e9 100644 (file)
@@ -1,5 +1,5 @@
 /////////////////////////////////////////////////////////////////////////////
-// Name:        ogledit.h
+// Name:        contrib/samples/ogl/ogledit/ogledit.h
 // Purpose:     OGL sample
 // Author:      Julian Smart
 // Modified by:
@@ -12,8 +12,8 @@
 #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;
index abae59062367a52ff9a6a87681c69e16d7782da8..30adc96717a32f48c5653718fe9e6ead3d35c251 100644 (file)
@@ -1,5 +1,5 @@
 /////////////////////////////////////////////////////////////////////////////
-// 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>
@@ -101,4 +101,3 @@ EditorToolPalette *MyApp::CreatePalette(wxFrame *parent)
   palette->currentlySelected = PALETTE_ARROW;
   return palette;
 }
-
index c997e51711096879d53ea5393a8eda7026caa58d..a65c2b8627798329f0ebed9598ff810bafa03e87 100644 (file)
@@ -1,5 +1,5 @@
 /////////////////////////////////////////////////////////////////////////////
-// 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
index 4ada8beebe11e5dd633a7a5776809a83c26bfd9a..c8661fc38052fe7aec1b0a3805ce4d60e660cb88 100644 (file)
@@ -1,5 +1,5 @@
 /////////////////////////////////////////////////////////////////////////////
-// 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!
index 32c2706aa02f0165301095e52593b08b77995f36..363696eb0eb764162bbf4a96655aaf0ae3aa0e25 100644 (file)
@@ -1,5 +1,5 @@
 /////////////////////////////////////////////////////////////////////////////
-// Name:        view.h
+// Name:        contrib/samples/ogl/ogledit/view.h
 // Purpose:     View-related classes
 // Author:      Julian Smart
 // Modified by:
@@ -13,7 +13,7 @@
 #define _OGLSAMPLE_VIEW_H_
 
 #include "doc.h"
-#include <wx/ogl/ogl.h>
+#include "wx/ogl/ogl.h"
 
 class MyCanvas: public wxShapeCanvas
 {
index 8879747efc5b4bfade8c1fcf7577c940f87b6462..3eb05d3b8a364fc3908d367a32e43b2e608fe921 100644 (file)
@@ -1,5 +1,5 @@
 /////////////////////////////////////////////////////////////////////////////
-// 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>
index 3da2e41f257575d661ee5f057067f14483d1d24c..15f34157bd7bd1431e32ad665324d676d5837f92 100644 (file)
@@ -1,5 +1,5 @@
 /////////////////////////////////////////////////////////////////////////////
-// Name:        cspalette.h
+// Name:        contrib/samples/ogl/studio/cspalette.h
 // Purpose:     OGL sample palette
 // Author:      Julian Smart
 // Modified by:
@@ -12,9 +12,9 @@
 #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
index beec3c1db6601d64e6552457d2d95421710b025e..862d0deaba7315f6c44b398984784cac21e5574d 100644 (file)
@@ -1,5 +1,5 @@
 /////////////////////////////////////////////////////////////////////////////
-// 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"
@@ -318,5 +318,3 @@ bool csDiagramClipboard::OnAddShape(wxDiagram* diagramTo, wxShape* newShape, wxD
 
     return true;
 }
-
-
index b19ebd5402d11aff121c3a74b7bf56c5f63c3fde..8b61d315f3b313bf55c88b708c825b91d4688b5d 100644 (file)
@@ -1,12 +1,12 @@
 /////////////////////////////////////////////////////////////////////////////
-// 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".
@@ -17,7 +17,7 @@
 #endif
 
 #ifndef WX_PRECOMP
-#include <wx/wx.h>
+#include "wx/wx.h"
 #endif
 
 #include "dialogs.h"
@@ -530,5 +530,3 @@ END_EVENT_TABLE()
 csTextBoxDialog::csTextBoxDialog()
 {
 }
-
-
index da46fb714565d1f87611f9df88b37b996f1eb2f9..10622f43a3567aa53769850d9b8038d28e0b51f4 100644 (file)
@@ -1,21 +1,21 @@
 /////////////////////////////////////////////////////////////////////////////
-// 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
 
index 4af72a6ad49c7d7ff503d500401fa6230b34334d..ed0a3a88d8298435d4e03d765808b9fdf304e24c 100644 (file)
@@ -1,5 +1,5 @@
 /////////////////////////////////////////////////////////////////////////////
-// 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)
 
@@ -591,4 +591,3 @@ bool csCommandState::Undo()
 
     return true;
 }
-
index faefa53cafc7876beb4ee7686155fd76b0790097..5cd29aecdf598a7ce45bee148b9f025443c70254 100644 (file)
@@ -1,5 +1,5 @@
 /////////////////////////////////////////////////////////////////////////////
-// 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"
 
index 9200fc2c4caf65c527cbcdbf3dc7756989173aba..3f4be7ec828b6803e1c66b278ce4ee455786edb5 100644 (file)
@@ -1,18 +1,18 @@
 /////////////////////////////////////////////////////////////////////////////
-// 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;
@@ -52,4 +52,3 @@ DECLARE_EVENT_TABLE()
 
 #endif
   // _STUDIO_MAINFRM_H_
-
index 44cb15b8c7b906feb32ac6f0329257e19dab6d78..2d0969e0c9db3f2646055d2b4395b13717870b09 100644 (file)
@@ -1,19 +1,19 @@
 /////////////////////////////////////////////////////////////////////////////
-// 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.
@@ -39,4 +39,3 @@ DECLARE_EVENT_TABLE()
 
 #endif
   // _STUDIO_PROJECT_H_
-
index ceac152fddf06be93f7c779903f32d5add9854b5..e7125a4a24f3f0d72f6e6a55711dd2517fa22925 100644 (file)
@@ -1,5 +1,5 @@
 /////////////////////////////////////////////////////////////////////////////
-// 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"
@@ -1195,4 +1195,3 @@ void ShapeEditMenu::OnCommand(wxCommandEvent& event)
 {
     studioShapeEditProc(*this, event);
 }
-
index dbda6fa11f1c95ab812e86ae09c320238a3cf775..7f4548ba38198c970695407fc55252d16d4abd2f 100644 (file)
@@ -1,23 +1,23 @@
 /////////////////////////////////////////////////////////////////////////////
-// 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;
 
index 7d36cf0a4fbaa3945180c463675c767aa1ee9630..c23652ad898a723a71499248972713b258016cfc 100644 (file)
@@ -1,29 +1,29 @@
 /////////////////////////////////////////////////////////////////////////////
-// 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;
@@ -175,4 +175,3 @@ DECLARE_APP(csApp)
 
 #endif
   // _STUDIO_STUDIO_H_
-
index 71d6fce886c1477bdc75112d28162238e9b51931..5aaffd681678355fee7a4ee60764fab55a16aec4 100644 (file)
@@ -1,12 +1,12 @@
 /////////////////////////////////////////////////////////////////////////////
-// 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"
@@ -215,4 +215,3 @@ wxBitmap* csSymbolDatabase::CreateToolBitmap(csSymbol* symbol, const wxSize& too
 
     return newBitmap;
 }
-
index 405ea526267e30854e23a39e4829c98ecc7736f1..8ee823780ff812d16f4d738585bc802fe59614e5 100644 (file)
@@ -1,21 +1,21 @@
 /////////////////////////////////////////////////////////////////////////////
-// 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
index 9ce1d68423d3fff8912ab73a01e3d8d28c2ac460..8a5e625c629afd12e23b4d7c01591635c36476d2 100644 (file)
@@ -1,12 +1,12 @@
 /////////////////////////////////////////////////////////////////////////////
-// 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!
@@ -32,8 +32,8 @@
 #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)
 
index a58f3391edb4f5fc935c0c8ebfa4a85fbd31973a..c3fc46c3f3328e67840b2bb1b0c092dd01f85e66 100644 (file)
@@ -1,5 +1,5 @@
 /////////////////////////////////////////////////////////////////////////////
-// Name:        view.h
+// Name:        contrib/samples/ogl/studio/view.h
 // Purpose:     View-related classes
 // Author:      Julian Smart
 // Modified by:
@@ -13,7 +13,7 @@
 #define _STUDIO_VIEW_H_
 
 #include "doc.h"
-#include <wx/ogl/ogl.h>
+#include "wx/ogl/ogl.h"
 
 class csDiagramView;
 class csCanvas: public wxShapeCanvas
index 7a166bbcdd6e500c920ade6abc7a88fc6a18afbe..a921882b5d7779aae945f0410422fddafaacf6b3 100644 (file)
@@ -1,5 +1,5 @@
 //////////////////////////////////////////////////////////////////////////////
-// File:        edit.cpp
+// File:        contrib/samples/stc/edit.cpp
 // Purpose:     STC test module
 // Maintainer:  Wyo
 // Created:     2003-09-01
@@ -17,7 +17,7 @@
 // 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__
index 2e86866940ea03ae0250b96b53a770d173f54bec..5698a879f642265caa01b50b9706f069b60a8af6 100644 (file)
@@ -1,5 +1,5 @@
 //////////////////////////////////////////////////////////////////////////////
-// File:        prefs.cpp
+// File:        contrib/samples/stc/prefs.cpp
 // Purpose:     STC test Preferences initialization
 // Maintainer:  Wyo
 // Created:     2003-09-01
@@ -12,7 +12,7 @@
 // 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__
index 35b8a01121b48579803ed7011fa165b5e66dc626..6275c242b7b52355693f6f3be59aff8514e5041f 100644 (file)
@@ -1,5 +1,5 @@
 //////////////////////////////////////////////////////////////////////////////
-// File:        stctest.cpp
+// File:        contrib/samples/stc/stctest.cpp
 // Purpose:     STC test application
 // Maintainer:  Otto Wyss
 // Created:     2003-09-01
@@ -12,7 +12,7 @@
 // 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__
index 7a166bbcdd6e500c920ade6abc7a88fc6a18afbe..a921882b5d7779aae945f0410422fddafaacf6b3 100644 (file)
@@ -1,5 +1,5 @@
 //////////////////////////////////////////////////////////////////////////////
-// File:        edit.cpp
+// File:        contrib/samples/stc/edit.cpp
 // Purpose:     STC test module
 // Maintainer:  Wyo
 // Created:     2003-09-01
@@ -17,7 +17,7 @@
 // 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__
index 2e86866940ea03ae0250b96b53a770d173f54bec..5698a879f642265caa01b50b9706f069b60a8af6 100644 (file)
@@ -1,5 +1,5 @@
 //////////////////////////////////////////////////////////////////////////////
-// File:        prefs.cpp
+// File:        contrib/samples/stc/prefs.cpp
 // Purpose:     STC test Preferences initialization
 // Maintainer:  Wyo
 // Created:     2003-09-01
@@ -12,7 +12,7 @@
 // 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__
index 35b8a01121b48579803ed7011fa165b5e66dc626..6275c242b7b52355693f6f3be59aff8514e5041f 100644 (file)
@@ -1,5 +1,5 @@
 //////////////////////////////////////////////////////////////////////////////
-// File:        stctest.cpp
+// File:        contrib/samples/stc/stctest.cpp
 // Purpose:     STC test application
 // Maintainer:  Otto Wyss
 // Created:     2003-09-01
@@ -12,7 +12,7 @@
 // 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__