summaryrefslogtreecommitdiff
path: root/vcl/source/window/syswin.cxx
diff options
context:
space:
mode:
Diffstat (limited to 'vcl/source/window/syswin.cxx')
-rw-r--r--vcl/source/window/syswin.cxx60
1 files changed, 0 insertions, 60 deletions
diff --git a/vcl/source/window/syswin.cxx b/vcl/source/window/syswin.cxx
index 06635c8e7bb9..d24f76bbdfbb 100644
--- a/vcl/source/window/syswin.cxx
+++ b/vcl/source/window/syswin.cxx
@@ -40,7 +40,6 @@
using namespace ::com::sun::star::uno;
using namespace ::com::sun::star::lang;
-
class SystemWindow::ImplData
{
public:
@@ -65,8 +64,6 @@ SystemWindow::ImplData::~ImplData()
delete mpTaskPaneList;
}
-
-
SystemWindow::SystemWindow( WindowType nType ) :
Window( nType )
{
@@ -91,8 +88,6 @@ SystemWindow::~SystemWindow()
mpImplData = NULL;
}
-
-
bool SystemWindow::Notify( NotifyEvent& rNEvt )
{
// capture KeyEvents for menu handling
@@ -112,8 +107,6 @@ bool SystemWindow::Notify( NotifyEvent& rNEvt )
return Window::Notify( rNEvt );
}
-
-
bool SystemWindow::PreNotify( NotifyEvent& rNEvt )
{
// capture KeyEvents for taskpane cycling
@@ -156,8 +149,6 @@ bool SystemWindow::PreNotify( NotifyEvent& rNEvt )
return Window::PreNotify( rNEvt );
}
-
-
TaskPaneList* SystemWindow::GetTaskPaneList()
{
if( mpImplData->mpTaskPaneList )
@@ -178,8 +169,6 @@ TaskPaneList* SystemWindow::GetTaskPaneList()
}
}
-
-
bool SystemWindow::Close()
{
ImplDelData aDelData;
@@ -207,32 +196,22 @@ bool SystemWindow::Close()
return true;
}
-
-
void SystemWindow::TitleButtonClick( sal_uInt16 )
{
}
-
-
void SystemWindow::Pin()
{
}
-
-
void SystemWindow::Roll()
{
}
-
-
void SystemWindow::Resizing( Size& )
{
}
-
-
void SystemWindow::SetRepresentedURL( const OUString& i_rURL )
{
bool bChanged = (i_rURL != mpImplData->maRepresentedURL);
@@ -248,8 +227,6 @@ void SystemWindow::SetRepresentedURL( const OUString& i_rURL )
}
}
-
-
void SystemWindow::SetIcon( sal_uInt16 nIcon )
{
if ( mnIcon == nIcon )
@@ -268,8 +245,6 @@ void SystemWindow::SetIcon( sal_uInt16 nIcon )
}
}
-
-
void SystemWindow::EnableSaveBackground( bool bSave )
{
if( ImplGetSVData()->maWinData.mbNoSaveBackground )
@@ -286,8 +261,6 @@ void SystemWindow::EnableSaveBackground( bool bSave )
}
}
-
-
bool SystemWindow::IsSaveBackgroundEnabled() const
{
const Window* pWindow = this;
@@ -299,8 +272,6 @@ bool SystemWindow::IsSaveBackgroundEnabled() const
return false;
}
-
-
void SystemWindow::ShowTitleButton( sal_uInt16 nButton, bool bVisible )
{
if ( nButton == TITLE_BUTTON_DOCKING )
@@ -330,8 +301,6 @@ void SystemWindow::ShowTitleButton( sal_uInt16 nButton, bool bVisible )
return;
}
-
-
bool SystemWindow::IsTitleButtonVisible( sal_uInt16 nButton ) const
{
if ( nButton == TITLE_BUTTON_DOCKING )
@@ -340,8 +309,6 @@ bool SystemWindow::IsTitleButtonVisible( sal_uInt16 nButton ) const
return mbHideBtn;
}
-
-
void SystemWindow::SetPin( bool bPin )
{
if ( bPin != mbPinned )
@@ -352,8 +319,6 @@ void SystemWindow::SetPin( bool bPin )
}
}
-
-
void SystemWindow::RollUp()
{
if ( !mbRollUp )
@@ -372,8 +337,6 @@ void SystemWindow::RollUp()
}
}
-
-
void SystemWindow::RollDown()
{
if ( mbRollUp )
@@ -386,8 +349,6 @@ void SystemWindow::RollDown()
}
}
-
-
void SystemWindow::SetMinOutputSizePixel( const Size& rSize )
{
maMinOutSize = rSize;
@@ -401,8 +362,6 @@ void SystemWindow::SetMinOutputSizePixel( const Size& rSize )
mpWindowImpl->mpFrame->SetMinClientSize( rSize.Width(), rSize.Height() );
}
-
-
void SystemWindow::SetMaxOutputSizePixel( const Size& rSize )
{
Size aSize( rSize );
@@ -427,7 +386,6 @@ const Size& SystemWindow::GetMaxOutputSizePixel() const
return mpImplData->maMaxOutSize;
}
-
Size SystemWindow::GetResizeOutputSizePixel() const
{
Size aSize = GetOutputSizePixel();
@@ -438,8 +396,6 @@ Size SystemWindow::GetResizeOutputSizePixel() const
return aSize;
}
-
-
static void ImplWindowStateFromStr(WindowStateData& rData,
const OString& rStr)
{
@@ -554,8 +510,6 @@ static void ImplWindowStateFromStr(WindowStateData& rData,
rData.SetMask( nValidMask );
}
-
-
static OString ImplWindowStateToStr(const WindowStateData& rData)
{
sal_uLong nValidMask = rData.GetMask();
@@ -600,8 +554,6 @@ static OString ImplWindowStateToStr(const WindowStateData& rData)
return rStrBuf.makeStringAndClear();
}
-
-
void SystemWindow::ImplMoveToScreen( long& io_rX, long& io_rY, long i_nWidth, long i_nHeight, Window* i_pConfigureWin )
{
Rectangle aScreenRect;
@@ -810,8 +762,6 @@ void SystemWindow::SetWindowStateData( const WindowStateData& rData )
}
}
-
-
void SystemWindow::GetWindowStateData( WindowStateData& rData ) const
{
sal_uLong nValidMask = rData.GetMask();
@@ -897,8 +847,6 @@ void SystemWindow::GetWindowStateData( WindowStateData& rData ) const
}
}
-
-
void SystemWindow::SetWindowState(const OString& rStr)
{
if (rStr.isEmpty())
@@ -909,8 +857,6 @@ void SystemWindow::SetWindowState(const OString& rStr)
SetWindowStateData( aData );
}
-
-
OString SystemWindow::GetWindowState( sal_uLong nMask ) const
{
WindowStateData aData;
@@ -920,8 +866,6 @@ OString SystemWindow::GetWindowState( sal_uLong nMask ) const
return ImplWindowStateToStr(aData);
}
-
-
void SystemWindow::SetMenuBar( MenuBar* pMenuBar )
{
if ( mpMenuBar != pMenuBar )
@@ -984,8 +928,6 @@ void SystemWindow::SetMenuBar( MenuBar* pMenuBar )
}
}
-
-
void SystemWindow::SetMenuBarMode( sal_uInt16 nMode )
{
if ( mnMenuBarMode != nMode )
@@ -1001,8 +943,6 @@ void SystemWindow::SetMenuBarMode( sal_uInt16 nMode )
}
}
-
-
bool SystemWindow::ImplIsInTaskPaneList( Window* pWin )
{
if( mpImplData && mpImplData->mpTaskPaneList )