/************************************************************** * * Licensed to the Apache Software Foundation (ASF) under one * or more contributor license agreements. See the NOTICE file * distributed with this work for additional information * regarding copyright ownership. The ASF licenses this file * to you under the Apache License, Version 2.0 (the * "License"); you may not use this file except in compliance * with the License. You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, * software distributed under the License is distributed on an * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY * KIND, either express or implied. See the License for the * specific language governing permissions and limitations * under the License. * *************************************************************/ // MARKER(update_precomp.py): autogen include statement, do not remove #include "precompiled_vcl.hxx" #include #include #include #include #include #include #include #include #include #include #include SalSystem* X11SalInstance::CreateSalSystem() { return new X11SalSystem(); } // ----------------------------------------------------------------------- X11SalSystem::~X11SalSystem() { } // for the moment only handle xinerama case unsigned int X11SalSystem::GetDisplayScreenCount() { SalDisplay* pSalDisp = GetX11SalData()->GetDisplay(); return pSalDisp->IsXinerama() ? pSalDisp->GetXineramaScreens().size() : pSalDisp->GetScreenCount(); } bool X11SalSystem::IsMultiDisplay() { SalDisplay* pSalDisp = GetX11SalData()->GetDisplay(); unsigned int nScreenCount = pSalDisp->GetScreenCount(); return pSalDisp->IsXinerama() ? false : (nScreenCount > 1); } unsigned int X11SalSystem::GetDefaultDisplayNumber() { SalDisplay* pSalDisp = GetX11SalData()->GetDisplay(); return pSalDisp->IsXinerama() ? pSalDisp->GetDefaultMonitorNumber() : pSalDisp->GetDefaultScreenNumber(); } Rectangle X11SalSystem::GetDisplayScreenPosSizePixel( unsigned int nScreen ) { Rectangle aRet; SalDisplay* pSalDisp = GetX11SalData()->GetDisplay(); if( pSalDisp->IsXinerama() ) { const std::vector< Rectangle >& rScreens = pSalDisp->GetXineramaScreens(); if( nScreen < rScreens.size() ) aRet = rScreens[nScreen]; } else { const SalDisplay::ScreenData& rScreen = pSalDisp->getDataForScreen( nScreen ); aRet = Rectangle( Point( 0, 0 ), rScreen.m_aSize ); } return aRet; } Rectangle X11SalSystem::GetDisplayWorkAreaPosSizePixel( unsigned int nScreen ) { // FIXME: workareas return GetDisplayScreenPosSizePixel( nScreen ); } rtl::OUString X11SalSystem::GetScreenName( unsigned int nScreen ) { rtl::OUString aScreenName; SalDisplay* pSalDisp = GetX11SalData()->GetDisplay(); if( pSalDisp->IsXinerama() ) { const std::vector< Rectangle >& rScreens = pSalDisp->GetXineramaScreens(); if( nScreen >= rScreens.size() ) nScreen = 0; rtl::OUStringBuffer aBuf( 256 ); aBuf.append( rtl::OStringToOUString( rtl::OString( DisplayString( pSalDisp->GetDisplay() ) ), osl_getThreadTextEncoding() ) ); aBuf.appendAscii( " [" ); aBuf.append( static_cast(nScreen) ); aBuf.append( sal_Unicode(']') ); aScreenName = aBuf.makeStringAndClear(); } else { if( nScreen >= static_cast(pSalDisp->GetScreenCount()) ) nScreen = 0; rtl::OUStringBuffer aBuf( 256 ); aBuf.append( rtl::OStringToOUString( rtl::OString( DisplayString( pSalDisp->GetDisplay() ) ), osl_getThreadTextEncoding() ) ); // search backwards for ':' int nPos = aBuf.getLength(); if( nPos > 0 ) nPos--; while( nPos > 0 && aBuf.charAt( nPos ) != ':' ) nPos--; // search forward to '.' while( nPos < aBuf.getLength() && aBuf.charAt( nPos ) != '.' ) nPos++; if( nPos < aBuf.getLength() ) aBuf.setLength( nPos+1 ); else aBuf.append( sal_Unicode('.') ); aBuf.append( static_cast(nScreen) ); aScreenName = aBuf.makeStringAndClear(); } return aScreenName; } int X11SalSystem::ShowNativeDialog( const String& rTitle, const String& rMessage, const std::list< String >& rButtons, int nDefButton ) { int nRet = -1; ImplSVData* pSVData = ImplGetSVData(); if( pSVData->mpIntroWindow ) pSVData->mpIntroWindow->Hide(); WarningBox aWarn( NULL, WB_STDWORK, rMessage ); aWarn.SetText( rTitle ); aWarn.Clear(); sal_uInt16 nButton = 0; for( std::list< String >::const_iterator it = rButtons.begin(); it != rButtons.end(); ++it ) { aWarn.AddButton( *it, nButton+1, nButton == (sal_uInt16)nDefButton ? BUTTONDIALOG_DEFBUTTON : 0 ); nButton++; } aWarn.SetFocusButton( (sal_uInt16)nDefButton+1 ); nRet = ((int)aWarn.Execute()) - 1; // normalize behaviour, actually this should never happen if( nRet < -1 || nRet >= int(rButtons.size()) ) nRet = -1; return nRet; } int X11SalSystem::ShowNativeMessageBox(const String& rTitle, const String& rMessage, int nButtonCombination, int nDefaultButton) { int nDefButton = 0; std::list< String > aButtons; int nButtonIds[5], nBut = 0; if( nButtonCombination == SALSYSTEM_SHOWNATIVEMSGBOX_BTNCOMBI_OK || nButtonCombination == SALSYSTEM_SHOWNATIVEMSGBOX_BTNCOMBI_OK_CANCEL ) { aButtons.push_back( Button::GetStandardText( BUTTON_OK ) ); nButtonIds[nBut++] = SALSYSTEM_SHOWNATIVEMSGBOX_BTN_OK; } if( nButtonCombination == SALSYSTEM_SHOWNATIVEMSGBOX_BTNCOMBI_YES_NO_CANCEL || nButtonCombination == SALSYSTEM_SHOWNATIVEMSGBOX_BTNCOMBI_YES_NO ) { aButtons.push_back( Button::GetStandardText( BUTTON_YES ) ); nButtonIds[nBut++] = SALSYSTEM_SHOWNATIVEMSGBOX_BTN_YES; aButtons.push_back( Button::GetStandardText( BUTTON_NO ) ); nButtonIds[nBut++] = SALSYSTEM_SHOWNATIVEMSGBOX_BTN_NO; if( nDefaultButton == SALSYSTEM_SHOWNATIVEMSGBOX_BTN_NO ) nDefButton = 1; } if( nButtonCombination == SALSYSTEM_SHOWNATIVEMSGBOX_BTNCOMBI_OK_CANCEL || nButtonCombination == SALSYSTEM_SHOWNATIVEMSGBOX_BTNCOMBI_YES_NO_CANCEL || nButtonCombination == SALSYSTEM_SHOWNATIVEMSGBOX_BTNCOMBI_RETRY_CANCEL ) { if( nButtonCombination == SALSYSTEM_SHOWNATIVEMSGBOX_BTNCOMBI_RETRY_CANCEL ) { aButtons.push_back( Button::GetStandardText( BUTTON_RETRY ) ); nButtonIds[nBut++] = SALSYSTEM_SHOWNATIVEMSGBOX_BTN_RETRY; } aButtons.push_back( Button::GetStandardText( BUTTON_CANCEL ) ); nButtonIds[nBut++] = SALSYSTEM_SHOWNATIVEMSGBOX_BTN_CANCEL; if( nDefaultButton == SALSYSTEM_SHOWNATIVEMSGBOX_BTN_CANCEL ) nDefButton = aButtons.size()-1; } if( nButtonCombination == SALSYSTEM_SHOWNATIVEMSGBOX_BTNCOMBI_ABORT_RETRY_IGNORE ) { aButtons.push_back( Button::GetStandardText( BUTTON_ABORT ) ); nButtonIds[nBut++] = SALSYSTEM_SHOWNATIVEMSGBOX_BTN_ABORT; aButtons.push_back( Button::GetStandardText( BUTTON_RETRY ) ); nButtonIds[nBut++] = SALSYSTEM_SHOWNATIVEMSGBOX_BTN_RETRY; aButtons.push_back( Button::GetStandardText( BUTTON_IGNORE ) ); nButtonIds[nBut++] = SALSYSTEM_SHOWNATIVEMSGBOX_BTN_IGNORE; switch( nDefaultButton ) { case SALSYSTEM_SHOWNATIVEMSGBOX_BTN_RETRY: nDefButton = 1;break; case SALSYSTEM_SHOWNATIVEMSGBOX_BTN_IGNORE: nDefButton = 2;break; } } int nResult = ShowNativeDialog( rTitle, rMessage, aButtons, nDefButton ); return nResult != -1 ? nButtonIds[ nResult ] : 0; }