File: vtkKWSmallCounterLabel.cxx

package info (click to toggle)
kwwidgets 1.0.0~cvs20090825-4
  • links: PTS, VCS
  • area: main
  • in suites: squeeze
  • size: 14,108 kB
  • ctags: 15,770
  • sloc: cpp: 128,146; ansic: 44,137; tcl: 30,595; python: 2,283; sh: 338; makefile: 69; xml: 10
file content (137 lines) | stat: -rw-r--r-- 3,360 bytes parent folder | download | duplicates (2)
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
/*=========================================================================

  Module:    vtkKWSmallCounterLabel.cxx,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.

=========================================================================*/
#include "vtkKWSmallCounterLabel.h"

#include "vtkKWOptions.h"
#include "vtkKWIcon.h"
#include "vtkKWTopLevel.h"
#include "vtkObjectFactory.h"

#include <vtksys/stl/string>

//----------------------------------------------------------------------------
vtkStandardNewMacro( vtkKWSmallCounterLabel );
vtkCxxRevisionMacro(vtkKWSmallCounterLabel, "1.119");

//----------------------------------------------------------------------------
vtkKWSmallCounterLabel::vtkKWSmallCounterLabel()
{
  this->Value = 0;
  this->OriginalParent = NULL;
}

//----------------------------------------------------------------------------
vtkKWSmallCounterLabel::~vtkKWSmallCounterLabel()
{
}

//----------------------------------------------------------------------------
void vtkKWSmallCounterLabel::CreateWidget()
{
  // Check if already created

  if (this->IsCreated())
    {
    vtkErrorMacro(<< this->GetClassName() << " already created");
    return;
    }

  // We need to override

  this->OriginalParent = this->Parent;
  this->SetParent(this->GetParentTopLevel());

  // Call the superclass to create the whole widget

  this->Superclass::CreateWidget();

  // It's an icon, really

  this->SetText(NULL);
  this->SetHighlightThickness(0);
  this->SetBorderWidth(0);
  this->SetPadX(0);
  this->SetPadY(0);

  this->UpdateIcon();
  this->Place();
}

//----------------------------------------------------------------------------
void vtkKWSmallCounterLabel::SetValue(unsigned int arg)
{
  if (arg < 0)
    {
    arg = 0;
    }
  else if (arg > 10)
    {
    arg = 10;
    }
  if (this->Value == arg)
    {
    return;
    }

  int old_value = this->Value;
  this->Value = arg;
  this->Modified();
  
  this->UpdateIcon();
  
  if (!arg || !old_value)
    {
    this->Place();
    }
}

//----------------------------------------------------------------------------
void vtkKWSmallCounterLabel::UpdateIcon()
{
  if (this->Value)
    {
    int v = (this->Value > 10 ? 10 : this->Value);
    this->SetImageToPredefinedIcon(vtkKWIcon::IconSmallCounterBlue1 + v - 1);
    }
}

//----------------------------------------------------------------------------
void vtkKWSmallCounterLabel::Place()
{
  if (!this->IsCreated())
    {
    return;
    }

  if (!this->Value || 
      (!this->GetParent()->IsPacked() && 
       !this->GetParent()->IsGridded() &&
       !this->GetParent()->IsPlaced()))
    {
    this->Unplace();
      }
  else
    {
    this->Script(
      "place %s -anchor center -relx 0.70 -y -3 -in %s", 
      this->GetWidgetName(), this->OriginalParent->GetWidgetName());
    }
}

//----------------------------------------------------------------------------
void vtkKWSmallCounterLabel::PrintSelf(ostream& os, vtkIndent indent)
{
  this->Superclass::PrintSelf(os,indent);
  os << indent << "Value: " << this->Value << endl;
}