summaryrefslogtreecommitdiff
path: root/dbaccess/source/ui/dlg/dlgsave.cxx
blob: 1a72cc59f61c64f4346c877d770980ee81bfe7c4 (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
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
/*************************************************************************
 *
 *  $RCSfile: dlgsave.cxx,v $
 *
 *  $Revision: 1.20 $
 *
 *  last change: $Author: hr $ $Date: 2003-03-19 17:52:23 $
 *
 *  The Contents of this file are made available subject to the terms of
 *  either of the following licenses
 *
 *         - GNU Lesser General Public License Version 2.1
 *         - Sun Industry Standards Source License Version 1.1
 *
 *  Sun Microsystems Inc., October, 2000
 *
 *  GNU Lesser General Public License Version 2.1
 *  =============================================
 *  Copyright 2000 by Sun Microsystems, Inc.
 *  901 San Antonio Road, Palo Alto, CA 94303, USA
 *
 *  This library is free software; you can redistribute it and/or
 *  modify it under the terms of the GNU Lesser General Public
 *  License version 2.1, as published by the Free Software Foundation.
 *
 *  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
 *  Lesser General Public License for more details.
 *
 *  You should have received a copy of the GNU Lesser General Public
 *  License along with this library; if not, write to the Free Software
 *  Foundation, Inc., 59 Temple Place, Suite 330, Boston,
 *  MA  02111-1307  USA
 *
 *
 *  Sun Industry Standards Source License Version 1.1
 *  =================================================
 *  The contents of this file are subject to the Sun Industry Standards
 *  Source License Version 1.1 (the License); You may not use this file
 *  except in compliance with the License. You may obtain a copy of the
 *  License at http://www.openoffice.org/license.html.
 *
 *  Software provided under this License is provided on an AS IS basis,
 *  WITHOUT WARRANTY OF ANY KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING,
 *  WITHOUT LIMITATION, WARRANTIES THAT THE SOFTWARE IS FREE OF DEFECTS,
 *  MERCHANTABLE, FIT FOR A PARTICULAR PURPOSE, OR NON-INFRINGING.
 *  See the License for the specific provisions governing your rights and
 *  obligations concerning the Software.
 *
 *  The Initial Developer of the Original Code is: Sun Microsystems, Inc.
 *
 *  Copyright: 2000 by Sun Microsystems, Inc.
 *
 *  All Rights Reserved.
 *
 *  Contributor(s): _______________________________________
 *
 *
 ************************************************************************/

#ifndef DBAUI_DLGSAVE_HXX
#include "dlgsave.hxx"
#endif
#ifndef DBAUI_DLGSAVE_HRC
#include "dlgsave.hrc"
#endif
#ifndef _SV_MSGBOX_HXX //autogen
#include <vcl/msgbox.hxx>
#endif
#ifndef _DBU_DLG_HRC_
#include "dbu_dlg.hrc"
#endif
#ifndef _DBAUI_MODULE_DBU_HXX_
#include "moduledbu.hxx"
#endif
#ifndef _COM_SUN_STAR_SDB_COMMANDTYPE_HPP_
#include <com/sun/star/sdb/CommandType.hpp>
#endif
#ifndef _COM_SUN_STAR_SDBC_XROW_HPP_
#include <com/sun/star/sdbc/XRow.hpp>
#endif
#ifndef _DBAUI_SQLMESSAGE_HXX_
#include "sqlmessage.hxx"
#endif
#ifndef _CONNECTIVITY_DBTOOLS_HXX_
#include <connectivity/dbtools.hxx>
#endif
#ifndef DBAUI_TOOLS_HXX
#include "UITools.hxx"
#endif


using namespace dbaui;
using namespace dbtools;
using namespace ::com::sun::star::uno;
using namespace ::com::sun::star::container;
using namespace ::com::sun::star::sdb;
using namespace ::com::sun::star::sdbc;

//==================================================================
OSaveAsDlg::OSaveAsDlg( Window * pParent,
                        const sal_Int32& _rType,
                        const Reference<XNameAccess>& _rxNames,
                        const Reference< XDatabaseMetaData>& _rxMetaData,
                        const Reference< XConnection>& _xConnection,
                        const String& rDefault,
                        sal_Int32 _nFlags)
             :ModalDialog( pParent, ModuleRes(DLG_SAVE_AS))
             ,m_aDescription(this, ResId (FT_DESCRIPTION))
             ,m_aCatalogLbl(this, ResId (FT_CATALOG))
             ,m_aCatalog(this, ResId (ET_CATALOG),_rxMetaData.is() ? _rxMetaData->getExtraNameCharacters() : ::rtl::OUString())
             ,m_aSchemaLbl(this, ResId (FT_SCHEMA))
             ,m_aSchema(this, ResId (ET_SCHEMA),_rxMetaData.is() ? _rxMetaData->getExtraNameCharacters() : ::rtl::OUString())
             ,m_aLabel(this, ResId (FT_TITLE))
             ,m_aTitle(this, ResId (ET_TITLE), _rxMetaData.is() ? _rxMetaData->getExtraNameCharacters() : ::rtl::OUString())
             ,m_aPB_OK(this, ResId( PB_OK ) )
             ,m_aPB_CANCEL(this, ResId( PB_CANCEL ))
             ,m_aPB_HELP(this, ResId( PB_HELP))
             ,m_aQryLabel(ResId(STR_QRY_LABEL))
             ,m_sTblLabel(ResId(STR_TBL_LABEL))
             ,m_aExists(ResId(STR_OBJECT_EXISTS_ALREADY))
             ,m_aExistsOverwrite(ResId(STR_OBJECT_EXISTS_ALREADY_OVERWRITE))
             ,m_aName(rDefault)
             ,m_xNames(_rxNames)
             ,m_xMetaData(_rxMetaData)
             ,m_nType(_rType)
             ,m_nFlags(_nFlags)
{
    switch (_rType)
    {
        case CommandType::QUERY:
            {
                m_aLabel.SetText(m_aQryLabel);
                m_aCatalogLbl.Hide();
                m_aCatalog.Hide();
                m_aSchemaLbl.Hide();
                m_aSchema.Hide();

                Point aPos(m_aSchemaLbl.GetPosPixel());
                m_aLabel.SetPosPixel(m_aCatalogLbl.GetPosPixel());
                m_aTitle.SetPosPixel(m_aCatalog.GetPosPixel());

                m_aPB_OK.SetPosPixel(Point(m_aPB_OK.GetPosPixel().X(),aPos.Y()));
                m_aPB_CANCEL.SetPosPixel(Point(m_aPB_CANCEL.GetPosPixel().X(),aPos.Y()));
                m_aPB_HELP.SetPosPixel(Point(m_aPB_HELP.GetPosPixel().X(),aPos.Y()));

                sal_Int32 nNewHeight =
                    aPos.Y() + m_aPB_OK.GetSizePixel().Height() + m_aTitle.GetSizePixel().Height() / 2;

                SetSizePixel(Size(GetSizePixel().Width(), nNewHeight));

                m_aTitle.SetText(m_aName);
            }
            break;
        case CommandType::TABLE:
            {
                m_aLabel.SetText(m_sTblLabel);
                Point aPos(m_aPB_OK.GetPosPixel());
                if(!_rxMetaData->supportsCatalogsInTableDefinitions())
                {
                    m_aCatalogLbl.Hide();
                    m_aCatalog.Hide();

                    aPos = m_aLabel.GetPosPixel();

                    m_aLabel.SetPosPixel(m_aSchemaLbl.GetPosPixel());
                    m_aTitle.SetPosPixel(m_aSchema.GetPosPixel());

                    m_aSchemaLbl.SetPosPixel(m_aCatalogLbl.GetPosPixel());
                    m_aSchema.SetPosPixel(m_aCatalog.GetPosPixel());
                }
                else
                {
                    // now fill the catalogs
                    try
                    {
                        Reference<XResultSet> xRes = m_xMetaData->getCatalogs();
                        Reference<XRow> xRow(xRes,UNO_QUERY);
                        ::rtl::OUString sCatalog;
                        while(xRes.is() && xRes->next())
                        {
                            sCatalog = xRow->getString(1);
                            if(!xRow->wasNull())
                                m_aCatalog.InsertEntry(sCatalog);
                        }
                    }
                    catch(const SQLException&)
                    {
                    }
                }

                if(!_rxMetaData->supportsSchemasInTableDefinitions())
                {
                    m_aSchemaLbl.Hide();
                    m_aSchema.Hide();

                    aPos = m_aLabel.GetPosPixel();

                    m_aLabel.SetPosPixel(m_aSchemaLbl.GetPosPixel());
                    m_aTitle.SetPosPixel(m_aSchema.GetPosPixel());
                }
                else
                {
                    // now fill the schemata
                    try
                    {
                        Reference<XResultSet> xRes = m_xMetaData->getSchemas();
                        Reference<XRow> xRow(xRes,UNO_QUERY);
                        ::rtl::OUString sSchema;
                        while(xRes.is() && xRes->next())
                        {
                            sSchema = xRow->getString(1);
                            if(!xRow->wasNull() && m_aSchema.GetEntryPos(XubString(sSchema)) == COMBOBOX_ENTRY_NOTFOUND)
                                m_aSchema.InsertEntry(sSchema);
                        }

                        m_aSchema.SetText(m_xMetaData->getUserName());
                    }
                    catch(const SQLException&)
                    {
                    }
                }

                OSL_ENSURE(m_xMetaData.is(),"The metadata can not be null!");
                if(m_aName.Search('.') != STRING_NOTFOUND)
                {
                    ::rtl::OUString sCatalog,sSchema,sTable;
                    ::dbtools::qualifiedNameComponents(_rxMetaData,
                                                        m_aName,
                                                        sCatalog,
                                                        sSchema,
                                                        sTable,
                                                        ::dbtools::eInDataManipulation);

                    m_aCatalog.SetText(sCatalog);
                    if(sSchema.getLength())
                        m_aSchema.SetText(sSchema);
                    m_aTitle.SetText(sTable);
                }
                else
                    m_aTitle.SetText(m_aName);

                m_aPB_OK.SetPosPixel(Point(m_aPB_OK.GetPosPixel().X(),aPos.Y()));
                m_aPB_CANCEL.SetPosPixel(Point(m_aPB_CANCEL.GetPosPixel().X(),aPos.Y()));
                m_aPB_HELP.SetPosPixel(Point(m_aPB_HELP.GetPosPixel().X(),aPos.Y()));


                sal_Int32 nLength = _rxMetaData->getMaxTableNameLength();
                nLength = nLength ? nLength : EDIT_NOLIMIT;

                m_aTitle.SetMaxTextLen(nLength);
                m_aSchema.SetMaxTextLen(nLength);
                m_aCatalog.SetMaxTextLen(nLength);

                sal_Bool bCheck = _xConnection.is() && isSQL92CheckEnabled(_xConnection);
                m_aTitle.setCheck(bCheck); // enable non valid sql chars as well
                m_aSchema.setCheck(bCheck); // enable non valid sql chars as well
                m_aCatalog.setCheck(bCheck); // enable non valid sql chars as well


                Size aSize = GetSizePixel();
                aSize.Height() =
                    aPos.Y() + m_aPB_OK.GetSizePixel().Height() + m_aTitle.GetSizePixel().Height() / 2;
                SetSizePixel(aSize);
            }
            break;
        default:
            OSL_ENSURE(0,"Type not supported yet!");
    }

    if ( 0 == ( m_nFlags & SAD_ADDITIONAL_DESCRIPTION ) )
    {
        // hide the description window
        m_aDescription.Hide();

        // the number of pixels we have to move the other controls
        sal_Int32 nMoveUp = m_aCatalog.GetPosPixel().Y() - m_aDescription.GetPosPixel().Y();

        // loop to all controls and move them ...
        for (   Window* pChildControl = GetWindow( WINDOW_FIRSTCHILD );
                pChildControl;
                pChildControl= pChildControl->GetWindow( WINDOW_NEXT )
            )
        {
            if ( &m_aDescription != pChildControl )
            {
                Point aPos = pChildControl->GetPosPixel();
                aPos.Y() -= nMoveUp;
                pChildControl->SetPosPixel(aPos);
            }
        }

        // change our own size accordingly
        Size aSize = GetSizePixel();
        aSize.Height() -= nMoveUp;
        SetSizePixel(aSize);
    }

    if ( SAD_TITLE_PASTE_AS == ( m_nFlags & SAD_TITLE_PASTE_AS ) )
        SetText( String( ModuleRes( STR_TITLE_PASTE_AS ) ) );

    m_aPB_OK.SetClickHdl(LINK(this,OSaveAsDlg,ButtonClickHdl));
    m_aTitle.SetModifyHdl(LINK(this,OSaveAsDlg,EditModifyHdl));
    m_aTitle.GrabFocus();
    FreeResource();
}
// -----------------------------------------------------------------------------

IMPL_LINK(OSaveAsDlg, ButtonClickHdl, Button *, pButton)
{
    if (pButton == &m_aPB_OK)
    {
        m_aName = m_aTitle.GetText();
        sal_Bool bError = m_xNames->hasByName(m_aName);
        if(m_nType == CommandType::TABLE)
        {
            OSL_ENSURE(m_xMetaData.is(),"The metadata can not be null!");
            ::rtl::OUString sComposedName;
            ::dbtools::composeTableName(m_xMetaData,getCatalog(),getSchema(),m_aName,sComposedName,sal_False,::dbtools::eInDataManipulation);
            bError = m_xNames->hasByName(sComposedName);
        }
        if(bError)
        {
            m_aTitle.GrabFocus();

            sal_Bool bOverwrite = ( (m_nFlags & SAD_OVERWRITE) == SAD_OVERWRITE );
            String aText( bOverwrite ? m_aExistsOverwrite : m_aExists);
            aText.SearchAndReplace(String::CreateFromAscii("$#$"),m_aName);
            OSQLMessageBox aDlg(this, String(ModuleRes(STR_OBJECT_ALREADY_EXSISTS)), aText, bOverwrite ? WB_YES_NO : WB_OK, OSQLMessageBox::Query);

            if ( aDlg.Execute() == RET_YES && bOverwrite )
                EndDialog(RET_OK);
        }
        else
            EndDialog(RET_OK);
    }
    return 0;
}
// -----------------------------------------------------------------------------

IMPL_LINK(OSaveAsDlg, EditModifyHdl, Edit *, pEdit )
{
    if (pEdit == &m_aTitle)
        m_aPB_OK.Enable(0 != m_aTitle.GetText().Len());
    return 0;
}
// -----------------------------------------------------------------------------