1 /*************************************************************************
3 * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
5 * Copyright 2008 by Sun Microsystems, Inc.
7 * OpenOffice.org - a multi-platform office productivity suite
9 * $RCSfile: QueryTableView.hxx,v $
12 * This file is part of OpenOffice.org.
14 * OpenOffice.org is free software: you can redistribute it and/or modify
15 * it under the terms of the GNU Lesser General Public License version 3
16 * only, as published by the Free Software Foundation.
18 * OpenOffice.org is distributed in the hope that it will be useful,
19 * but WITHOUT ANY WARRANTY; without even the implied warranty of
20 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
21 * GNU Lesser General Public License version 3 for more details
22 * (a copy is included in the LICENSE file that accompanied this code).
24 * You should have received a copy of the GNU Lesser General Public License
25 * version 3 along with OpenOffice.org. If not, see
26 * <http://www.openoffice.org/license.html>
27 * for a copy of the LGPLv3 License.
29 ************************************************************************/
30 #ifndef DBAUI_QUERYTABLEVIEW_HXX
31 #define DBAUI_QUERYTABLEVIEW_HXX
33 #ifndef DBAUI_JOINTABLEVIEW_HXX
34 #include "JoinTableView.hxx"
36 #ifndef _COM_SUN_STAR_CONTAINER_XNAMEACCESS_HPP_
37 #include <com/sun/star/container/XNameAccess.hpp>
39 #ifndef DBAUI_QUERYCONTROLLER_HXX
40 #include "querycontroller.hxx"
46 struct TabWinsChangeNotification
48 enum ACTION_TYPE
{ AT_ADDED_WIN
, AT_REMOVED_WIN
};
49 ACTION_TYPE atActionPerformed
;
50 String strAffectedTable
;
52 TabWinsChangeNotification(ACTION_TYPE at
, const String
& str
) : atActionPerformed(at
), strAffectedTable(str
) { }
55 //========================================================================
56 class OQueryTabWinUndoAct
;
57 class OQueryTabConnUndoAction
;
58 class OQueryTableConnection
;
59 class OQueryTableWindow
;
60 class OQueryDesignView
;
61 class OQueryTableView
: public OJoinTableView
63 Link m_lnkTabWinsChangeHandler
;
66 virtual void ConnDoubleClicked(OTableConnection
* pConnection
);
67 virtual void KeyInput(const KeyEvent
& rEvt
);
69 virtual OTableWindow
* createWindow(const TTableWindowData::value_type
& _pData
);
71 /** called when init fails at the tablewindowdata because the m_xTable object could not provide columns, but no
72 exception was thrown. Expected to throw.
74 virtual void onNoColumns_throw();
76 virtual bool supressCrossNaturalJoin(const TTableConnectionData::value_type
& _pData
) const;
78 OQueryTableView(Window
* pParent
,OQueryDesignView
* pView
);
79 virtual ~OQueryTableView();
81 // Basisklasse ueberschrieben : Fenster kreieren und loeschen
82 // (eigentlich nicht wirklich LOESCHEN, es geht in die Verantwortung einer UNDO-Action ueber)
83 virtual void AddTabWin( const ::rtl::OUString
& _rTableName
, const ::rtl::OUString
& _rAliasName
, BOOL bNewTable
= FALSE
);
84 virtual void RemoveTabWin(OTableWindow
* pTabWin
);
86 // und ein AddTabWin, das einen Alias vorgibt
87 void AddTabWin(const ::rtl::OUString
& strDatabase
, const ::rtl::OUString
& strTableName
, const ::rtl::OUString
& strAlias
, BOOL bNewTable
= FALSE
);
89 OQueryTableWindow
* FindTable(const String
& rAliasName
);
90 BOOL
FindTableFromField(const String
& rFieldName
, OTableFieldDescRef
& rInfo
, USHORT
& rCnt
);
92 // Basisklasse ueberschrieben : Connections kreieren und loeschen
93 virtual void AddConnection(const OJoinExchangeData
& jxdSource
, const OJoinExchangeData
& jxdDest
);
95 virtual bool RemoveConnection( OTableConnection
* _pConn
,sal_Bool _bDelete
);
97 // Transfer von Connections von/zu einer UndoAction
98 void GetConnection(OQueryTableConnection
* pConn
);
99 // Einfuegen einer Connection in meine Struktur
100 void DropConnection(OQueryTableConnection
* pConn
);
101 // Entfernen einer Connection aus meiner Struktur
103 // das resultiert effektiv in einem voelligen Leeren des Abfrageentwurfs, da alle Fenster versteckt werden, und dabei
104 // natuerlich alle Connections an diesen Fenstern und alle Abfrage-Spalten, die auf diesen Tabellen basierten.
106 // TabWin anzeigen oder verstecken (NICHT kreieren oder loeschen)
107 BOOL
ShowTabWin(OQueryTableWindow
* pTabWin
, OQueryTabWinUndoAct
* pUndoAction
,sal_Bool _bAppend
);
108 void HideTabWin(OQueryTableWindow
* pTabWin
, OQueryTabWinUndoAct
* pUndoAction
);
110 // Sichbarkeit eines TabWins sicherstellen (+ Invalidieren der Connections)
111 virtual void EnsureVisible(const OTableWindow
* _pWin
);
113 // wieviel Tabellen mit einem bestimmten Namen habe ich schon ?
114 sal_Int32
CountTableAlias(const String
& rName
, sal_Int32
& rMax
);
116 // ein Feld einfuegen (wird einfach an das Elter weitergereicht
117 void InsertField(const OTableFieldDescRef
& rInfo
);
119 // alles (TabWins, Connections) neu aufbauen (PRECONDITION : vorher wurde ClearAll gerufen)
120 virtual void ReSync();
121 // alles (TabWins, Connections) loeschen, und zwar hart, es erfolgen also keinerlei Notifications
122 virtual void ClearAll();
124 // wird vom AddTabDlg benutzt, um festzustellen, ob noch Tabellen hinzugefuegt werden duerfen
125 //virtual BOOL IsAddAllowed();
127 // eine neu Connection bekanntgeben und einfuegen lassen, wenn nicht schon existent
128 void NotifyTabConnection(const OQueryTableConnection
& rNewConn
, BOOL _bCreateUndoAction
= TRUE
);
130 Link
SetTabWinsChangeHandler(const Link
& lnk
) { Link lnkRet
= m_lnkTabWinsChangeHandler
; m_lnkTabWinsChangeHandler
= lnk
; return lnkRet
; }
131 // der Handler bekommt einen Zeiger auf eine TabWinsChangeNotification-Struktur
133 BOOL
ExistsAVisitedConn(const OQueryTableWindow
* pFrom
) const;
135 virtual OTableWindowData
* CreateImpl(const ::rtl::OUString
& _rComposedName
136 ,const ::rtl::OUString
& _sTableName
137 ,const ::rtl::OUString
& _rWinName
);
139 /** createNewConnection opens the join dialog and allows to create a new join connection
141 void createNewConnection();
144 using OJoinTableView::EnsureVisible
;
147 #endif // DBAUI_QUERYTABLEVIEW_HXX