summaryrefslogtreecommitdiffstats
path: root/kio/kio/pastedialog.cpp
blob: 480eaaba81944b5b24521fd152353a2d8f6c10c2 (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
/* This file is part of the KDE libraries
   Copyright (C) 2005 David Faure <faure@kde.org>

   This library is free software; you can redistribute it and/or
   modify it under the terms of the GNU Library General Public
   License version 2 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
   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.
*/

#include "pastedialog.h"

#include <klineedit.h>
#include <kmimetype.h>
#include <klocale.h>

#include <tqlayout.h>
#include <tqlabel.h>
#include <tqcombobox.h>
#include <tqapplication.h>
#include <tqclipboard.h>

KIO::PasteDialog::PasteDialog( const TQString &caption, const TQString &label,
                               const TQString &value, const TQStringList& items,
                               TQWidget *parent,
                               bool clipboard )
    : KDialogBase( parent, 0 /*name*/, true, caption, Ok|Cancel, Ok, true )
{
    TQFrame *frame = makeMainWidget();
    TQVBoxLayout *layout = new TQVBoxLayout( frame, 0, spacingHint() );

    m_label = new TQLabel( label, frame );
    layout->addWidget( m_label );

    m_lineEdit = new KLineEdit( value, frame );
    layout->addWidget( m_lineEdit );

    m_lineEdit->setFocus();
    m_label->setBuddy( m_lineEdit );

    layout->addWidget( new TQLabel( i18n( "Data format:" ), frame ) );
    m_comboBox = new TQComboBox( frame );
    m_comboBox->insertStringList( items );
    layout->addWidget( m_comboBox );

    layout->addStretch();

    //connect( m_lineEdit, TQT_SIGNAL( textChanged( const TQString & ) ),
    //    TQT_SLOT( slotEditTextChanged( const TQString & ) ) );
    //connect( this, TQT_SIGNAL( user1Clicked() ), m_lineEdit, TQT_SLOT( clear() ) );

    //slotEditTextChanged( value );
    setMinimumWidth( 350 );

    m_clipboardChanged = false;
    if ( clipboard )
        connect( TQApplication::clipboard(), TQT_SIGNAL( dataChanged() ),
                 this, TQT_SLOT( slotClipboardDataChanged() ) );
}

void KIO::PasteDialog::slotClipboardDataChanged()
{
    m_clipboardChanged = true;
}

TQString KIO::PasteDialog::lineEditText() const
{
    return m_lineEdit->text();
}

int KIO::PasteDialog::comboItem() const
{
    return m_comboBox->currentItem();
}

#include "pastedialog.moc"