fix baseline build (old cairo) - 'cairo_rectangle_int_t' does not name a type
[LibreOffice.git] / dbaccess / source / ui / inc / querycontainerwindow.hxx
blob5c1e151aedbe368047105ab3dde15f4b0511a450
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 ::com::sun::star::uno::Reference< ::com::sun::star::frame::XFrame2 > m_xBeamer;
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;
55 virtual void Construct() SAL_OVERRIDE;
57 virtual bool PreNotify( NotifyEvent& rNEvt ) SAL_OVERRIDE;
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();
64 ::com::sun::star::uno::Reference< ::com::sun::star::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() SAL_OVERRIDE { m_pViewSwitch->initialize(); }
86 void SaveUIConfig() { m_pViewSwitch->SaveUIConfig(); }
87 bool reset( ::dbtools::SQLExceptionInfo* _pErrorInfo ) { return m_pViewSwitch->reset( _pErrorInfo ); }
89 bool switchView( ::dbtools::SQLExceptionInfo* _pErrorInfo );
90 void forceInitialView();
92 virtual void GetFocus() SAL_OVERRIDE;
94 protected:
95 // re-arrange the controls belonging to the document itself
96 virtual void resizeAll( const Rectangle& _rPlayground ) SAL_OVERRIDE;
98 // arrange dericed classes controls in the rectangle given
99 virtual void resizeDocumentView(Rectangle& _rPlayground) SAL_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: */