Branch data 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 : : #ifndef DBAUI_QUERYVIEW_TEXT_HXX
20 : : #define DBAUI_QUERYVIEW_TEXT_HXX
21 : :
22 : : #include "queryview.hxx"
23 : : #include "querycontainerwindow.hxx"
24 : :
25 : : namespace dbaui
26 : : {
27 : : class OSqlEdit;
28 : : class OQueryTextView : public Window
29 : : {
30 : : friend class OQueryViewSwitch;
31 : : OSqlEdit* m_pEdit;
32 : : public:
33 : : OQueryTextView( OQueryContainerWindow* pParent );
34 : : virtual ~OQueryTextView();
35 : :
36 : : virtual void GetFocus();
37 : :
38 : : virtual sal_Bool isCutAllowed();
39 : : virtual sal_Bool isPasteAllowed();
40 : : virtual sal_Bool isCopyAllowed();
41 : : virtual void copy();
42 : : virtual void cut();
43 : : virtual void paste();
44 : : // clears the whole query
45 : : virtual void clear();
46 : : // set the view readonly or not
47 : : virtual void setReadOnly(sal_Bool _bReadOnly);
48 : : // check if the statement is correct when not returning false
49 : : virtual sal_Bool checkStatement();
50 : : // set the statement for representation
51 : : virtual void setStatement(const ::rtl::OUString& _rsStatement);
52 : : virtual ::rtl::OUString getStatement();
53 : : // allow access to our edit
54 : 0 : OSqlEdit* getSqlEdit() const { return m_pEdit; }
55 : :
56 : 0 : OQueryContainerWindow* getContainerWindow() { return static_cast< OQueryContainerWindow* >( GetParent() ); }
57 : : protected:
58 : : virtual void Resize();
59 : : };
60 : : }
61 : : #endif // DBAUI_QUERYVIEW_TEXT_HXX
62 : :
63 : :
64 : : /* vim:set shiftwidth=4 softtabstop=4 expandtab: */
|