Christophe Dumez
17 years ago
6 changed files with 145 additions and 13 deletions
@ -0,0 +1,53 @@
@@ -0,0 +1,53 @@
|
||||
/*
|
||||
* Bittorrent Client using Qt4 and libtorrent. |
||||
* Copyright (C) 2006 Christophe Dumez |
||||
* |
||||
* This program is free software; you can redistribute it and/or |
||||
* modify it under the terms of the GNU General Public License |
||||
* as published by the Free Software Foundation; either version 2 |
||||
* of the License, or (at your option) any later version. |
||||
* |
||||
* This program 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 General Public License for more details. |
||||
* |
||||
* You should have received a copy of the GNU General Public License |
||||
* along with this program; if not, write to the Free Software |
||||
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. |
||||
* |
||||
* Contact : chris@qbittorrent.org |
||||
*/ |
||||
|
||||
#ifndef TRACKERSADDITION_H |
||||
#define TRACKERSADDITION_H |
||||
|
||||
#include <QDialog> |
||||
#include <QStringList> |
||||
#include "ui_trackersAdd.h" |
||||
|
||||
class TrackersAddDlg : public QDialog, private Ui::TrackersAdditionDlg{ |
||||
Q_OBJECT |
||||
|
||||
public: |
||||
TrackersAddDlg(QWidget *parent): QDialog(parent){ |
||||
setupUi(this); |
||||
setAttribute(Qt::WA_DeleteOnClose); |
||||
show(); |
||||
} |
||||
|
||||
~TrackersAddDlg(){} |
||||
|
||||
signals: |
||||
void TrackersToAdd(QStringList trackers); |
||||
|
||||
public slots: |
||||
void on_buttonBox_accepted() { |
||||
QStringList trackers = trackers_list->toPlainText().trimmed().split("\n"); |
||||
if(trackers.size()) { |
||||
emit TrackersToAdd(trackers); |
||||
} |
||||
} |
||||
}; |
||||
|
||||
#endif |
@ -0,0 +1,73 @@
@@ -0,0 +1,73 @@
|
||||
<ui version="4.0" > |
||||
<class>TrackersAdditionDlg</class> |
||||
<widget class="QDialog" name="TrackersAdditionDlg" > |
||||
<property name="geometry" > |
||||
<rect> |
||||
<x>0</x> |
||||
<y>0</y> |
||||
<width>367</width> |
||||
<height>201</height> |
||||
</rect> |
||||
</property> |
||||
<property name="windowTitle" > |
||||
<string>Trackers addition dialog</string> |
||||
</property> |
||||
<layout class="QVBoxLayout" name="verticalLayout" > |
||||
<item> |
||||
<widget class="QLabel" name="label" > |
||||
<property name="text" > |
||||
<string>List of trackers to add (one per line):</string> |
||||
</property> |
||||
</widget> |
||||
</item> |
||||
<item> |
||||
<widget class="QTextEdit" name="trackers_list" /> |
||||
</item> |
||||
<item> |
||||
<widget class="QDialogButtonBox" name="buttonBox" > |
||||
<property name="orientation" > |
||||
<enum>Qt::Horizontal</enum> |
||||
</property> |
||||
<property name="standardButtons" > |
||||
<set>QDialogButtonBox::Cancel|QDialogButtonBox::Ok</set> |
||||
</property> |
||||
</widget> |
||||
</item> |
||||
</layout> |
||||
</widget> |
||||
<resources/> |
||||
<connections> |
||||
<connection> |
||||
<sender>buttonBox</sender> |
||||
<signal>accepted()</signal> |
||||
<receiver>TrackersAdditionDlg</receiver> |
||||
<slot>accept()</slot> |
||||
<hints> |
||||
<hint type="sourcelabel" > |
||||
<x>248</x> |
||||
<y>254</y> |
||||
</hint> |
||||
<hint type="destinationlabel" > |
||||
<x>157</x> |
||||
<y>274</y> |
||||
</hint> |
||||
</hints> |
||||
</connection> |
||||
<connection> |
||||
<sender>buttonBox</sender> |
||||
<signal>rejected()</signal> |
||||
<receiver>TrackersAdditionDlg</receiver> |
||||
<slot>reject()</slot> |
||||
<hints> |
||||
<hint type="sourcelabel" > |
||||
<x>316</x> |
||||
<y>260</y> |
||||
</hint> |
||||
<hint type="destinationlabel" > |
||||
<x>286</x> |
||||
<y>274</y> |
||||
</hint> |
||||
</hints> |
||||
</connection> |
||||
</connections> |
||||
</ui> |
Loading…
Reference in new issue