LCOV - code coverage report
Current view: top level - usr/local/src/libreoffice/vcl/unx/gtk/fpicker - SalGtkFolderPicker.cxx (source / functions) Hit Total Coverage
Test: libreoffice_filtered.info Lines: 0 61 0.0 %
Date: 2013-07-09 Functions: 0 12 0.0 %
Legend: Lines: hit not hit

          Line data    Source code
       1             : /* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
       2             : /*
       3             :  * This file is part of the LibreOffice project.
       4             :  *
       5             :  * This Source Code Form is subject to the terms of the Mozilla Public
       6             :  * License, v. 2.0. If a copy of the MPL was not distributed with this
       7             :  * file, You can obtain one at http://mozilla.org/MPL/2.0/.
       8             :  *
       9             :  * This file incorporates work covered by the following license notice:
      10             :  *
      11             :  *   Licensed to the Apache Software Foundation (ASF) under one or more
      12             :  *   contributor license agreements. See the NOTICE file distributed
      13             :  *   with this work for additional information regarding copyright
      14             :  *   ownership. The ASF licenses this file to you under the Apache
      15             :  *   License, Version 2.0 (the "License"); you may not use this file
      16             :  *   except in compliance with the License. You may obtain a copy of
      17             :  *   the License at http://www.apache.org/licenses/LICENSE-2.0 .
      18             :  */
      19             : 
      20             : #ifdef AIX
      21             : #define _LINUX_SOURCE_COMPAT
      22             : #include <sys/timer.h>
      23             : #undef _LINUX_SOURCE_COMPAT
      24             : #endif
      25             : 
      26             : #include <config_vclplug.h>
      27             : 
      28             : #include <com/sun/star/awt/Toolkit.hpp>
      29             : #include <com/sun/star/frame/Desktop.hpp>
      30             : #include <com/sun/star/lang/XMultiComponentFactory.hpp>
      31             : #include <com/sun/star/ui/dialogs/ExecutableDialogResults.hpp>
      32             : #include <com/sun/star/ui/dialogs/CommonFilePickerElementIds.hpp>
      33             : #include <com/sun/star/ui/dialogs/ExtendedFilePickerElementIds.hpp>
      34             : #include <osl/diagnose.h>
      35             : #include <com/sun/star/ui/dialogs/TemplateDescription.hpp>
      36             : #include <com/sun/star/uno/Any.hxx>
      37             : #include <osl/mutex.hxx>
      38             : #include <vcl/svapp.hxx>
      39             : #include "unx/gtk/gtkinst.hxx"
      40             : #include "gtk/fpicker/SalGtkFolderPicker.hxx"
      41             : 
      42             : #include <string.h>
      43             : 
      44             : using namespace ::rtl;
      45             : using namespace ::com::sun::star;
      46             : using namespace ::com::sun::star::ui::dialogs;
      47             : using namespace ::com::sun::star::lang;
      48             : using namespace ::com::sun::star::uno;
      49             : 
      50             : //-----------------------------------------------------------------------------------------
      51             : // constructor
      52             : //-----------------------------------------------------------------------------------------
      53           0 : SalGtkFolderPicker::SalGtkFolderPicker( const uno::Reference< uno::XComponentContext >& xContext ) :
      54           0 :     SalGtkPicker( xContext )
      55             : {
      56             :     m_pDialog = gtk_file_chooser_dialog_new(
      57             :         OUStringToOString( getResString( FOLDERPICKER_TITLE ), RTL_TEXTENCODING_UTF8 ).getStr(),
      58             :         NULL, GTK_FILE_CHOOSER_ACTION_SELECT_FOLDER, GTK_STOCK_CANCEL, GTK_RESPONSE_CANCEL,
      59           0 :         GTK_STOCK_OK, GTK_RESPONSE_ACCEPT, (char *)NULL );
      60             : 
      61           0 :     gtk_dialog_set_default_response( GTK_DIALOG (m_pDialog), GTK_RESPONSE_ACCEPT );
      62             : #if ENABLE_GNOME_VFS || ENABLE_GIO
      63           0 :     gtk_file_chooser_set_local_only( GTK_FILE_CHOOSER( m_pDialog ), sal_False );
      64             : #endif
      65           0 :     gtk_file_chooser_set_select_multiple( GTK_FILE_CHOOSER( m_pDialog ), sal_False );
      66           0 : }
      67             : 
      68             : // -------------------------------------------------
      69             : // XEventListener
      70             : // -------------------------------------------------
      71             : 
      72           0 : void SAL_CALL SalGtkFolderPicker::disposing( const lang::EventObject& )
      73             :     throw( uno::RuntimeException )
      74             : {
      75           0 : }
      76             : 
      77           0 : void SAL_CALL SalGtkFolderPicker::setDisplayDirectory( const OUString& aDirectory )
      78             :     throw( lang::IllegalArgumentException, uno::RuntimeException )
      79             : {
      80           0 :     SolarMutexGuard g;
      81             : 
      82             :     OSL_ASSERT( m_pDialog != NULL );
      83             : 
      84           0 :     OString aTxt = unicodetouri( aDirectory );
      85           0 :     if( aTxt.isEmpty() ){
      86           0 :       aTxt = unicodetouri(OUString("file:///."));
      87             :     }
      88             : 
      89           0 :     if( !aTxt.isEmpty() && aTxt.lastIndexOf('/') == aTxt.getLength() - 1 )
      90           0 :         aTxt = aTxt.copy( 0, aTxt.getLength() - 1 );
      91             : 
      92             :     OSL_TRACE( "setting path to %s", aTxt.getStr() );
      93             : 
      94           0 :     gtk_file_chooser_set_current_folder_uri( GTK_FILE_CHOOSER( m_pDialog ),
      95           0 :         aTxt.getStr() );
      96           0 : }
      97             : 
      98           0 : OUString SAL_CALL SalGtkFolderPicker::getDisplayDirectory() throw( uno::RuntimeException )
      99             : {
     100           0 :     SolarMutexGuard g;
     101             : 
     102             :     OSL_ASSERT( m_pDialog != NULL );
     103             : 
     104             :     gchar* pCurrentFolder =
     105           0 :         gtk_file_chooser_get_current_folder_uri( GTK_FILE_CHOOSER( m_pDialog ) );
     106           0 :     OUString aCurrentFolderName = uritounicode(pCurrentFolder);
     107           0 :     g_free( pCurrentFolder );
     108             : 
     109           0 :     return aCurrentFolderName;
     110             : }
     111             : 
     112           0 : OUString SAL_CALL SalGtkFolderPicker::getDirectory() throw( uno::RuntimeException )
     113             : {
     114           0 :     SolarMutexGuard g;
     115             : 
     116             :     OSL_ASSERT( m_pDialog != NULL );
     117             : 
     118             :     gchar* pSelectedFolder =
     119           0 :         gtk_file_chooser_get_uri( GTK_FILE_CHOOSER( m_pDialog ) );
     120           0 :     OUString aSelectedFolderName = uritounicode(pSelectedFolder);
     121           0 :     g_free( pSelectedFolder );
     122             : 
     123           0 :     return aSelectedFolderName;
     124             : }
     125             : 
     126           0 : void SAL_CALL SalGtkFolderPicker::setDescription( const OUString& /*rDescription*/ )
     127             :     throw( uno::RuntimeException )
     128             : {
     129           0 : }
     130             : 
     131             : //-----------------------------------------------------------------------------------------
     132             : // XExecutableDialog functions
     133             : //-----------------------------------------------------------------------------------------
     134             : 
     135           0 : void SAL_CALL SalGtkFolderPicker::setTitle( const OUString& aTitle ) throw( uno::RuntimeException )
     136             : {
     137           0 :     SolarMutexGuard g;
     138             : 
     139             :     OSL_ASSERT( m_pDialog != NULL );
     140             : 
     141           0 :     OString aWindowTitle = OUStringToOString( aTitle, RTL_TEXTENCODING_UTF8 );
     142             : 
     143           0 :     gtk_window_set_title( GTK_WINDOW( m_pDialog ), aWindowTitle.getStr() );
     144           0 : }
     145             : 
     146           0 : sal_Int16 SAL_CALL SalGtkFolderPicker::execute() throw( uno::RuntimeException )
     147             : {
     148           0 :     SolarMutexGuard g;
     149             : 
     150             :     OSL_TRACE( "1: HERE WE ARE");
     151             :     OSL_ASSERT( m_pDialog != NULL );
     152             : 
     153           0 :     sal_Int16 retVal = 0;
     154             : 
     155             :     uno::Reference< awt::XExtendedToolkit > xToolkit(
     156             :         awt::Toolkit::create(m_xContext),
     157           0 :         uno::UNO_QUERY);
     158             : 
     159           0 :     uno::Reference< frame::XDesktop > xDesktop( frame::Desktop::create(m_xContext), uno::UNO_QUERY);
     160             : 
     161           0 :     RunDialog* pRunDialog = new RunDialog(m_pDialog, xToolkit, xDesktop);
     162           0 :     uno::Reference < awt::XTopWindowListener > xLifeCycle(pRunDialog);
     163           0 :     gint nStatus = pRunDialog->run();
     164           0 :     switch( nStatus )
     165             :     {
     166             :         case GTK_RESPONSE_ACCEPT:
     167           0 :             retVal = ExecutableDialogResults::OK;
     168           0 :             break;
     169             :         case GTK_RESPONSE_CANCEL:
     170           0 :             retVal = ExecutableDialogResults::CANCEL;
     171           0 :             break;
     172             :         default:
     173           0 :             retVal = 0;
     174           0 :             break;
     175             :     }
     176             : 
     177           0 :     return retVal;
     178             : }
     179             : 
     180             : //------------------------------------------------------------------------------------
     181             : // XCancellable
     182             : //------------------------------------------------------------------------------------
     183             : 
     184           0 : void SAL_CALL SalGtkFolderPicker::cancel() throw( uno::RuntimeException )
     185             : {
     186           0 :     SolarMutexGuard g;
     187             : 
     188           0 :     OSL_ASSERT( m_pDialog != NULL );
     189             : 
     190             :     // TODO m_pImpl->cancel();
     191           0 : }
     192             : 
     193             : uno::Reference< ui::dialogs::XFolderPicker2 >
     194           0 : GtkInstance::createFolderPicker( const uno::Reference< uno::XComponentContext > &xMSF )
     195             : {
     196             :     return uno::Reference< ui::dialogs::XFolderPicker2 >(
     197           0 :                 new SalGtkFolderPicker( xMSF ) );
     198           0 : }
     199             : 
     200             : /* vim:set shiftwidth=4 softtabstop=4 expandtab: */

Generated by: LCOV version 1.10