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_TABLEFIELDDESCRIPTION_HXX
24cdf0e10cSrcweir #define DBAUI_TABLEFIELDDESCRIPTION_HXX
25cdf0e10cSrcweir 
26cdf0e10cSrcweir #ifndef _SV_TABPAGE_HXX
27cdf0e10cSrcweir #include <vcl/tabpage.hxx>
28cdf0e10cSrcweir #endif
29cdf0e10cSrcweir #ifndef DBAUI_TABLEFIELDDESCGENPAGE_HXX
30cdf0e10cSrcweir #include "FieldDescGenWin.hxx"
31cdf0e10cSrcweir #endif
32cdf0e10cSrcweir #ifndef DBACCESS_TABLEDESIGN_ICLIPBOARDTEST_HXX
33cdf0e10cSrcweir #include "IClipBoardTest.hxx"
34cdf0e10cSrcweir #endif
35cdf0e10cSrcweir 
36cdf0e10cSrcweir class FixedText;
37cdf0e10cSrcweir namespace dbaui
38cdf0e10cSrcweir {
39cdf0e10cSrcweir 	class OFieldDescGenWin;
40cdf0e10cSrcweir 	class OTableDesignHelpBar;
41cdf0e10cSrcweir 	class OFieldDescription;
42cdf0e10cSrcweir 	//==================================================================
43cdf0e10cSrcweir 	// Ableitung von TabPage ist ein Trick von TH,
44cdf0e10cSrcweir 	// um Aenderungen der Systemfarben zu bemerken (Bug #53905)
45cdf0e10cSrcweir 	class OTableFieldDescWin : public TabPage
46cdf0e10cSrcweir 								,public IClipboardTest
47cdf0e10cSrcweir 	{
48cdf0e10cSrcweir 		enum ChildFocusState
49cdf0e10cSrcweir 		{
50cdf0e10cSrcweir 			DESCRIPTION,
51cdf0e10cSrcweir 			HELP,
52cdf0e10cSrcweir 			NONE
53cdf0e10cSrcweir 		};
54cdf0e10cSrcweir 	private:
55cdf0e10cSrcweir 		OTableDesignHelpBar*	m_pHelpBar;
56cdf0e10cSrcweir 		OFieldDescGenWin*		m_pGenPage;
57cdf0e10cSrcweir 		FixedText*				m_pHeader;
58cdf0e10cSrcweir 		ChildFocusState			m_eChildFocus;
59cdf0e10cSrcweir 
60cdf0e10cSrcweir 		IClipboardTest* getActiveChild() const;
61cdf0e10cSrcweir 
62cdf0e10cSrcweir 	protected:
63cdf0e10cSrcweir 		virtual void Resize();
64cdf0e10cSrcweir 		virtual void Paint( const Rectangle& rRect );
65cdf0e10cSrcweir 
66cdf0e10cSrcweir 	public:
67cdf0e10cSrcweir 		OTableFieldDescWin( Window* pParent);
68cdf0e10cSrcweir 		virtual ~OTableFieldDescWin();
69cdf0e10cSrcweir 
70cdf0e10cSrcweir 		virtual void Init();
71cdf0e10cSrcweir 
72cdf0e10cSrcweir 		void DisplayData( OFieldDescription* pFieldDescr );
73cdf0e10cSrcweir 		void SaveData( OFieldDescription* pFieldDescr );
74cdf0e10cSrcweir 		void SetReadOnly( sal_Bool bReadOnly );
75cdf0e10cSrcweir 
76cdf0e10cSrcweir 		// window overloads
77cdf0e10cSrcweir 		virtual long PreNotify( NotifyEvent& rNEvt );
78cdf0e10cSrcweir 		virtual void GetFocus();
79cdf0e10cSrcweir 		virtual void LoseFocus();
80cdf0e10cSrcweir 
SetControlText(sal_uInt16 nControlId,const String & rText)81cdf0e10cSrcweir 		void SetControlText( sal_uInt16 nControlId, const String& rText )
82cdf0e10cSrcweir 				{ m_pGenPage->SetControlText(nControlId,rText); }
GetControlText(sal_uInt16 nControlId)83cdf0e10cSrcweir 		String GetControlText( sal_uInt16 nControlId )
84cdf0e10cSrcweir 				{ return m_pGenPage->GetControlText(nControlId); }
85cdf0e10cSrcweir 
86cdf0e10cSrcweir 		//	short GetFormatCategory(OFieldDescription* pFieldDescr) { return m_pGenPage ? m_pGenPage->GetFormatCategory(pFieldDescr) : -1; }
87cdf0e10cSrcweir 			// liefert zum am Feld eingestellten Format einen der CAT_xxx-Werte (CAT_NUMBER, CAT_DATE ...)
88cdf0e10cSrcweir 
BoolStringPersistent(const String & rUIString) const89cdf0e10cSrcweir 		String	BoolStringPersistent(const String& rUIString) const { return m_pGenPage->BoolStringPersistent(rUIString); }
BoolStringUI(const String & rPersistentString) const90cdf0e10cSrcweir 		String	BoolStringUI(const String& rPersistentString) const { return m_pGenPage->BoolStringUI(rPersistentString); }
91cdf0e10cSrcweir 
92cdf0e10cSrcweir 		// IClipboardTest
93cdf0e10cSrcweir 		virtual sal_Bool isCutAllowed();
94cdf0e10cSrcweir 		virtual sal_Bool isCopyAllowed();
95cdf0e10cSrcweir 		virtual sal_Bool isPasteAllowed();
hasChildPathFocus()96cdf0e10cSrcweir 		virtual sal_Bool hasChildPathFocus() { return HasChildPathFocus(); }
97cdf0e10cSrcweir 
98cdf0e10cSrcweir 		virtual void copy();
99cdf0e10cSrcweir 		virtual void cut();
100cdf0e10cSrcweir 		virtual void paste();
101cdf0e10cSrcweir 
getGenPage() const102cdf0e10cSrcweir 		inline OFieldDescGenWin* getGenPage() const { return m_pGenPage; }
getHelpBar() const103cdf0e10cSrcweir 		inline OTableDesignHelpBar*	getHelpBar() const { return m_pHelpBar; }
104cdf0e10cSrcweir 
105cdf0e10cSrcweir 	};
106cdf0e10cSrcweir }
107cdf0e10cSrcweir #endif // DBAUI_TABLEFIELDDESCRIPTION_HXX
108cdf0e10cSrcweir 
109cdf0e10cSrcweir 
110cdf0e10cSrcweir 
111cdf0e10cSrcweir 
112