Version 5.2.6.1, tag libreoffice-5.2.6.1
[LibreOffice.git] / dbaccess / source / ui / inc / querycontainerwindow.hxx
bloba74b7ae43014e7bee6f69296c89a4ac8725dd3b3
1 /* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
2 /*
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 .
20 #ifndef INCLUDED_DBACCESS_SOURCE_UI_INC_QUERYCONTAINERWINDOW_HXX
21 #define INCLUDED_DBACCESS_SOURCE_UI_INC_QUERYCONTAINERWINDOW_HXX
23 #include <vcl/window.hxx>
24 #include <vcl/split.hxx>
25 #include <dbaccess/dataview.hxx>
26 #include <com/sun/star/frame/XFrame2.hpp>
27 #include "QueryViewSwitch.hxx"
28 #include <vcl/dockwin.hxx>
30 namespace dbaui
33 // OBeamer
34 // tempoaray class until the beamer is implemented
35 class OBeamer : public DockingWindow
37 public:
38 OBeamer(vcl::Window* _pParent) : DockingWindow(_pParent,0){}
41 // OQueryContainerWindow
42 class OQueryContainerWindow : public ODataView
44 OQueryViewSwitch* m_pViewSwitch;
45 VclPtr<OBeamer> m_pBeamer;
46 VclPtr<Splitter> m_pSplitter;
47 css::uno::Reference< css::frame::XFrame2 > m_xBeamer;
49 DECL_LINK_TYPED( SplitHdl, Splitter*, void );
50 public:
51 OQueryContainerWindow(vcl::Window* pParent, OQueryController& _rController,const css::uno::Reference< css::uno::XComponentContext >&);
52 virtual ~OQueryContainerWindow();
53 virtual void dispose() override;
55 virtual void Construct() override;
57 virtual bool PreNotify( NotifyEvent& rNEvt ) override;
59 // show the beamer
60 void showPreview(const css::uno::Reference< css::frame::XFrame >& _xFrame);
61 // called when the beamer has been disposed
62 void disposingPreview();
64 const css::uno::Reference< css::frame::XFrame2 >&
65 getPreviewFrame() const { return m_xBeamer; }
67 OQueryDesignView* getDesignView() { return m_pViewSwitch->getDesignView(); }
69 bool isCutAllowed() { return m_pViewSwitch->isCutAllowed(); }
70 bool isPasteAllowed() { return m_pViewSwitch->isPasteAllowed(); }
71 bool isCopyAllowed() { return m_pViewSwitch->isCopyAllowed(); }
72 void copy() { m_pViewSwitch->copy(); }
73 void cut() { m_pViewSwitch->cut(); }
74 void paste() { m_pViewSwitch->paste(); }
76 void clear() { m_pViewSwitch->clear(); }
77 bool isSlotEnabled( sal_Int32 _nSlotId ) { return m_pViewSwitch->isSlotEnabled( _nSlotId ); }
78 void setSlotEnabled( sal_Int32 _nSlotId, bool _bEnable ) { m_pViewSwitch->setSlotEnabled( _nSlotId, _bEnable ); }
79 void setNoneVisbleRow(sal_Int32 _nRows) { m_pViewSwitch->setNoneVisbleRow( _nRows); }
81 bool checkStatement() { return m_pViewSwitch->checkStatement( ); }
82 OUString getStatement() { return m_pViewSwitch->getStatement( ); }
83 void setStatement( const OUString& _rsStatement ) { m_pViewSwitch->setStatement( _rsStatement ); }
85 void initialize() override { m_pViewSwitch->initialize(); }
86 void SaveUIConfig() { m_pViewSwitch->SaveUIConfig(); }
87 void reset( ::dbtools::SQLExceptionInfo* _pErrorInfo ) { m_pViewSwitch->reset( _pErrorInfo ); }
89 bool switchView( ::dbtools::SQLExceptionInfo* _pErrorInfo );
90 void forceInitialView();
92 virtual void GetFocus() override;
94 protected:
95 // re-arrange the controls belonging to the document itself
96 virtual void resizeAll( const Rectangle& _rPlayground ) override;
98 // arrange derived classes controls in the rectangle given
99 virtual void resizeDocumentView(Rectangle& _rPlayground) override;
101 // end of temp classes
103 } // namespace dbaui
105 #endif // INCLUDED_DBACCESS_SOURCE_UI_INC_QUERYCONTAINERWINDOW_HXX
107 /* vim:set shiftwidth=4 softtabstop=4 expandtab: */