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 : #ifndef INCLUDED_DBACCESS_SOURCE_UI_INC_QUERYCONTAINERWINDOW_HXX
21 : #define INCLUDED_DBACCESS_SOURCE_UI_INC_QUERYCONTAINERWINDOW_HXX
22 :
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>
29 :
30 : namespace dbaui
31 : {
32 :
33 : // OBeamer
34 : // tempoaray class until the beamer is implemented
35 0 : class OBeamer : public DockingWindow
36 : {
37 : public:
38 0 : OBeamer(vcl::Window* _pParent) : DockingWindow(_pParent,0){}
39 : };
40 :
41 : // OQueryContainerWindow
42 : class OQueryContainerWindow : public ODataView
43 : {
44 : OQueryViewSwitch* m_pViewSwitch;
45 : VclPtr<OBeamer> m_pBeamer;
46 : VclPtr<Splitter> m_pSplitter;
47 : ::com::sun::star::uno::Reference< ::com::sun::star::frame::XFrame2 > m_xBeamer;
48 :
49 : DECL_LINK( SplitHdl, void* );
50 : public:
51 : OQueryContainerWindow(vcl::Window* pParent, OQueryController& _rController,const ::com::sun::star::uno::Reference< ::com::sun::star::uno::XComponentContext >&);
52 : virtual ~OQueryContainerWindow();
53 : virtual void dispose() SAL_OVERRIDE;
54 :
55 : virtual void Construct() SAL_OVERRIDE;
56 :
57 : virtual bool PreNotify( NotifyEvent& rNEvt ) SAL_OVERRIDE;
58 :
59 : // show the beamer
60 : void showPreview(const ::com::sun::star::uno::Reference< ::com::sun::star::frame::XFrame >& _xFrame);
61 : // called when the beamer has been disposed
62 : void disposingPreview();
63 :
64 : ::com::sun::star::uno::Reference< ::com::sun::star::frame::XFrame2 >
65 0 : getPreviewFrame() const { return m_xBeamer; }
66 :
67 0 : OQueryDesignView* getDesignView() { return m_pViewSwitch->getDesignView(); }
68 :
69 0 : bool isCutAllowed() { return m_pViewSwitch->isCutAllowed(); }
70 0 : bool isPasteAllowed() { return m_pViewSwitch->isPasteAllowed(); }
71 0 : bool isCopyAllowed() { return m_pViewSwitch->isCopyAllowed(); }
72 0 : void copy() { m_pViewSwitch->copy(); }
73 0 : void cut() { m_pViewSwitch->cut(); }
74 0 : void paste() { m_pViewSwitch->paste(); }
75 :
76 0 : void clear() { m_pViewSwitch->clear(); }
77 0 : bool isSlotEnabled( sal_Int32 _nSlotId ) { return m_pViewSwitch->isSlotEnabled( _nSlotId ); }
78 0 : void setSlotEnabled( sal_Int32 _nSlotId, bool _bEnable ) { m_pViewSwitch->setSlotEnabled( _nSlotId, _bEnable ); }
79 0 : void setNoneVisbleRow(sal_Int32 _nRows) { m_pViewSwitch->setNoneVisbleRow( _nRows); }
80 :
81 0 : bool checkStatement() { return m_pViewSwitch->checkStatement( ); }
82 0 : OUString getStatement() { return m_pViewSwitch->getStatement( ); }
83 0 : void setStatement( const OUString& _rsStatement ) { m_pViewSwitch->setStatement( _rsStatement ); }
84 :
85 0 : void initialize() SAL_OVERRIDE { m_pViewSwitch->initialize(); }
86 0 : void SaveUIConfig() { m_pViewSwitch->SaveUIConfig(); }
87 0 : bool reset( ::dbtools::SQLExceptionInfo* _pErrorInfo ) { return m_pViewSwitch->reset( _pErrorInfo ); }
88 :
89 : bool switchView( ::dbtools::SQLExceptionInfo* _pErrorInfo );
90 : void forceInitialView();
91 :
92 : virtual void GetFocus() SAL_OVERRIDE;
93 :
94 : protected:
95 : // re-arrange the controls belonging to the document itself
96 : virtual void resizeAll( const Rectangle& _rPlayground ) SAL_OVERRIDE;
97 :
98 : // arrange dericed classes controls in the rectangle given
99 : virtual void resizeDocumentView(Rectangle& _rPlayground) SAL_OVERRIDE;
100 : };
101 : // end of temp classes
102 :
103 : } // namespace dbaui
104 :
105 : #endif // INCLUDED_DBACCESS_SOURCE_UI_INC_QUERYCONTAINERWINDOW_HXX
106 :
107 : /* vim:set shiftwidth=4 softtabstop=4 expandtab: */
|