1*2e2212a7SAndrew Rist /**************************************************************
2cdf0e10cSrcweir  *
3*2e2212a7SAndrew Rist  * Licensed to the Apache Software Foundation (ASF) under one
4*2e2212a7SAndrew Rist  * or more contributor license agreements.  See the NOTICE file
5*2e2212a7SAndrew Rist  * distributed with this work for additional information
6*2e2212a7SAndrew Rist  * regarding copyright ownership.  The ASF licenses this file
7*2e2212a7SAndrew Rist  * to you under the Apache License, Version 2.0 (the
8*2e2212a7SAndrew Rist  * "License"); you may not use this file except in compliance
9*2e2212a7SAndrew Rist  * with the License.  You may obtain a copy of the License at
10*2e2212a7SAndrew Rist  *
11*2e2212a7SAndrew Rist  *   http://www.apache.org/licenses/LICENSE-2.0
12*2e2212a7SAndrew Rist  *
13*2e2212a7SAndrew Rist  * Unless required by applicable law or agreed to in writing,
14*2e2212a7SAndrew Rist  * software distributed under the License is distributed on an
15*2e2212a7SAndrew Rist  * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
16*2e2212a7SAndrew Rist  * KIND, either express or implied.  See the License for the
17*2e2212a7SAndrew Rist  * specific language governing permissions and limitations
18*2e2212a7SAndrew Rist  * under the License.
19*2e2212a7SAndrew Rist  *
20*2e2212a7SAndrew Rist  *************************************************************/
21*2e2212a7SAndrew Rist 
22*2e2212a7SAndrew Rist 
23cdf0e10cSrcweir #ifndef DBAUI_TABLEFIELDDESCGENPAGE_HXX
24cdf0e10cSrcweir #define DBAUI_TABLEFIELDDESCGENPAGE_HXX
25cdf0e10cSrcweir 
26cdf0e10cSrcweir #ifndef _SV_TABPAGE_HXX
27cdf0e10cSrcweir #include <vcl/tabpage.hxx>
28cdf0e10cSrcweir #endif
29cdf0e10cSrcweir #ifndef DBACCESS_TABLEDESIGN_ICLIPBOARDTEST_HXX
30cdf0e10cSrcweir #include "IClipBoardTest.hxx"
31cdf0e10cSrcweir #endif
32cdf0e10cSrcweir 
33cdf0e10cSrcweir namespace dbaui
34cdf0e10cSrcweir {
35cdf0e10cSrcweir 	class OTableDesignHelpBar;
36cdf0e10cSrcweir 	class OFieldDescription;
37cdf0e10cSrcweir 	class OTableFieldControl;
38cdf0e10cSrcweir 	class OTableEditorCtrl;
39cdf0e10cSrcweir 	//==================================================================
40cdf0e10cSrcweir 	class OFieldDescGenWin : public TabPage
41cdf0e10cSrcweir 							,public IClipboardTest
42cdf0e10cSrcweir 	{
43cdf0e10cSrcweir 
44cdf0e10cSrcweir 		OTableFieldControl	*m_pFieldControl;
45cdf0e10cSrcweir 	protected:
46cdf0e10cSrcweir 		virtual void Resize();
47cdf0e10cSrcweir 
48cdf0e10cSrcweir 	public:
49cdf0e10cSrcweir 		OFieldDescGenWin( Window* pParent, OTableDesignHelpBar* pHelpBar );
50cdf0e10cSrcweir 		virtual ~OFieldDescGenWin();
51cdf0e10cSrcweir 
52cdf0e10cSrcweir 		virtual void GetFocus();
53cdf0e10cSrcweir 		virtual void LoseFocus();
54cdf0e10cSrcweir 		virtual void Init();
55cdf0e10cSrcweir 
56cdf0e10cSrcweir 		void DisplayData( OFieldDescription* pFieldDescr );
57cdf0e10cSrcweir 		void SaveData( OFieldDescription* pFieldDescr );
58cdf0e10cSrcweir 		void SetControlText( sal_uInt16 nControlId, const String& rText );
59cdf0e10cSrcweir 		String GetControlText( sal_uInt16 nControlId );
60cdf0e10cSrcweir 		void SetReadOnly( sal_Bool bReadOnly );
61cdf0e10cSrcweir #if OSL_DEBUG_LEVEL > 0
62cdf0e10cSrcweir 		OTableEditorCtrl* GetEditorCtrl();
63cdf0e10cSrcweir #endif
64cdf0e10cSrcweir 		//	short GetFormatCategory(OFieldDescription* pFieldDescr);
65cdf0e10cSrcweir 			// liefert zum am Feld eingestellten Format einen der CAT_xxx-Werte (CAT_NUMBER, CAT_DATE ...)
66cdf0e10cSrcweir 
67cdf0e10cSrcweir 		String BoolStringPersistent(const String& rUIString) const;
68cdf0e10cSrcweir 		String BoolStringUI(const String& rPersistentString) const;
69cdf0e10cSrcweir 
70cdf0e10cSrcweir 		// IClipboardTest
71cdf0e10cSrcweir 		virtual sal_Bool isCutAllowed();
72cdf0e10cSrcweir 		virtual sal_Bool isCopyAllowed();
73cdf0e10cSrcweir 		virtual sal_Bool isPasteAllowed();
hasChildPathFocus()74cdf0e10cSrcweir 		virtual sal_Bool hasChildPathFocus() { return HasChildPathFocus(); }
75cdf0e10cSrcweir 
76cdf0e10cSrcweir 		virtual void copy();
77cdf0e10cSrcweir 		virtual void cut();
78cdf0e10cSrcweir 		virtual void paste();
79cdf0e10cSrcweir 
getFieldControl() const80cdf0e10cSrcweir 		inline OTableFieldControl*	getFieldControl() const { return m_pFieldControl; }
81cdf0e10cSrcweir 	};
82cdf0e10cSrcweir }
83cdf0e10cSrcweir #endif // DBAUI_TABLEFIELDDESCGENPAGE_HXX
84cdf0e10cSrcweir 
85