summaryrefslogtreecommitdiff
path: root/svtools/source/control/roadmap.cxx
diff options
context:
space:
mode:
authorMatúš Kukan <matus.kukan@gmail.com>2011-08-23 00:38:29 +0200
committerMatúš Kukan <matus.kukan@gmail.com>2011-08-23 01:28:24 +0200
commitfdbe98ebb50fd30e94750a8398cf7466f65dea47 (patch)
tree25b9cfcf7ecb41743a86707c955d35a20048248c /svtools/source/control/roadmap.cxx
parent648bbe3d648761f5e82d6ee0d40f6c5641c3a522 (diff)
unusedcode: svt::
Diffstat (limited to 'svtools/source/control/roadmap.cxx')
-rw-r--r--svtools/source/control/roadmap.cxx37
1 files changed, 0 insertions, 37 deletions
diff --git a/svtools/source/control/roadmap.cxx b/svtools/source/control/roadmap.cxx
index 7848be58c889..c8ec87bc04d5 100644
--- a/svtools/source/control/roadmap.cxx
+++ b/svtools/source/control/roadmap.cxx
@@ -110,7 +110,6 @@ namespace svt
void SetIndex( ItemIndex _Index );
ItemIndex GetIndex() const;
- void SetLabel( const ::rtl::OUString& _rText );
::rtl::OUString GetLabel( );
void Update( ItemIndex _RMIndex, const ::rtl::OUString& _rText );
@@ -121,8 +120,6 @@ namespace svt
void SetInteractive( sal_Bool _bInteractive );
void SetClickHdl( const Link& rLink );
- const Link& GetClickHdl() const;
- void SetZOrder( RoadmapItem* pRefRoadmapHyperLabel, sal_uInt16 nFlags );
void Enable( sal_Bool bEnable = sal_True);
sal_Bool IsEnabled() const;
void GrabFocus();
@@ -199,10 +196,6 @@ namespace svt
}
};
-
- //=====================================================================
- //= Roadmap
- //=====================================================================
//---------------------------------------------------------------------
void RoadmapImpl::initItemSize()
{
@@ -216,14 +209,6 @@ namespace svt
//= Roadmap
//=====================================================================
//---------------------------------------------------------------------
- ORoadmap::ORoadmap( Window* _pParent, const ResId& _rId )
- :Control( _pParent, _rId )
- ,m_pImpl( new RoadmapImpl( *this ) )
- {
- implInit();
- }
-
- //---------------------------------------------------------------------
ORoadmap::ORoadmap( Window* _pParent, WinBits _nWinStyle )
:Control( _pParent, _nWinStyle )
,m_pImpl( new RoadmapImpl( *this ) )
@@ -845,13 +830,6 @@ namespace svt
}
//---------------------------------------------------------------------
- void RoadmapItem::SetLabel( const ::rtl::OUString& _rText )
- {
- if ( mpDescription )
- mpDescription->SetText(_rText);
- }
-
- //---------------------------------------------------------------------
::rtl::OUString RoadmapItem::GetLabel( )
{
return mpDescription ? mpDescription->GetText() : String();
@@ -880,15 +858,6 @@ namespace svt
}
//---------------------------------------------------------------------
- void RoadmapItem::SetZOrder( RoadmapItem* pRefRoadmapHyperLabel, sal_uInt16 nFlags )
- {
- if (pRefRoadmapHyperLabel == NULL)
- mpDescription->SetZOrder( NULL, nFlags); //WINDOW_ZORDER_FIRST );
- else
- mpDescription->SetZOrder( pRefRoadmapHyperLabel->mpDescription, nFlags); //, WINDOW_ZORDER_BEHIND );
- }
-
- //---------------------------------------------------------------------
void RoadmapItem::Enable( sal_Bool _bEnable)
{
mpID->Enable(_bEnable);
@@ -968,12 +937,6 @@ namespace svt
}
//---------------------------------------------------------------------
- const Link& RoadmapItem::GetClickHdl( ) const
- {
- return mpDescription->GetClickHdl();
- }
-
- //---------------------------------------------------------------------
IDLabel::IDLabel( Window* _pParent, WinBits _nWinStyle )
:FixedText( _pParent, _nWinStyle )
{