bump product version to 4.1.6.2
[LibreOffice.git] / dbaccess / source / ui / tabledesign / FieldDescGenWin.hxx
blobe77ba06ad233fa697359a86e42cc7ecacd712eeb
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 .
19 #ifndef DBAUI_TABLEFIELDDESCGENPAGE_HXX
20 #define DBAUI_TABLEFIELDDESCGENPAGE_HXX
22 #include <vcl/tabpage.hxx>
23 #include "IClipBoardTest.hxx"
25 namespace dbaui
27 class OTableDesignHelpBar;
28 class OFieldDescription;
29 class OTableFieldControl;
30 class OTableEditorCtrl;
31 //==================================================================
32 class OFieldDescGenWin : public TabPage
33 ,public IClipboardTest
36 OTableFieldControl *m_pFieldControl;
37 protected:
38 virtual void Resize();
40 public:
41 OFieldDescGenWin( Window* pParent, OTableDesignHelpBar* pHelpBar );
42 virtual ~OFieldDescGenWin();
44 virtual void GetFocus();
45 virtual void LoseFocus();
46 virtual void Init();
48 void DisplayData( OFieldDescription* pFieldDescr );
49 void SaveData( OFieldDescription* pFieldDescr );
50 void SetControlText( sal_uInt16 nControlId, const String& rText );
51 String GetControlText( sal_uInt16 nControlId );
52 void SetReadOnly( sal_Bool bReadOnly );
53 #if OSL_DEBUG_LEVEL > 0
54 OTableEditorCtrl* GetEditorCtrl();
55 #endif
56 // short GetFormatCategory(OFieldDescription* pFieldDescr);
57 // liefert zum am Feld eingestellten Format einen der CAT_xxx-Werte (CAT_NUMBER, CAT_DATE ...)
59 String BoolStringPersistent(const String& rUIString) const;
60 String BoolStringUI(const String& rPersistentString) const;
62 // IClipboardTest
63 virtual sal_Bool isCutAllowed();
64 virtual sal_Bool isCopyAllowed();
65 virtual sal_Bool isPasteAllowed();
66 virtual sal_Bool hasChildPathFocus() { return HasChildPathFocus(); }
68 virtual void copy();
69 virtual void cut();
70 virtual void paste();
72 inline OTableFieldControl* getFieldControl() const { return m_pFieldControl; }
75 #endif // DBAUI_TABLEFIELDDESCGENPAGE_HXX
77 /* vim:set shiftwidth=4 softtabstop=4 expandtab: */