~ubuntu-branches/ubuntu/wily/tora/wily-proposed

« back to all changes in this revision

Viewing changes to src/toconnectionimport.cpp

  • Committer: Bazaar Package Importer
  • Author(s): Michael Meskes
  • Date: 2009-04-07 13:16:05 UTC
  • mfrom: (1.2.7 upstream) (3.1.3 sid)
  • Revision ID: james.westby@ubuntu.com-20090407131605-u422yigfv7jgg0l0
Tags: 2.0.0-3
* Cleaned up packaging a little bit.
* Added homepage information to control file.
* Bumped Standards-Version to 3.8.1.
* Released to unstable.

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
 
 
2
/* BEGIN_COMMON_COPYRIGHT_HEADER
 
3
 *
 
4
 * TOra - An Oracle Toolkit for DBA's and developers
 
5
 * 
 
6
 * Shared/mixed copyright is held throughout files in this product
 
7
 * 
 
8
 * Portions Copyright (C) 2000-2001 Underscore AB
 
9
 * Portions Copyright (C) 2003-2005 Quest Software, Inc.
 
10
 * Portions Copyright (C) 2004-2008 Numerous Other Contributors
 
11
 * 
 
12
 * This program is free software; you can redistribute it and/or
 
13
 * modify it under the terms of the GNU General Public License
 
14
 * as published by the Free Software Foundation;  only version 2 of
 
15
 * the License is valid for this program.
 
16
 * 
 
17
 * This program is distributed in the hope that it will be useful,
 
18
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
 
19
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 
20
 * GNU General Public License for more details.
 
21
 * 
 
22
 * You should have received a copy of the GNU General Public License
 
23
 * along with this program; if not, write to the Free Software
 
24
 * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA  02111-1307, USA.
 
25
 * 
 
26
 *      As a special exception, you have permission to link this program
 
27
 *      with the Oracle Client libraries and distribute executables, as long
 
28
 *      as you follow the requirements of the GNU GPL in regard to all of the
 
29
 *      software in the executable aside from Oracle client libraries.
 
30
 * 
 
31
 *      Specifically you are not permitted to link this program with the
 
32
 *      Qt/UNIX, Qt/Windows or Qt Non Commercial products of TrollTech.
 
33
 *      And you are not permitted to distribute binaries compiled against
 
34
 *      these libraries. 
 
35
 * 
 
36
 *      You may link this product with any GPL'd Qt library.
 
37
 * 
 
38
 * All trademarks belong to their respective owners.
 
39
 *
 
40
 * END_COMMON_COPYRIGHT_HEADER */
 
41
 
 
42
#include <QMessageBox>
 
43
 
 
44
#include "migratetool/sqldeveloper.h"
 
45
#include "migratetool/squirrelsql.h"
 
46
#include "migratetool/tora3.h"
 
47
#include "toconnectionimport.h"
 
48
#include "toconnectionmodel.h"
 
49
 
 
50
 
 
51
 
 
52
toConnectionImport::toConnectionImport(QWidget * parent)
 
53
    : QDialog(parent)
 
54
{
 
55
    setupUi(this);
 
56
    m_tool = toConnectionImport::None;
 
57
    toolComboBox->addItem("None", toConnectionImport::None);
 
58
    toolComboBox->addItem("TOra (1.3.x)",
 
59
                           toConnectionImport::Tora3);
 
60
    toolComboBox->addItem("Oracle SQL Developer (1.5)",
 
61
                           toConnectionImport::OracleSQLDeveloper);
 
62
    toolComboBox->addItem("SquirrelSQL (2.6.x)",
 
63
                           toConnectionImport::SquirrelSQL);
 
64
 
 
65
    toolComboBox_changed(0);
 
66
 
 
67
    availableModel = new toConnectionModel();
 
68
 
 
69
    tableView->setModel(availableModel);
 
70
 
 
71
    connect(toolComboBox, SIGNAL(currentIndexChanged(int)),
 
72
             this, SLOT(toolComboBox_changed(int)));
 
73
    connect(runButton, SIGNAL(clicked()),
 
74
             this, SLOT(refreshAvailable()));
 
75
}
 
76
 
 
77
void toConnectionImport::toolComboBox_changed(int ix)
 
78
{
 
79
    m_tool = (ToolUsed)toolComboBox->itemData(ix).toInt();
 
80
    if (m_tool == toConnectionImport::OracleSQLDeveloper)
 
81
        notificationLabel->setText(tr("Import connections from an XML file.\n"
 
82
                                      "No passwords or options are imported."));
 
83
    else if (m_tool == toConnectionImport::SquirrelSQL)
 
84
        notificationLabel->setText(tr("Import connections from tool config directory."));
 
85
    else if (m_tool == toConnectionImport::Tora3)
 
86
        notificationLabel->setText(tr("Import connections from ~/.torarc"));
 
87
    else
 
88
        notificationLabel->setText(tr("Select one of tools available.\n"
 
89
                                      "Connections could require manual changes after importing."));
 
90
}
 
91
 
 
92
void toConnectionImport::refreshAvailable()
 
93
{
 
94
    if (m_tool == toConnectionImport::None)
 
95
    {
 
96
        QMessageBox::information(this, "TOra",
 
97
                                 "Please select an import tool first.");
 
98
        return;
 
99
    }
 
100
    if (m_tool == toConnectionImport::OracleSQLDeveloper)
 
101
        availableModel->setupData(MigrateTool::sqlDeveloper(this));
 
102
    else if (m_tool == toConnectionImport::SquirrelSQL)
 
103
        availableModel->setupData(MigrateTool::squirrelSql(this));
 
104
    else if (m_tool == toConnectionImport::Tora3)
 
105
        availableModel->setupData(MigrateTool::tora3(this));
 
106
 
 
107
    tableView->resizeColumnsToContents();
 
108
}