/usr/include/KWWidgets/vtkKWRadioButtonSet.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 | /*=========================================================================
Module: $RCSfile: vtkKWRadioButtonSet.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 vtkKWRadioButtonSet - a concrete set of vtkKWRadioButton
// .SECTION Description
// A composite widget to conveniently store, allocate, create and pack a
// set of vtkKWRadioButton.
// Each vtkKWRadioButton is created, removed or queried based
// on a unique ID provided by the user (ids are *not* handled by the class
// since it is likely that they will be defined as enum's or #define by
// the user for easier retrieval).
// As a subclass of vtkKWWidgetSet, it inherits methods to set the widgets
// visibility individually, set the layout parameters, and query each widget.
// Widgets are packed (gridded) in the order they were added.
// .SECTION See Also
// vtkKWWidgetSet
#ifndef __vtkKWRadioButtonSet_h
#define __vtkKWRadioButtonSet_h
#include "vtkKWWidgetSet.h"
class vtkKWRadioButton;
class KWWidgets_EXPORT vtkKWRadioButtonSet : public vtkKWWidgetSet
{
public:
static vtkKWRadioButtonSet* New();
vtkTypeRevisionMacro(vtkKWRadioButtonSet,vtkKWWidgetSet);
void PrintSelf(ostream& os, vtkIndent indent);
// Description:
// Add a vtkKWRadioButton to the set.
// The id has to be unique among the set.
// Return a pointer to the vtkKWRadioButton, or NULL on error.
virtual vtkKWRadioButton* AddWidget(int id);
// Description:
// Insert a vtkKWRadioButton at a specific position in the set.
// The id has to be unique among the set.
// Return a pointer to the vtkKWRadioButton, or NULL on error.
virtual vtkKWRadioButton* InsertWidget(int id, int pos);
// Description:
// Get a vtkKWRadioButton from the set, given its unique id.
// Return a pointer to the vtkKWRadioButton, or NULL on error.
virtual vtkKWRadioButton* GetWidget(int id);
protected:
vtkKWRadioButtonSet() {};
~vtkKWRadioButtonSet() {};
// Helper methods
virtual vtkKWWidget* AllocateAndCreateWidget();
virtual vtkKWWidget* InsertWidgetInternal(int id, int pos);
private:
vtkKWRadioButtonSet(const vtkKWRadioButtonSet&); // Not implemented
void operator=(const vtkKWRadioButtonSet&); // Not implemented
};
#endif
|