summaryrefslogtreecommitdiffstats
path: root/kexi/plugins/tables/kexilookupcolumnpage.h
blob: 25774c1b84428257f02190672894d2c292440ffa (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
89
/* This file is part of the KDE project
   Copyright (C) 2006 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 KEXILOOKUPCOLUMNPAGE_H
#define KEXILOOKUPCOLUMNPAGE_H

#include <tqwidget.h>
#include <kexidb/field.h>
#include <kexidb/utils.h>
#include <koproperty/set.h>

class KCommand;
class KexiObjectInfoLabel;
class KexiDataSourceComboBox;
class KexiFieldComboBox;
class KexiFieldListView;
class KexiProject;
class KexiSmallToolButton;
class TQToolButton;
class TQLabel;
class TQFrame;

//! @short A page within table designer's property pane, providing lookup column editor.
/*! It's data model is basically KexiDB::LookupFieldSchema class, but the page does 
 not create it directly but instead updates a property set that defines 
 the field currently selected in the designer. 
 
 @todo not all features of KexiDB::LookupFieldSchema class are displayed on this page yet
 */
class KexiLookupColumnPage : public TQWidget
{
	TQ_OBJECT
  

	public:
		KexiLookupColumnPage(TQWidget *parent);
		virtual ~KexiLookupColumnPage();

	public slots:
		void setProject(KexiProject *prj);
		void clearRowSourceSelection(bool alsoClearComboBox = true);
		void clearBoundColumnSelection();
		void clearVisibleColumnSelection();

		//! Receives a pointer to a new property \a set (from KexiFormView::managerPropertyChanged())
		void assignPropertySet(KoProperty::Set* propertySet);

	signals:
		//! Signal emitted when helper button 'Go to selected row sourcesource' is clicked.
		void jumpToObjectRequested(const TQCString& mime, const TQCString& name);

//		/*! Signal emitted when current bound column has been changed. */
//		void boundColumnChanged(const TQString& string, const TQString& caption,
	//		KexiDB::Field::Type type);

	protected slots:
		void slotRowSourceTextChanged(const TQString & string);
		void slotRowSourceChanged();
		void slotGotoSelectedRowSource();
		void slotBoundColumnSelected();
		void slotVisibleColumnSelected();

	protected:
		void updateBoundColumnWidgetsAvailability();

		//! Used instead of m_propertySet->changeProperty() to honor m_propertySetEnabled
		void changeProperty(const TQCString &property, const TQVariant &value);

	private:
		class Private;
		Private* d;
};

#endif