~ubuntu-branches/ubuntu/lucid/kdebase/lucid

« back to all changes in this revision

Viewing changes to kcontrol/kio/uagentproviderdlg.cpp

  • Committer: Bazaar Package Importer
  • Author(s): Ana Beatriz Guerrero Lopez
  • Date: 2009-04-05 05:22:13 UTC
  • mfrom: (0.4.2 experimental) (0.2.2 upstream)
  • mto: This revision was merged to the branch mainline in revision 235.
  • Revision ID: james.westby@ubuntu.com-20090405052213-39thr4l6p2ss07uj
Tags: 4:4.2.2-1
* New upstream release:
  - khtml fixes. (Closes: #290285, #359680)
  - Default konsole sessions can be deleted. (Closes: #286342)
  - Tag widget uses standard application palette. (Closes: #444800)
  - ... and surely many more but we have lost track...

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
/**
2
 
 * Copyright (c) 2001 Dawit Alemayehu <adawit@kde.org>
3
 
 *
4
 
 *  This program is free software; you can redistribute it and/or modify
5
 
 *  it under the terms of the GNU General Public License as published by
6
 
 *  the Free Software Foundation; either version 2 of the License, or
7
 
 *  (at your option) any later version.
8
 
 *
9
 
 *  This program is distributed in the hope that it will be useful,
10
 
 *  but WITHOUT ANY WARRANTY; without even the implied warranty of
11
 
 *  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
12
 
 *  GNU General Public License for more details.
13
 
 *
14
 
 *  You should have received a copy of the GNU General Public License
15
 
 *  along with this program; if not, write to the Free Software
16
 
 *  Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA  02110-1301, USA.
17
 
 */
18
 
 
19
 
#include <qlabel.h>
20
 
#include <qlayout.h>
21
 
#include <qlistbox.h>
22
 
#include <qwhatsthis.h>
23
 
#include <qpushbutton.h>
24
 
 
25
 
#include <kdebug.h>
26
 
#include <klocale.h>
27
 
#include <kcombobox.h>
28
 
#include <klineedit.h>
29
 
#include <kurllabel.h>
30
 
 
31
 
#include "fakeuaprovider.h"
32
 
#include "uagentproviderdlg.h"
33
 
#include "uagentproviderdlg_ui.h"
34
 
 
35
 
UALineEdit::UALineEdit( QWidget *parent, const char *name )
36
 
           :KLineEdit( parent, name )
37
 
{
38
 
  // For now do not accept any drops since they might contain
39
 
  // characters we do not accept.
40
 
  // TODO: Re-implement ::dropEvent to allow acceptable formats...
41
 
  setAcceptDrops( false );
42
 
}
43
 
 
44
 
void UALineEdit::keyPressEvent( QKeyEvent* e )
45
 
{
46
 
  int key = e->key();
47
 
  QString keycode = e->text();
48
 
  if ( (key >= Qt::Key_Escape && key <= Qt::Key_Help) || key == Qt::Key_Period ||
49
 
       (cursorPosition() > 0 && key == Qt::Key_Minus) ||
50
 
       (!keycode.isEmpty() && keycode.unicode()->isLetterOrNumber()) )
51
 
  {
52
 
    KLineEdit::keyPressEvent(e);
53
 
    return;
54
 
  }
55
 
  e->accept();
56
 
}
57
 
 
58
 
UAProviderDlg::UAProviderDlg( const QString& caption, QWidget *parent,
59
 
                              FakeUASProvider* provider, const char *name )
60
 
              :KDialog(parent, name, true), m_provider(provider)
61
 
{
62
 
  setCaption ( caption );
63
 
 
64
 
  QVBoxLayout* mainLayout = new QVBoxLayout(this, 0, 0);
65
 
 
66
 
  dlg = new UAProviderDlgUI (this);
67
 
  mainLayout->addWidget(dlg);
68
 
  //dlg->leIdentity->setEnableSqueezedText( true );
69
 
 
70
 
  if (!m_provider)
71
 
  {
72
 
    setEnabled( false );
73
 
    return;
74
 
  }
75
 
 
76
 
  init();
77
 
}
78
 
 
79
 
UAProviderDlg::~UAProviderDlg()
80
 
{
81
 
}
82
 
 
83
 
void UAProviderDlg::init()
84
 
{
85
 
  connect( dlg->pbOk, SIGNAL(clicked()), SLOT(accept()) );
86
 
  connect( dlg->pbCancel, SIGNAL(clicked()), SLOT(reject()) );
87
 
 
88
 
  connect( dlg->leSite, SIGNAL(textChanged(const QString&)),
89
 
                SLOT(slotTextChanged( const QString&)) );
90
 
 
91
 
  connect( dlg->cbAlias, SIGNAL(activated(const QString&)),
92
 
                SLOT(slotActivated(const QString&)) );
93
 
 
94
 
  dlg->cbAlias->clear();
95
 
  dlg->cbAlias->insertStringList( m_provider->userAgentAliasList() );
96
 
  dlg->cbAlias->insertItem( "", 0 );
97
 
  dlg->cbAlias->listBox()->sort();
98
 
 
99
 
  dlg->leSite->setFocus();
100
 
}
101
 
 
102
 
void UAProviderDlg::slotActivated( const QString& text )
103
 
{
104
 
  if ( text.isEmpty() )
105
 
    dlg->leIdentity->setText( "" );
106
 
  else
107
 
    dlg->leIdentity->setText( m_provider->agentStr(text) );
108
 
 
109
 
  dlg->pbOk->setEnabled( (!dlg->leSite->text().isEmpty() && !text.isEmpty()) );
110
 
}
111
 
 
112
 
void UAProviderDlg::slotTextChanged( const QString& text )
113
 
{
114
 
  dlg->pbOk->setEnabled( (!text.isEmpty() && !dlg->cbAlias->currentText().isEmpty()) );
115
 
}
116
 
 
117
 
void UAProviderDlg::setSiteName( const QString& text )
118
 
{
119
 
  dlg->leSite->setText( text );
120
 
}
121
 
 
122
 
void UAProviderDlg::setIdentity( const QString& text )
123
 
{
124
 
  int id = dlg->cbAlias->listBox()->index( dlg->cbAlias->listBox()->findItem(text) );
125
 
  dlg->cbAlias->setCurrentItem( id );
126
 
  slotActivated( dlg->cbAlias->currentText() );
127
 
  if ( !dlg->leSite->isEnabled() )
128
 
    dlg->cbAlias->setFocus();
129
 
}
130
 
 
131
 
QString UAProviderDlg::siteName()
132
 
{
133
 
  QString site_name=dlg->leSite->text().lower();
134
 
  site_name = site_name.remove( "https://" );
135
 
  site_name = site_name.remove( "http://" );
136
 
  return site_name;
137
 
}
138
 
 
139
 
QString UAProviderDlg::identity()
140
 
{
141
 
  return dlg->cbAlias->currentText();
142
 
}
143
 
 
144
 
QString UAProviderDlg::alias()
145
 
{
146
 
  return dlg->leIdentity->text();
147
 
}
148
 
 
149
 
#include "uagentproviderdlg.moc"