/usr/include/KWWidgets/vtkKWListBox.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 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 | /*=========================================================================
Module: $RCSfile: vtkKWListBox.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 vtkKWListBox - List Box
// .SECTION Description
// A widget that can have a list of items.
// Use vtkKWListBoxWithScrollbars if you need scrollbars.
// .SECTION See Also
// vtkKWListBoxWithScrollbars
#ifndef __vtkKWListBox_h
#define __vtkKWListBox_h
#include "vtkKWCoreWidget.h"
class KWWidgets_EXPORT vtkKWListBox : public vtkKWCoreWidget
{
public:
static vtkKWListBox* New();
vtkTypeRevisionMacro(vtkKWListBox,vtkKWCoreWidget);
void PrintSelf(ostream& os, vtkIndent indent);
// Description:
// Set/Get the background color of the widget.
virtual void GetBackgroundColor(double *r, double *g, double *b);
virtual double* GetBackgroundColor();
virtual void SetBackgroundColor(double r, double g, double b);
virtual void SetBackgroundColor(double rgb[3])
{ this->SetBackgroundColor(rgb[0], rgb[1], rgb[2]); };
// Description:
// Set/Get the foreground color of the widget.
virtual void GetForegroundColor(double *r, double *g, double *b);
virtual double* GetForegroundColor();
virtual void SetForegroundColor(double r, double g, double b);
virtual void SetForegroundColor(double rgb[3])
{ this->SetForegroundColor(rgb[0], rgb[1], rgb[2]); };
// Description:
// Set/Get the foreground color of the widget when it is disabled.
virtual void GetDisabledForegroundColor(double *r, double *g, double *b);
virtual double* GetDisabledForegroundColor();
virtual void SetDisabledForegroundColor(double r, double g, double b);
virtual void SetDisabledForegroundColor(double rgb[3])
{ this->SetDisabledForegroundColor(rgb[0], rgb[1], rgb[2]); };
// Description:
// Set/Get the highlight thickness, a non-negative value indicating the
// width of the highlight rectangle to draw around the outside of the
// widget when it has the input focus.
virtual void SetHighlightThickness(int);
virtual int GetHighlightThickness();
// Description:
// Set/Get the border width, a non-negative value indicating the width of
// the 3-D border to draw around the outside of the widget (if such a border
// is being drawn; the Relief option typically determines this).
virtual void SetBorderWidth(int);
virtual int GetBorderWidth();
// Description:
// Set/Get the 3-D effect desired for the widget.
// The value indicates how the interior of the widget should appear
// relative to its exterior.
// Valid constants can be found in vtkKWOptions::ReliefType.
virtual void SetRelief(int);
virtual int GetRelief();
virtual void SetReliefToRaised();
virtual void SetReliefToSunken();
virtual void SetReliefToFlat();
virtual void SetReliefToRidge();
virtual void SetReliefToSolid();
virtual void SetReliefToGroove();
// Description:
// Specifies the font to use when drawing text inside the widget.
// You can use predefined font names (e.g. 'system'), or you can specify
// a set of font attributes with a platform-independent name, for example,
// 'times 12 bold'. In this example, the font is specified with a three
// element list: the first element is the font family, the second is the
// size, the third is a list of style parameters (normal, bold, roman,
// italic, underline, overstrike). Example: 'times 12 {bold italic}'.
// The Times, Courier and Helvetica font families are guaranteed to exist
// and will be matched to the corresponding (closest) font on your system.
// If you are familiar with the X font names specification, you can also
// describe the font that way (say, '*times-medium-r-*-*-12*').
virtual void SetFont(const char *font);
virtual const char* GetFont();
// Description:
// Set/Get the one of several styles for manipulating the selection.
// Valid constants can be found in vtkKWOptions::SelectionModeType.
virtual void SetSelectionMode(int);
virtual int GetSelectionMode();
virtual void SetSelectionModeToSingle();
virtual void SetSelectionModeToBrowse();
virtual void SetSelectionModeToMultiple();
virtual void SetSelectionModeToExtended();
// Description:
// Specifies whether or not a selection in the widget should also be the X
// selection. If the selection is exported, then selecting in the widget
// deselects the current X selection, selecting outside the widget deselects
// any widget selection, and the widget will respond to selection retrieval
// requests when it has a selection.
virtual void SetExportSelection(int);
virtual int GetExportSelection();
vtkBooleanMacro(ExportSelection, int);
// Description:
// Get the current selected string in the list. This is used when
// Select mode is single or browse.
virtual const char *GetSelection();
virtual int GetSelectionIndex();
virtual void SetSelectionIndex(int);
// Description:
// When selectmode is multiple or extended, then these methods can
// be used to set and query the selection.
virtual void SetSelectState(int idx, int state);
virtual int GetSelectState(int idx);
// Description:
// Add an entry.
virtual void InsertEntry(int index, const char *name);
// Description:
// Append a unique string to the list. If the string exists,
// it will not be appended
virtual int AppendUnique(const char* name);
// Description:
// Append a string to the list. This call does not check if the string
// is unique.
virtual int Append(const char* name);
// Description:
// Specifies a command to be invoked when an element is selected/deselected
// in the widget. Re-selecting an element will trigger this command too.
// 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.
virtual void SetSelectionCommand(vtkObject *object, const char *method);
// Description:
// Specifies a command to be invoked when the user single-click or
// double-click in the listbox. This does *not* imply the selection changed
// though (use SetSelectionCommand instead).
// 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.
// Set callback for single and double click on a list item.
virtual void SetDoubleClickCommand(vtkObject *obj, const char *method);
virtual void SetSingleClickCommand(vtkObject *obj, const char *method);
// Description:
// Events. The ListBoxSelectionChangedEvent is triggered when an element
// is selected/deselected in the widget. Re-selecting an element will
// trigger this event too. It is similar in concept as the 'SelectionCommand'
/// callback but can be used by multiple listeners/observers at a time.
//BTX
enum
{
ListBoxSelectionChangedEvent = 10000
};
//ETX
// Description:
// Get number of items in the list.
virtual int GetNumberOfItems();
// Description:
// Get the item at the given index.
virtual const char* GetItem(int index);
// Description:
// Returns the index of the first given item.
virtual int GetItemIndex(const char* item);
// Description:
// Delete a range of items in the list.
virtual void DeleteRange(int start, int end);
// Description:
// Delete all items from the list.
virtual void DeleteAll();
// Description:
// Set the width of the list box. If the width is less than or equal to 0,
// then the width is set to the size of the largest string.
virtual void SetWidth(int);
virtual int GetWidth();
// Description:
// Set the height of the list box. If the height is less than or equal to 0,
// then the height is set to the size of the number of items in the listbox.
virtual void SetHeight(int);
virtual int GetHeight();
// Description:
// Update the "enable" state of the object and its internal parts.
// Depending on different Ivars (this->Enabled, the application's
// Limited Edition Mode, etc.), the "enable" state of the object is updated
// and propagated to its internal parts/subwidgets. This will, for example,
// enable/disable parts of the widget UI, enable/disable the visibility
// of 3D widgets, etc.
virtual void UpdateEnableState();
// Description:
// Callbacks. Internal, do not use.
virtual void SelectionCallback();
protected:
vtkKWListBox();
~vtkKWListBox();
// Description:
// Create the widget.
virtual void CreateWidget();
char* CurrentSelection; // store last call of CurrentSelection
char* Item; // store last call of GetItem
char *SelectionCommand;
virtual void InvokeSelectionCommand();
private:
vtkKWListBox(const vtkKWListBox&); // Not implemented
void operator=(const vtkKWListBox&); // Not implemented
};
#endif
|