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 :
21 : #include "hintids.hxx"
22 : #include <sfx2/viewfrm.hxx>
23 : #include <editeng/tstpitem.hxx>
24 : #include <svl/stritem.hxx>
25 : #include <sfx2/request.hxx>
26 :
27 : #include "view.hxx"
28 : #include "wrtsh.hxx"
29 : #include "basesh.hxx"
30 : #include "viewopt.hxx"
31 : #include "uitool.hxx"
32 : #include "cmdid.h"
33 : #include <sfx2/tabdlg.hxx>
34 :
35 : #include "pagedesc.hxx"
36 :
37 :
38 0 : void SwView::ExecDlg(SfxRequest &rReq)
39 : {
40 0 : ModalDialog *pDialog = 0;
41 : //Damit aus dem Basic keine Dialoge fuer Hintergrund-Views aufgerufen werden:
42 0 : const SfxPoolItem* pItem = 0;
43 0 : const SfxItemSet* pArgs = rReq.GetArgs();
44 :
45 0 : sal_uInt16 nSlot = rReq.GetSlot();
46 0 : if(pArgs)
47 0 : pArgs->GetItemState( GetPool().GetWhich(nSlot), sal_False, &pItem );
48 :
49 0 : switch ( nSlot )
50 : {
51 : case FN_CHANGE_PAGENUM:
52 : {
53 0 : if ( pItem )
54 : {
55 0 : sal_uInt16 nValue = ((SfxUInt16Item *)pItem)->GetValue();
56 0 : sal_uInt16 nOldValue = pWrtShell->GetPageOffset();
57 : sal_uInt16 nPage, nLogPage;
58 : pWrtShell->GetPageNum( nPage, nLogPage,
59 0 : pWrtShell->IsCrsrVisible(), sal_False);
60 :
61 0 : if(nValue != nOldValue || nValue != nLogPage)
62 : {
63 0 : if(!nOldValue)
64 0 : pWrtShell->SetNewPageOffset( nValue );
65 : else
66 0 : pWrtShell->SetPageOffset( nValue );
67 : }
68 : }
69 : }
70 0 : break;
71 :
72 : default:
73 : OSL_ENSURE(!this, "wrong dispatcher");
74 0 : return;
75 : }
76 :
77 0 : if( pDialog )
78 : {
79 0 : pDialog->Execute();
80 0 : delete pDialog;
81 : }
82 30 : }
83 :
84 :
85 :
86 : /* vim:set shiftwidth=4 softtabstop=4 expandtab: */
|