summaryrefslogtreecommitdiffstats
path: root/kexi/plugins/forms/kexiformmanager.h
blob: 1e1b767c17246c22029467438a409efcf81f3613 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
/* This file is part of the KDE project
   Copyright (C) 2005 Jaroslaw Staniek <js@iidea.pl>

   This library is free software; you can redistribute it and/or
   modify it under the terms of the GNU Library General Public
   License as published by the Free Software Foundation; either
   version 2 of the License, or (at your option) any later version.

   This library is distributed in the hope that it will be useful,
   but WITHOUT ANY WARRANTY; without even the implied warranty of
   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
   Library General Public License for more details.

   You should have received a copy of the GNU Library General Public License
   along with this library; see the file COPYING.LIB.  If not, write to
   the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
 * Boston, MA 02110-1301, USA.
*/

#ifndef KEXIFORMMANAGER_H
#define KEXIFORMMANAGER_H

#include <formmanager.h>
#include <kexipart.h>

class KCommand;
class KexiFormView;

//! @internal
//! Used to customize KFormDesigner::FormManager behaviour.
class KEXIFORMUTILS_EXPORT KexiFormManager : public KFormDesigner::FormManager
{
	Q_OBJECT
  

	public:
		KexiFormManager(KexiPart::Part *parent, const char* name = 0);
		virtual ~KexiFormManager();

		virtual TDEAction* action( const char* name );
		virtual void enableAction( const char* name, bool enable );

	public slots:
		//! Receives signal from KexiDataSourcePage about changed form's data source
		void setFormDataSource(const TQCString& mime, const TQCString& name);

		/*! Receives signal from KexiDataSourcePage about changed widget's data source.
		 This is because we couldn't pass objects like KexiDB::QueryColumnInfo.

		 Also sets following things in KexiDBAutoField:
		 - caption related to the data source
		 - data type related to the data source */
		void setDataSourceFieldOrExpression(const TQString& string, const TQString& caption, 
			KexiDB::Field::Type type);

		/*! Receives signal from KexiDataSourcePage and inserts autofields onto the current form. */
		void insertAutoFields(const TQString& sourceMimeType, const TQString& sourceName,
			const TQStringList& fields);

	protected slots:
		void slotHistoryCommandExecuted();

	protected:
		inline TQString translateName( const char* name ) const;

	private:
		//! Helper: return active form's view widget or 0 if there's no active form having such widget
		KexiFormView* activeFormViewWidget() const;

//		virtual bool loadFormFromDomInternal(Form *form, TQWidget *container, TQDomDocument &inBuf);
//		virtual bool saveFormToStringInternal(Form *form, TQString &dest, int indent = 0);

		KexiPart::Part* m_part;
};

TQString KexiFormManager::translateName( const char* name ) const
{
	TQString n( name );
	//translate to our name space:
	if (n.startsWith("align_") || n.startsWith("adjust_") || n.startsWith("layout_")
		|| n=="format_raise" || n=="format_raise" || n=="taborder" | n=="break_layout")
	{
		n.prepend("formpart_");
	}
	return n;
}

#endif