/usr/include/KWWidgets/vtkKWObject.h is in libkwwidgets1-dev 1.0.0~cvs20100930-8.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 | /*=========================================================================
Module: $RCSfile: vtkKWObject.h,v $
Copyright (c) Kitware, Inc.
All rights reserved.
See Copyright.txt or http://www.kitware.com/Copyright.htm for details.
This software is distributed WITHOUT ANY WARRANTY; without even
the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR
PURPOSE. See the above copyright notice for more information.
=========================================================================*/
// .NAME vtkKWObject - Superclass that supports basic Tcl functionality
// .SECTION Description
// vtkKWObject is the superclass for most application classes.
// It is a direct subclass of vtkObject but adds functionality for
// invoking Tcl scripts, obtaining the Tcl name for an instance, etc.
// This class requires a vtkKWApplication in order to work (as do all classes).
// .SECTION See Also
// vtkKWApplication
#ifndef __vtkKWObject_h
#define __vtkKWObject_h
#include "vtkObject.h"
#include "vtkTcl.h" // Needed for Tcl interpreter
#include "vtkKWWidgets.h" // Needed for export symbols directives
class vtkKWApplication;
class vtkCallbackCommand;
class KWWidgets_EXPORT vtkKWObject : public vtkObject
{
public:
static vtkKWObject* New();
vtkTypeRevisionMacro(vtkKWObject,vtkObject);
void PrintSelf(ostream& os, vtkIndent indent);
// Description:
// Get the name of the Tcl object this instance represents.
const char *GetTclName();
// Description:
// Set/Get the application instance for this object.
vtkGetObjectMacro(Application,vtkKWApplication);
virtual void SetApplication (vtkKWApplication* arg);
//BTX
// Description:
// Invoke some Tcl script code and perform argument substitution.
virtual const char* Script(const char *EventString, ...);
//ETX
// Description:
// Add/Remove a callback command observer.
// This AddCallbackCommandObserver() method makes sure the
// CallbackCommand object is setup properly, then add an observer on
// 'object', if it does not exist already. This observer is triggered by
// 'event' and will invoke the CallbackCommand's Execute() method.
// This method is prefered over the vtkObject::AddObserver method as
// it takes care of initializing CallbackCommand, and eventually keep
// track of observers that have been added, so that they can be removed
// properly using RemoveCallbackCommandObserver(s).
// Listeners (i.e. classes that add observers) can process the events
// sent by the object/observer pairs by re-implementing the protected
// ProcessCallbackCommandEvents virtual method.
virtual void AddCallbackCommandObserver(
vtkObject *object, unsigned long event);
virtual void RemoveCallbackCommandObserver(
vtkObject *object, unsigned long event);
// Description:
// Add all the default observers needed by that object, or remove
// all the observers that were added through AddCallbackCommandObservers.
// Subclasses can override these methods to add/remove their own default
// observers, but should call the superclass too.
// Note that RemoveCallbackCommandObservers should not remove *all* the
// observers that were added using AddCallbackCommandObserver, but only
// the ones that were added in AddCallbackCommandObservers (i.e. they
// are symmetrical methods).
virtual void AddCallbackCommandObservers() {};
virtual void RemoveCallbackCommandObservers();
protected:
vtkKWObject();
~vtkKWObject();
// Description:
// Convenience method that can be used to create a Tcl callback command.
// The 'command' argument is a pointer to the command to be created.
// The 'object' argument is the object that will have the method called on
// it. The 'method' argument is the name of the method to be called and any
// arguments in string form. If the object is NULL, the method is still
// evaluated as a simple command.
// Note that 'command' is allocated automatically using the 'new'
// operator. If it is not NULL, it is deallocated first using 'delete []'.
virtual void SetObjectMethodCommand(
char **command, vtkObject *object, const char *method);
// Description:
// Convenience method to invoke a Tcl callback command that was created
// using the SetObjectMethodCommand method. This simply checks if the
// command is not empty and evaluate it from Tcl.
virtual void InvokeObjectMethodCommand(const char *command);
// Description:
// Get the callback command.
// Its ClientData is set to this vtkKWObject instance
// itself, do not change it. Its Execute() method calls the static
// ProcessCallbackCommandEventsFunction method, passing it its ClientData,
// which in turn is converted back to a vtkKWObject pointer. The virtual
// ProcessCallbackCommandEvents method is invokved on that pointer.
// Subclasses can override this method to set specific flags, like
// the AbortFlagOnExecute flag.
virtual vtkCallbackCommand* GetCallbackCommand();
// Description:
// Processes the events that are passed through CallbackCommand (or others).
// Subclasses can override this method to process their own events, but
// should call the superclass too.
// Also check AddCallbackCommandObserver and RemoveCallbackCommandObserver.
virtual void ProcessCallbackCommandEvents(
vtkObject *caller, unsigned long event, void *calldata);
// Description:
// Static callback function that is invoked by the
// CallbackCommand's Execute() method. It converts its clientdata back to
// a vtkKWObject pointer and invoke its virtual
// ProcessCallbackCommandEvents method. Subclass should *not* reimplement
// this method, but the virtual ProcessCallbackCommandEvents instead.
static void ProcessCallbackCommandEventsFunction(
vtkObject *object, unsigned long event, void *clientdata, void *calldata);
private:
vtkKWApplication *Application;
char *TclName;
// Description:
// The callback command. In private, so that GetCallbackCommand() can be
// used to lazy allocate it.
vtkCallbackCommand *CallbackCommand;
vtkKWObject(const vtkKWObject&); // Not implemented
void operator=(const vtkKWObject&); // Not implemented
};
#endif
|