]> git.saurik.com Git - wxWidgets.git/commitdiff
Added some missing copyright lines
authorJulian Smart <julian@anthemion.co.uk>
Sun, 4 May 2003 14:11:45 +0000 (14:11 +0000)
committerJulian Smart <julian@anthemion.co.uk>
Sun, 4 May 2003 14:11:45 +0000 (14:11 +0000)
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@20469 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775

20 files changed:
contrib/src/xrc/xh_chckl.cpp
contrib/src/xrc/xh_menu.cpp
samples/access/accesstest.cpp
src/gtk/gsockgtk.c
src/gtk1/gsockgtk.c
src/mac/carbon/toolbar.cpp
src/mac/carbon/uma.cpp
src/mac/toolbar.cpp
src/mac/uma.cpp
src/motif/gsockmot.c
src/msw/gsocket.c
src/os2/gsocket.c
src/os2/gsockpm.c
src/unix/gsocket.c
src/x11/gsockx11.c
src/x11/nanox.c
src/x11/pango_x.cpp
src/x11/pangox11.cpp
src/xrc/xh_chckl.cpp
src/xrc/xh_menu.cpp

index e68540722dac06ece9a3b2aa52f65f48d4bf8b8b..18e1d028288aa788698aff68e7ec81c88c984c9f 100644 (file)
@@ -108,3 +108,4 @@ bool wxCheckListXmlHandler::CanHandle(wxXmlNode *node)
 }
 
 #endif
+
index 80a992acfa95a78e0310af47b70ef9e1377ae804..8c1e79c962c0f05c4bd05f32794cda8c64975b56 100644 (file)
@@ -86,8 +86,8 @@ wxObject *wxMenuXmlHandler::DoCreateResource()
                                                GetText(wxT("help")), kind);
                                                
 #if wxCHECK_VERSION(2,3,0) || (defined(__WXMSW__) && wxUSE_OWNER_DRAWN)
-                if (HasParam(wxT("bitmap")))
-                    mitem->SetBitmap(GetBitmap(wxT("bitmap"), wxART_MENU));
+            if (HasParam(wxT("bitmap")))
+                mitem->SetBitmap(GetBitmap(wxT("bitmap"), wxART_MENU));
 #endif
             p_menu->Append(mitem);
             mitem->Enable(GetBool(wxT("enabled"), TRUE));
index 4fcfa8cf7ad257dbec25d7ef2339583ba8c70d29..285edb016c18b67a8cca4cfe400018ee9f44bb35 100644 (file)
@@ -204,6 +204,118 @@ public:
     }
 };
 
+class SplitterWindowAccessible: public wxWindowAccessible
+{
+public:
+    SplitterWindowAccessible(wxWindow* win): wxWindowAccessible(win) {}
+
+            // Gets the name of the specified object.
+    virtual wxAccStatus GetName(int childId, wxString* name)
+    {
+        if (childId == wxACC_SELF)
+        {
+            * name = wxT("Splitter window");
+            return wxACC_OK;
+        }
+        else
+            return wxACC_NOT_IMPLEMENTED;
+    }
+
+        // Can return either a child object, or an integer
+        // representing the child element, starting from 1.
+    virtual wxAccStatus HitTest(const wxPoint& pt, int* childId, wxAccessible** childObject)
+         { return wxACC_NOT_IMPLEMENTED; }
+
+        // Returns the rectangle for this object (id = 0) or a child element (id > 0).
+    virtual wxAccStatus GetLocation(wxRect& WXUNUSED(rect), int WXUNUSED(elementId))
+         { return wxACC_NOT_IMPLEMENTED; }
+
+        // Navigates from fromId to toId/toObject.
+    virtual wxAccStatus Navigate(wxNavDir WXUNUSED(navDir), int WXUNUSED(fromId),
+                int* WXUNUSED(toId), wxAccessible** WXUNUSED(toObject))
+         { return wxACC_NOT_IMPLEMENTED; }
+
+        // Gets the number of children.
+    virtual wxAccStatus GetChildCount(int* WXUNUSED(childId))
+         { return wxACC_NOT_IMPLEMENTED; }
+
+        // Gets the specified child (starting from 1).
+        // If *child is NULL and return value is wxACC_OK,
+        // this means that the child is a simple element and
+        // not an accessible object.
+    virtual wxAccStatus GetChild(int WXUNUSED(childId), wxAccessible** WXUNUSED(child))
+         { return wxACC_NOT_IMPLEMENTED; }
+
+        // Gets the parent, or NULL.
+    virtual wxAccStatus GetParent(wxAccessible** WXUNUSED(parent))
+         { return wxACC_NOT_IMPLEMENTED; }
+
+        // Performs the default action. childId is 0 (the action for this object)
+        // or > 0 (the action for a child).
+        // Return wxACC_NOT_SUPPORTED if there is no default action for this
+        // window (e.g. an edit control).
+    virtual wxAccStatus DoDefaultAction(int WXUNUSED(childId))
+         { return wxACC_NOT_IMPLEMENTED; }
+
+        // Gets the default action for this object (0) or > 0 (the action for a child).
+        // Return wxACC_OK even if there is no action. actionName is the action, or the empty
+        // string if there is no action.
+        // The retrieved string describes the action that is performed on an object,
+        // not what the object does as a result. For example, a toolbar button that prints
+        // a document has a default action of "Press" rather than "Prints the current document."
+    virtual wxAccStatus GetDefaultAction(int WXUNUSED(childId), wxString* WXUNUSED(actionName))
+         { return wxACC_NOT_IMPLEMENTED; }
+
+        // Returns the description for this object or a child.
+    virtual wxAccStatus GetDescription(int WXUNUSED(childId), wxString* WXUNUSED(description))
+         { return wxACC_NOT_IMPLEMENTED; }
+
+        // Returns help text for this object or a child, similar to tooltip text.
+    virtual wxAccStatus GetHelpText(int WXUNUSED(childId), wxString* WXUNUSED(helpText))
+         { return wxACC_NOT_IMPLEMENTED; }
+
+        // Returns the keyboard shortcut for this object or child.
+        // Return e.g. ALT+K
+    virtual wxAccStatus GetKeyboardShortcut(int WXUNUSED(childId), wxString* WXUNUSED(shortcut))
+         { return wxACC_NOT_IMPLEMENTED; }
+
+        // Returns a role constant.
+    virtual wxAccStatus GetRole(int WXUNUSED(childId), wxAccRole* WXUNUSED(role))
+         { return wxACC_NOT_IMPLEMENTED; }
+
+        // Returns a state constant.
+    virtual wxAccStatus GetState(int WXUNUSED(childId), long* WXUNUSED(state))
+         { return wxACC_NOT_IMPLEMENTED; }
+
+        // Returns a localized string representing the value for the object
+        // or child.
+    virtual wxAccStatus GetValue(int WXUNUSED(childId), wxString* WXUNUSED(strValue))
+         { return wxACC_NOT_IMPLEMENTED; }
+
+        // Selects the object or child.
+    virtual wxAccStatus Select(int WXUNUSED(childId), wxAccSelectionFlags WXUNUSED(selectFlags))
+         { return wxACC_NOT_IMPLEMENTED; }
+
+        // Gets the window with the keyboard focus.
+        // If childId is 0 and child is NULL, no object in
+        // this subhierarchy has the focus.
+        // If this object has the focus, child should be 'this'.
+    virtual wxAccStatus GetFocus(int* WXUNUSED(childId), wxAccessible** WXUNUSED(child))
+         { return wxACC_NOT_IMPLEMENTED; }
+
+        // Gets a variant representing the selected children
+        // of this object.
+        // Acceptable values:
+        // - a null variant (IsNull() returns TRUE)
+        // - a list variant (GetType() == wxT("list"))
+        // - an integer representing the selected child element,
+        //   or 0 if this object is selected (GetType() == wxT("long"))
+        // - a "void*" pointer to a wxAccessible child object
+    virtual wxAccStatus GetSelections(wxVariant* WXUNUSED(selections))
+         { return wxACC_NOT_IMPLEMENTED; }
+
+};
+
 // ----------------------------------------------------------------------------
 // main frame
 // ----------------------------------------------------------------------------
index fc88b47ddbbc27f72a8e704428cf6c9df013fbbc..6a1a3f5ee7a75602816afb30deaedb6787227db5 100644 (file)
@@ -2,6 +2,7 @@
  * Project: GSocket (Generic Socket) for WX
  * Name:    gsockgtk.c
  * Purpose: GSocket: GTK part
+ * Licence: The wxWindows licence
  * CVSID:   $Id$
  * -------------------------------------------------------------------------
  */
index fc88b47ddbbc27f72a8e704428cf6c9df013fbbc..6a1a3f5ee7a75602816afb30deaedb6787227db5 100644 (file)
@@ -2,6 +2,7 @@
  * Project: GSocket (Generic Socket) for WX
  * Name:    gsockgtk.c
  * Purpose: GSocket: GTK part
+ * Licence: The wxWindows licence
  * CVSID:   $Id$
  * -------------------------------------------------------------------------
  */
index 62b486d43d17ff169a71d04a1a69cb54de886458..92d048a22873774112e49617b6b5d7f3ddcb26b4 100644 (file)
@@ -5,7 +5,8 @@
 // Modified by:
 // Created:     04/01/98
 // RCS-ID:      $Id$
-// Copyright:   (c) Stefan Csomory
+// Copyright:   (c) Stefan Csomor
+// Licence:     The wxWindows licence
 /////////////////////////////////////////////////////////////////////////////
 
 #ifdef __GNUG__
index 9ec67e6f5467c5bafc22dc96fded78a1229a2ba8..12bed007094ab5751ec89f7a11d4a5e693c88885 100644 (file)
@@ -1,3 +1,14 @@
+/////////////////////////////////////////////////////////////////////////////
+// Name:        uma.cpp
+// Purpose:     UMA support
+// Author:      Stefan Csomor
+// Modified by:
+// Created:     04/01/98
+// RCS-ID:      $Id$
+// Copyright:   (c) Stefan Csomor
+// Licence:     The wxWindows licence
+/////////////////////////////////////////////////////////////////////////////
+
 #include "wx/defs.h"
 #include "wx/dc.h"
 #include <MacTextEditor.h>
index 62b486d43d17ff169a71d04a1a69cb54de886458..92d048a22873774112e49617b6b5d7f3ddcb26b4 100644 (file)
@@ -5,7 +5,8 @@
 // Modified by:
 // Created:     04/01/98
 // RCS-ID:      $Id$
-// Copyright:   (c) Stefan Csomory
+// Copyright:   (c) Stefan Csomor
+// Licence:     The wxWindows licence
 /////////////////////////////////////////////////////////////////////////////
 
 #ifdef __GNUG__
index 9ec67e6f5467c5bafc22dc96fded78a1229a2ba8..12bed007094ab5751ec89f7a11d4a5e693c88885 100644 (file)
@@ -1,3 +1,14 @@
+/////////////////////////////////////////////////////////////////////////////
+// Name:        uma.cpp
+// Purpose:     UMA support
+// Author:      Stefan Csomor
+// Modified by:
+// Created:     04/01/98
+// RCS-ID:      $Id$
+// Copyright:   (c) Stefan Csomor
+// Licence:     The wxWindows licence
+/////////////////////////////////////////////////////////////////////////////
+
 #include "wx/defs.h"
 #include "wx/dc.h"
 #include <MacTextEditor.h>
index 1297cecdee1d7517042c0227e99b3842224f9259..f442a508dcfe9fe93904bafc0b47ef8561c35f12 100644 (file)
@@ -3,6 +3,7 @@
  * Name:    gsockmot.c
  * Purpose: GSocket: Motif part
  * CVSID:   $Id$
+ * Licence: The wxWindows licence
  * ------------------------------------------------------------------------- */
 
 #include "wx/setup.h"
index 6493dbfcec3078692f917369ab0f2554fce282c5..9ea70c328efa5d35d33b16bcdea87ecbeb158318 100644 (file)
@@ -3,6 +3,7 @@
  * Name:    gsocket.c
  * Author:  Guillermo Rodriguez Garcia <guille@iies.es>
  * Purpose: GSocket main MSW file
+ * Licence: The wxWindows licence
  * CVSID:   $Id$
  * -------------------------------------------------------------------------
  */
index 5438504f7a423167aed6233efb3c954a88cd7d08..4547bd415122d311cdb246c2cdf662e2a85ea366 100644 (file)
@@ -4,6 +4,7 @@
  * Authors: Guilhem Lavaux,
  *          Guillermo Rodriguez Garcia <guille@iies.es> (maintainer)
  * Purpose: GSocket main Unix-style file
+ * Licence: The wxWindows licence
  * CVSID:   $Id$
  * -------------------------------------------------------------------------
  */
index a1996b83e3d36a456bb7d13c6b75c85612733942..404582c508c57be390acc0d398fd2ce5e2e78a71 100644 (file)
@@ -2,6 +2,7 @@
  * Project: GSocket (Generic Socket) for WX
  * Name:    gsockpm.c
  * Purpose: GSocket: PM part
+ * Licence: The wxWindows licence
  * CVSID:   $Id$
  * ------------------------------------------------------------------------- */
 
index 5b7c2b23a9156837d6de39df33b4747dfc1a9f16..3c5fa00ed00cced0c1d8ecc4b289b2b80fc35143 100644 (file)
@@ -4,6 +4,7 @@
  * Authors: Guilhem Lavaux,
  *          Guillermo Rodriguez Garcia <guille@iies.es> (maintainer)
  * Purpose: GSocket main Unix file
+ * Licence: The wxWindows licence
  * CVSID:   $Id$
  * -------------------------------------------------------------------------
  */
index 6fc3464ec7a89c4d937c9503abe718c9cefd8fe4..d49b6d1c079c9f4dd45e7e3e9705f3523b92fbea 100644 (file)
@@ -2,6 +2,7 @@
  * Project: GSocket (Generic Socket) for WX
  * Name:    gsockmot.c
  * Purpose: GSocket: X11 part
+ * Licence: The wxWindows licence
  * CVSID:   $Id$
  * ------------------------------------------------------------------------- */
 
index 0aafc49442a6ca02806722b7787af70e9f42613a..5da90dd64d6c93aa1692384dd2a376a27318ed6d 100644 (file)
@@ -2,6 +2,7 @@
  * nanox.c
  *
  * Replacements for some comomon Xlib functions
+ * Licence: The wxWindows licence
  */
 
 #include "wx/setup.h"
index e3e12e3dec2937f00d08ac018aef71b902b4b77e..49393ad53ede81ba4768d291c0c9ec9d30443ad7 100644 (file)
@@ -2,6 +2,7 @@
  * This file gets included from dcclient.cpp and implements 
  * the X11 interface to Pango. 
  * Copyright (C) Owen Taylor and Robert Roebling.
+ * Licence: The wxWindows licence
  */
 
 /* Declaration */
index 17108cf60bf5263dd1d38f823c98fbb8102e2c25..3f4f0cc0c0d19a303948c1f6e1a1ab9253ed4bf4 100644 (file)
@@ -2,6 +2,7 @@
  * This file gets included from dcclient.cpp and implements 
  * the X11 interface to Pango. 
  * Copyright (C) Owen Taylor and Robert Roebling.
+ * Licence: The wxWindows licence
  */
 
 /* Declaration */
index e68540722dac06ece9a3b2aa52f65f48d4bf8b8b..18e1d028288aa788698aff68e7ec81c88c984c9f 100644 (file)
@@ -108,3 +108,4 @@ bool wxCheckListXmlHandler::CanHandle(wxXmlNode *node)
 }
 
 #endif
+
index 80a992acfa95a78e0310af47b70ef9e1377ae804..8c1e79c962c0f05c4bd05f32794cda8c64975b56 100644 (file)
@@ -86,8 +86,8 @@ wxObject *wxMenuXmlHandler::DoCreateResource()
                                                GetText(wxT("help")), kind);
                                                
 #if wxCHECK_VERSION(2,3,0) || (defined(__WXMSW__) && wxUSE_OWNER_DRAWN)
-                if (HasParam(wxT("bitmap")))
-                    mitem->SetBitmap(GetBitmap(wxT("bitmap"), wxART_MENU));
+            if (HasParam(wxT("bitmap")))
+                mitem->SetBitmap(GetBitmap(wxT("bitmap"), wxART_MENU));
 #endif
             p_menu->Append(mitem);
             mitem->Enable(GetBool(wxT("enabled"), TRUE));