124 lines
4.6 KiB
C++
124 lines
4.6 KiB
C++
//
|
|
// ********************************************************************
|
|
// * License and Disclaimer *
|
|
// * *
|
|
// * The Geant4 software is copyright of the Copyright Holders of *
|
|
// * the Geant4 Collaboration. It is provided under the terms and *
|
|
// * conditions of the Geant4 Software License, included in the file *
|
|
// * LICENSE and available at http://cern.ch/geant4/license . These *
|
|
// * include a list of copyright holders. *
|
|
// * *
|
|
// * Neither the authors of this software system, nor their employing *
|
|
// * institutes,nor the agencies providing financial support for this *
|
|
// * work make any representation or warranty, express or implied, *
|
|
// * regarding this software system or assume any liability for its *
|
|
// * use. Please see the license in the file LICENSE and URL above *
|
|
// * for the full disclaimer and the limitation of liability. *
|
|
// * *
|
|
// * This code implementation is the result of the scientific and *
|
|
// * technical work of the GEANT4 collaboration. *
|
|
// * By using, copying, modifying or distributing the software (or *
|
|
// * any work based on the software) you agree to acknowledge its *
|
|
// * use in resulting scientific publications, and indicate your *
|
|
// * acceptance of all terms of the Geant4 Software license. *
|
|
// ********************************************************************
|
|
//
|
|
//
|
|
// $Id: SoDetectorTreeKit.h,v 1.5 2006/06/29 21:21:16 gunter Exp $
|
|
// GEANT4 tag $Name: geant4-09-01 $
|
|
//
|
|
/*-----------------------------HEPVis----------------------------------------*/
|
|
/* */
|
|
/* Node: SoDetectorTreeKit */
|
|
/* Description: Easy way of browsing through a tree of detectors */
|
|
/* Author: Joe Boudreau Nov 11 1996 */
|
|
/* */
|
|
/*---------------------------------------------------------------------------*/
|
|
#ifndef HEPVis_SoDetectorTreeKit_h
|
|
#define HEPVis_SoDetectorTreeKit_h
|
|
|
|
// Inheritance :
|
|
#include <Inventor/nodekits/SoBaseKit.h>
|
|
|
|
class SoEventCallback;
|
|
class SoSeparator;
|
|
|
|
#define SoDetectorTreeKit Geant4_SoDetectorTreeKit
|
|
|
|
|
|
class SoDetectorTreeKit:public SoBaseKit {
|
|
|
|
// The following is required:
|
|
SO_KIT_HEADER(SoDetectorTreeKit);
|
|
////////////////////////////////////////////
|
|
public:
|
|
SoSFNode alternateRep; //public in order to query if alternateRep done.
|
|
private:
|
|
////////////////////////////////////////////
|
|
SO_KIT_CATALOG_ENTRY_HEADER(callbackList);
|
|
SO_KIT_CATALOG_ENTRY_HEADER(topSeparator);
|
|
SO_KIT_CATALOG_ENTRY_HEADER(pickStyle);
|
|
SO_KIT_CATALOG_ENTRY_HEADER(appearance);
|
|
SO_KIT_CATALOG_ENTRY_HEADER(units);
|
|
SO_KIT_CATALOG_ENTRY_HEADER(transform);
|
|
SO_KIT_CATALOG_ENTRY_HEADER(texture2Transform);
|
|
SO_KIT_CATALOG_ENTRY_HEADER(childList);
|
|
SO_KIT_CATALOG_ENTRY_HEADER(previewSeparator);
|
|
SO_KIT_CATALOG_ENTRY_HEADER(fullSeparator);
|
|
|
|
|
|
public:
|
|
|
|
// Constructor, required
|
|
SoDetectorTreeKit();
|
|
|
|
// This is required
|
|
virtual SbBool affectsState() const;
|
|
|
|
// Class Initializer, required
|
|
static void initClass();
|
|
|
|
// Turn the preview on or off
|
|
virtual void setPreview(SbBool Flag);
|
|
|
|
// Return the preview state
|
|
virtual SbBool getPreview() const;
|
|
|
|
// Set SoSwitch::whichChild = SO_SWITCH_ALL
|
|
void setPreviewAndFull();
|
|
|
|
// Return the preview Separator
|
|
virtual SoSeparator *getPreviewSeparator() const;
|
|
|
|
// Return the full Separator
|
|
virtual SoSeparator *getFullSeparator() const;
|
|
|
|
// Generate AlternateRep, required. Generating an alternate representation
|
|
// must be done upon users request. It allows an Inventor program to read
|
|
// back the file without requiring *this* code to be dynamically linked.
|
|
// If the users expects that *this* code will be dynamically linked, he
|
|
// need not invoke this method.
|
|
virtual void generateAlternateRep();
|
|
|
|
// We better be able to clear it, too!
|
|
virtual void clearAlternateRep();
|
|
|
|
protected:
|
|
|
|
// Destructor.
|
|
virtual ~SoDetectorTreeKit();
|
|
|
|
virtual void doAction(SoAction*);
|
|
private:
|
|
|
|
// This is needed as well
|
|
void createInitialTree();
|
|
|
|
// This is the callback function that will be
|
|
// added to the callback list
|
|
static void expand (void *userData, SoEventCallback *eventCB);
|
|
static void contract (void *userData, SoEventCallback *eventCB);
|
|
};
|
|
|
|
#endif
|