1 /* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
3 * This file is part of the LibreOffice project.
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/.
9 * This file incorporates work covered by the following license notice:
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 .
22 #include <vcl/window.hxx>
23 #include <vcl/split.hxx>
24 #include <dbaccess/dataview.hxx>
25 #include <com/sun/star/frame/XFrame2.hpp>
26 #include "QueryViewSwitch.hxx"
27 #include <vcl/dockwin.hxx>
33 // temporary class until the beamer is implemented
34 class OBeamer
: public DockingWindow
37 OBeamer(vcl::Window
* _pParent
) : DockingWindow(_pParent
,0){}
40 // OQueryContainerWindow
41 class OQueryContainerWindow
: public ODataView
43 OQueryViewSwitch
* m_pViewSwitch
;
44 VclPtr
<OBeamer
> m_pBeamer
;
45 VclPtr
<Splitter
> m_pSplitter
;
46 css::uno::Reference
< css::frame::XFrame2
> m_xBeamer
;
48 DECL_LINK( SplitHdl
, Splitter
*, void );
50 OQueryContainerWindow(vcl::Window
* pParent
, OQueryController
& _rController
,const css::uno::Reference
< css::uno::XComponentContext
>&);
51 virtual ~OQueryContainerWindow() override
;
52 virtual void dispose() override
;
54 virtual void Construct() override
;
56 virtual bool PreNotify( NotifyEvent
& rNEvt
) override
;
59 void showPreview(const css::uno::Reference
< css::frame::XFrame
>& _xFrame
);
60 // called when the beamer has been disposed
61 void disposingPreview();
63 const css::uno::Reference
< css::frame::XFrame2
>&
64 getPreviewFrame() const { return m_xBeamer
; }
66 OQueryDesignView
* getDesignView() { return m_pViewSwitch
->getDesignView(); }
68 bool isCutAllowed() const { return m_pViewSwitch
->isCutAllowed(); }
69 bool isPasteAllowed() const { return m_pViewSwitch
->isPasteAllowed(); }
70 bool isCopyAllowed() const { return m_pViewSwitch
->isCopyAllowed(); }
71 void copy() { m_pViewSwitch
->copy(); }
72 void cut() { m_pViewSwitch
->cut(); }
73 void paste() { m_pViewSwitch
->paste(); }
75 void clear() { m_pViewSwitch
->clear(); }
76 bool isSlotEnabled( sal_Int32 _nSlotId
) { return m_pViewSwitch
->isSlotEnabled( _nSlotId
); }
77 void setSlotEnabled( sal_Int32 _nSlotId
, bool _bEnable
) { m_pViewSwitch
->setSlotEnabled( _nSlotId
, _bEnable
); }
78 void setNoneVisibleRow(sal_Int32 _nRows
) { m_pViewSwitch
->setNoneVisibleRow( _nRows
); }
80 bool checkStatement() { return m_pViewSwitch
->checkStatement( ); }
81 OUString
getStatement() { return m_pViewSwitch
->getStatement( ); }
82 void setStatement( const OUString
& _rsStatement
) { m_pViewSwitch
->setStatement( _rsStatement
); }
84 void initialize() override
{ m_pViewSwitch
->initialize(); }
85 void SaveUIConfig() { m_pViewSwitch
->SaveUIConfig(); }
86 void reset() { m_pViewSwitch
->reset(); }
88 bool switchView( ::dbtools::SQLExceptionInfo
* _pErrorInfo
);
89 void forceInitialView();
91 virtual void GetFocus() override
;
94 // re-arrange the controls belonging to the document itself
95 virtual void resizeAll( const tools::Rectangle
& _rPlayground
) override
;
97 // arrange derived classes controls in the rectangle given
98 virtual void resizeDocumentView(tools::Rectangle
& _rPlayground
) override
;
100 // end of temp classes
104 /* vim:set shiftwidth=4 softtabstop=4 expandtab: */