LCOV - code coverage report
Current view: top level - basic/source/runtime - inputbox.cxx (source / functions) Hit Total Coverage
Test: commit c8344322a7af75b84dd3ca8f78b05543a976dfd5 Lines: 1 90 1.1 %
Date: 2015-06-13 12:38:46 Functions: 2 16 12.5 %
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             : #include <tools/lineend.hxx>
      21             : #include <vcl/button.hxx>
      22             : #include <vcl/fixed.hxx>
      23             : #include <vcl/edit.hxx>
      24             : #include <vcl/dialog.hxx>
      25             : #include <vcl/svapp.hxx>
      26             : #include "runtime.hxx"
      27             : #include "stdobj.hxx"
      28             : #include "rtlproto.hxx"
      29             : #include <boost/scoped_ptr.hpp>
      30             : 
      31             : class SvRTLInputBox : public ModalDialog
      32             : {
      33             :     VclPtr<Edit> aEdit;
      34             :     VclPtr<OKButton> aOk;
      35             :     VclPtr<CancelButton> aCancel;
      36             :     VclPtr<FixedText> aPromptText;
      37             :     OUString aText;
      38             : 
      39             :     void PositionDialog( long nXTwips, long nYTwips, const Size& rDlgSize );
      40             :     void InitButtons( const Size& rDlgSize );
      41             :     void PositionEdit( const Size& rDlgSize );
      42             :     void PositionPrompt( const OUString& rPrompt, const Size& rDlgSize );
      43             :     DECL_LINK( OkHdl, Button * );
      44             :     DECL_LINK( CancelHdl, Button * );
      45             : 
      46             : public:
      47             :     SvRTLInputBox( vcl::Window* pParent, const OUString& rPrompt, const OUString& rTitle,
      48             :         const OUString& rDefault, long nXTwips = -1, long nYTwips = -1 );
      49           0 :     virtual ~SvRTLInputBox() { disposeOnce(); }
      50             :     virtual void dispose() SAL_OVERRIDE;
      51           0 :     OUString GetText() const SAL_OVERRIDE { return aText; }
      52             : };
      53             : 
      54           0 : SvRTLInputBox::SvRTLInputBox( vcl::Window* pParent, const OUString& rPrompt,
      55             :         const OUString& rTitle, const OUString& rDefault,
      56             :         long nXTwips, long nYTwips ) :
      57             :     ModalDialog( pParent,WB_3DLOOK | WB_MOVEABLE | WB_CLOSEABLE ),
      58             :     aEdit( VclPtr<Edit>::Create(this,  WB_LEFT | WB_BORDER) ),
      59           0 :     aOk( VclPtr<OKButton>::Create(this) ), aCancel( VclPtr<CancelButton>::Create(this) ), aPromptText( VclPtr<FixedText>::Create(this, WB_WORDBREAK) )
      60             : {
      61           0 :     SetMapMode( MapMode( MAP_APPFONT ) );
      62           0 :     Size aDlgSizeApp( 280, 80 );
      63           0 :     PositionDialog( nXTwips, nYTwips, aDlgSizeApp );
      64           0 :     InitButtons( aDlgSizeApp );
      65           0 :     PositionEdit( aDlgSizeApp );
      66           0 :     PositionPrompt( rPrompt, aDlgSizeApp );
      67           0 :     aOk->Show();
      68           0 :     aCancel->Show();
      69           0 :     aEdit->Show();
      70           0 :     aPromptText->Show();
      71           0 :     SetText( rTitle );
      72           0 :     vcl::Font aFont( GetFont());
      73           0 :     Color aColor( GetBackground().GetColor() );
      74           0 :     aFont.SetFillColor( aColor );
      75           0 :     aEdit->SetFont( aFont );
      76           0 :     aEdit->SetText( rDefault );
      77           0 :     aEdit->SetSelection( Selection( SELECTION_MIN, SELECTION_MAX ) );
      78           0 : }
      79             : 
      80           0 : void SvRTLInputBox::dispose()
      81             : {
      82           0 :     aEdit.disposeAndClear();
      83           0 :     aOk.disposeAndClear();
      84           0 :     aCancel.disposeAndClear();
      85           0 :     aPromptText.disposeAndClear();
      86           0 :     ModalDialog::dispose();
      87           0 : }
      88             : 
      89           0 : void SvRTLInputBox::InitButtons( const Size& rDlgSize )
      90             : {
      91           0 :     aOk->SetSizePixel( LogicToPixel( Size( 45, 15) ));
      92           0 :     aCancel->SetSizePixel( LogicToPixel( Size( 45, 15) ));
      93           0 :     Point aPos( rDlgSize.Width()-45-10, 5 );
      94           0 :     aOk->SetPosPixel( LogicToPixel( Point(aPos) ));
      95           0 :     aPos.Y() += 16;
      96           0 :     aCancel->SetPosPixel( LogicToPixel( Point(aPos) ));
      97           0 :     aOk->SetClickHdl(LINK(this,SvRTLInputBox, OkHdl));
      98           0 :     aCancel->SetClickHdl(LINK(this,SvRTLInputBox,CancelHdl));
      99           0 : }
     100             : 
     101           0 : void SvRTLInputBox::PositionDialog(long nXTwips, long nYTwips, const Size& rDlgSize)
     102             : {
     103           0 :     SetSizePixel( LogicToPixel(rDlgSize) );
     104           0 :     if( nXTwips != -1 && nYTwips != -1 )
     105             :     {
     106           0 :         Point aDlgPosApp( nXTwips, nYTwips );
     107           0 :         SetPosPixel( LogicToPixel( aDlgPosApp, MAP_TWIP ) );
     108             :     }
     109           0 : }
     110             : 
     111           0 : void SvRTLInputBox::PositionEdit( const Size& rDlgSize )
     112             : {
     113           0 :     aEdit->SetPosPixel( LogicToPixel( Point( 5,rDlgSize.Height()-35)));
     114           0 :     aEdit->SetSizePixel( LogicToPixel( Size(rDlgSize.Width()-15,12)));
     115           0 : }
     116             : 
     117             : 
     118           0 : void SvRTLInputBox::PositionPrompt(const OUString& rPrompt,const Size& rDlgSize)
     119             : {
     120           0 :     if ( rPrompt.isEmpty() )
     121           0 :         return;
     122           0 :     OUString aText_(convertLineEnd(rPrompt, LINEEND_CR));
     123           0 :     aPromptText->SetPosPixel( LogicToPixel(Point(5,5)));
     124           0 :     aPromptText->SetText( aText_ );
     125           0 :     Size aSize( rDlgSize );
     126           0 :     aSize.Width() -= 70;
     127           0 :     aSize.Height() -= 50;
     128           0 :     aPromptText->SetSizePixel( LogicToPixel(aSize));
     129             : }
     130             : 
     131             : 
     132           0 : IMPL_LINK( SvRTLInputBox, OkHdl, Button *, pButton )
     133             : {
     134             :     (void)pButton;
     135             : 
     136           0 :     aText = aEdit->GetText();
     137           0 :     EndDialog( 1 );
     138           0 :     return 0;
     139             : }
     140             : 
     141           0 : IMPL_LINK( SvRTLInputBox, CancelHdl, Button *, pButton )
     142             : {
     143             :     (void)pButton;
     144             : 
     145           0 :     aText.clear();
     146           0 :     EndDialog( 0 );
     147           0 :     return 0;
     148             : }
     149             : 
     150             : 
     151             : // *********************************************************************
     152             : // *********************************************************************
     153             : 
     154             : // Syntax: String InputBox( Prompt, [Title], [Default] [, nXpos, nYpos ] )
     155             : 
     156           0 : RTLFUNC(InputBox)
     157             : {
     158             :     (void)pBasic;
     159             :     (void)bWrite;
     160             : 
     161           0 :     sal_uInt32 nArgCount = rPar.Count();
     162           0 :     if ( nArgCount < 2 )
     163           0 :         StarBASIC::Error( SbERR_BAD_ARGUMENT );
     164             :     else
     165             :     {
     166           0 :         OUString aTitle;
     167           0 :         OUString aDefault;
     168           0 :         sal_Int32 nX = -1, nY = -1;  // center
     169           0 :         const OUString& rPrompt = rPar.Get(1)->GetOUString();
     170           0 :         if ( nArgCount > 2 && !rPar.Get(2)->IsErr() )
     171           0 :             aTitle = rPar.Get(2)->GetOUString();
     172           0 :         if ( nArgCount > 3 && !rPar.Get(3)->IsErr() )
     173           0 :             aDefault = rPar.Get(3)->GetOUString();
     174           0 :         if ( nArgCount > 4 )
     175             :         {
     176           0 :             if ( nArgCount != 6 )
     177             :             {
     178           0 :                 StarBASIC::Error( SbERR_BAD_ARGUMENT );
     179           0 :                 return;
     180             :             }
     181           0 :             nX = rPar.Get(4)->GetLong();
     182           0 :             nY = rPar.Get(5)->GetLong();
     183             :         }
     184           0 :         VclPtrInstance<SvRTLInputBox> pDlg(Application::GetDefDialogParent(),
     185           0 :                                            rPrompt,aTitle,aDefault,nX,nY);
     186           0 :         pDlg->Execute();
     187           0 :         rPar.Get(0)->PutString( pDlg->GetText() );
     188             :     }
     189         786 : }
     190             : 
     191             : 
     192             : 
     193             : /* vim:set shiftwidth=4 softtabstop=4 expandtab: */

Generated by: LCOV version 1.11