Compare commits
	
		
			39 Commits
		
	
	
		
			v3_0_x
			...
			release-2.
		
	
	| Author | SHA1 | Date | |
|---|---|---|---|
| 
						 | 
					6452a6ec93 | ||
| 
						 | 
					f845acb207 | ||
| 
						 | 
					f42eec5ad9 | ||
| 
						 | 
					ec1a06d7c8 | ||
| 
						 | 
					e9b6a726e3 | ||
| 
						 | 
					a3f54fc3b9 | ||
| 
						 | 
					10f58b4eed | ||
| 
						 | 
					52fef5ac38 | ||
| 
						 | 
					4d0cdea1c9 | ||
| 
						 | 
					86ca755dfe | ||
| 
						 | 
					659664509a | ||
| 
						 | 
					412f947db5 | ||
| 
						 | 
					ad47565b93 | ||
| 
						 | 
					89175ea827 | ||
| 
						 | 
					8dc34463e3 | ||
| 
						 | 
					cab38857d1 | ||
| 
						 | 
					14db21c241 | ||
| 
						 | 
					975ab9ad64 | ||
| 
						 | 
					b810278452 | ||
| 
						 | 
					86ac0a430e | ||
| 
						 | 
					78a0f34645 | ||
| 
						 | 
					3ae09658c9 | ||
| 
						 | 
					7d9caad31e | ||
| 
						 | 
					c9c627dec2 | ||
| 
						 | 
					5b104cdd9b | ||
| 
						 | 
					8f667dce5c | ||
| 
						 | 
					89412e5050 | ||
| 
						 | 
					63c121ecc7 | ||
| 
						 | 
					33b60779d6 | ||
| 
						 | 
					26b2367833 | ||
| 
						 | 
					9b40a036a7 | ||
| 
						 | 
					d4cc0e9e4a | ||
| 
						 | 
					ca802a6233 | ||
| 
						 | 
					35394c4966 | ||
| 
						 | 
					077dd11af6 | ||
| 
						 | 
					a5c9c8d670 | ||
| 
						 | 
					1ef0bcbc06 | ||
| 
						 | 
					e15eab9b6a | ||
| 
						 | 
					8f1c56babd | 
							
								
								
									
										14
									
								
								.gitignore
									
									
									
									
										vendored
									
									
								
							
							
						
						@@ -1,14 +0,0 @@
 | 
				
			|||||||
src/geoip/GeoIP.dat
 | 
					 | 
				
			||||||
src/qbittorrent
 | 
					 | 
				
			||||||
qbittorrent.pro.user
 | 
					 | 
				
			||||||
conf.pri
 | 
					 | 
				
			||||||
Makefile
 | 
					 | 
				
			||||||
*.pyc
 | 
					 | 
				
			||||||
*.log
 | 
					 | 
				
			||||||
# Compiled object files
 | 
					 | 
				
			||||||
*.o
 | 
					 | 
				
			||||||
# Generated MOC, resource and UI files
 | 
					 | 
				
			||||||
moc_*.cpp
 | 
					 | 
				
			||||||
qrc_*.cpp
 | 
					 | 
				
			||||||
ui_*.h
 | 
					 | 
				
			||||||
*.moc
 | 
					 | 
				
			||||||
							
								
								
									
										53
									
								
								.travis.yml
									
									
									
									
									
								
							
							
						
						@@ -1,53 +0,0 @@
 | 
				
			|||||||
language:
 | 
					 | 
				
			||||||
  - cpp
 | 
					 | 
				
			||||||
 | 
					 | 
				
			||||||
env:
 | 
					 | 
				
			||||||
  # use libtorrent 0.15.10
 | 
					 | 
				
			||||||
  - lt_source=from_dist gui=true
 | 
					 | 
				
			||||||
  - lt_source=from_dist gui=false
 | 
					 | 
				
			||||||
  # use libtorrent 0.16.X from RC_0_16 svn branch
 | 
					 | 
				
			||||||
  - lt_source=from_svn gui=true
 | 
					 | 
				
			||||||
  - lt_source=from_svn gui=false
 | 
					 | 
				
			||||||
 | 
					 | 
				
			||||||
branches:
 | 
					 | 
				
			||||||
  except:
 | 
					 | 
				
			||||||
    - search_encoding_windows
 | 
					 | 
				
			||||||
    - v2_9_x
 | 
					 | 
				
			||||||
 | 
					 | 
				
			||||||
notifications:
 | 
					 | 
				
			||||||
  email:
 | 
					 | 
				
			||||||
    on_success: change
 | 
					 | 
				
			||||||
    on_failure: change 
 | 
					 | 
				
			||||||
 | 
					 | 
				
			||||||
before_install:
 | 
					 | 
				
			||||||
  - shopt -s expand_aliases
 | 
					 | 
				
			||||||
  - alias sudo="sudo "
 | 
					 | 
				
			||||||
  # Using nprocs/2 sometimes may fail (gcc is killed by system), just use two threads
 | 
					 | 
				
			||||||
  - alias make="colormake -j2 "
 | 
					 | 
				
			||||||
 | 
					 | 
				
			||||||
  # Also setup a virtual display for after_success target when gui == true
 | 
					 | 
				
			||||||
  - if ! $gui; then qbtconf="$qbtconf --disable-gui"; else export "DISPLAY=:99.0" && /sbin/start-stop-daemon --start --quiet --pidfile /tmp/custom_xvfb_99.pid --make-pidfile --background --exec /usr/bin/Xvfb -- :99 -ac -screen 0 1280x1024x16 ; fi
 | 
					 | 
				
			||||||
  - ltconf=" --with-libgeoip=system"
 | 
					 | 
				
			||||||
 | 
					 | 
				
			||||||
  - echo settings
 | 
					 | 
				
			||||||
  - echo $lt_source
 | 
					 | 
				
			||||||
  - echo $ltconf
 | 
					 | 
				
			||||||
  - echo $gui
 | 
					 | 
				
			||||||
  - echo $qbtconf
 | 
					 | 
				
			||||||
 | 
					 | 
				
			||||||
  - sudo apt-get -qq update
 | 
					 | 
				
			||||||
  # Travis can stall during heavy load if these packages are installed in one step - split the command
 | 
					 | 
				
			||||||
  - sudo apt-get -qq install debhelper qconf colormake libssl-dev libgeoip-dev
 | 
					 | 
				
			||||||
  - sudo apt-get -qq install libboost-dev libboost-filesystem-dev libboost-system-dev
 | 
					 | 
				
			||||||
  - sudo apt-get -qq install libqt4-dev 
 | 
					 | 
				
			||||||
 | 
					 | 
				
			||||||
install:
 | 
					 | 
				
			||||||
  - if [[ "$lt_source" == "from_dist" ]]; then sudo apt-get -qq install libtorrent-rasterbar-dev; fi
 | 
					 | 
				
			||||||
  - if [[ "$lt_source" == "from_svn" ]]; then cd .. && svn co svn://svn.code.sf.net/p/libtorrent/code/branches/RC_0_16 ./libtorrent && (cd libtorrent && ./autotool.sh && ./configure $ltconf && sudo make install) && sudo ldconfig /usr/local/lib && cd $TRAVIS_BUILD_DIR ; fi
 | 
					 | 
				
			||||||
 | 
					 | 
				
			||||||
script:
 | 
					 | 
				
			||||||
  - qt-qconf
 | 
					 | 
				
			||||||
  - ./configure $qbtconf && sudo make install
 | 
					 | 
				
			||||||
  
 | 
					 | 
				
			||||||
after_success:
 | 
					 | 
				
			||||||
  - if $gui ; then qbittorrent --version ; else qbittorrent-nox --version ; fi
 | 
					 | 
				
			||||||
							
								
								
									
										50
									
								
								AUTHORS
									
									
									
									
									
								
							
							
						
						@@ -1,26 +1,13 @@
 | 
				
			|||||||
Current maintainer:
 | 
					Author:
 | 
				
			||||||
* Sledgehammer999 <sledgehammer999@qbittorrent.org>
 | 
					 | 
				
			||||||
 | 
					 | 
				
			||||||
Original author:
 | 
					 | 
				
			||||||
* Christophe Dumez <chris@qbittorrent.org>
 | 
					* Christophe Dumez <chris@qbittorrent.org>
 | 
				
			||||||
 | 
					
 | 
				
			||||||
Contributors:
 | 
					Contributors:
 | 
				
			||||||
* Vladimir Golovnev <glassez@yandex.ru>
 | 
					 | 
				
			||||||
* Stefanos Antaris <santaris@csd.auth.gr>
 | 
					* Stefanos Antaris <santaris@csd.auth.gr>
 | 
				
			||||||
* Mohammad Dib <mdib@qbittorrent.org>
 | 
					 | 
				
			||||||
* Mirco Chinelli <infinity89@fastwebmail.it>
 | 
					 | 
				
			||||||
* Ishan Arora <ishan@qbittorrent.org>
 | 
					* Ishan Arora <ishan@qbittorrent.org>
 | 
				
			||||||
* Arnaud Demaizière <arnaud@qbittorrent.org>
 | 
					* Arnaud Demaizière <arnaud@qbittorrent.org>
 | 
				
			||||||
* Grigis Gaëtan <cipher16@gmail.com>
 | 
					* Grigis Gaëtan <cipher16@gmail.com>
 | 
				
			||||||
* Christian Kandeler <zambesi@users.sourceforge.net>
 | 
					 | 
				
			||||||
* Silvan Scherrer <silvan.scherrer@aroa.ch>
 | 
					 | 
				
			||||||
* Nick Tiskov <daymansmail@gmail.com>
 | 
					 | 
				
			||||||
 | 
					
 | 
				
			||||||
Code from other projects:
 | 
					Code from other projects:
 | 
				
			||||||
* files src/qtsingleapp/* src/lineedit/*
 | 
					 | 
				
			||||||
  copyright: Nokia Corporation
 | 
					 | 
				
			||||||
  license: LGPL
 | 
					 | 
				
			||||||
 | 
					 | 
				
			||||||
* files src/ico.cpp src/ico.h
 | 
					* files src/ico.cpp src/ico.h
 | 
				
			||||||
  copyright: Malte Starostik <malte@kde.org>
 | 
					  copyright: Malte Starostik <malte@kde.org>
 | 
				
			||||||
  license: LGPL
 | 
					  license: LGPL
 | 
				
			||||||
@@ -29,10 +16,6 @@ Code from other projects:
 | 
				
			|||||||
  copyright: Dan Haim <negativeiq@users.sourceforge.net>
 | 
					  copyright: Dan Haim <negativeiq@users.sourceforge.net>
 | 
				
			||||||
  license: BSD
 | 
					  license: BSD
 | 
				
			||||||
 | 
					
 | 
				
			||||||
* file src/stacktrace_win.h
 | 
					 | 
				
			||||||
  copyright: Quassel Project
 | 
					 | 
				
			||||||
  license: GPLv2/3
 | 
					 | 
				
			||||||
 | 
					 | 
				
			||||||
Images Authors:
 | 
					Images Authors:
 | 
				
			||||||
* files: src/Icons/*.png
 | 
					* files: src/Icons/*.png
 | 
				
			||||||
  copyright: Gnome Icon Theme
 | 
					  copyright: Gnome Icon Theme
 | 
				
			||||||
@@ -45,9 +28,9 @@ Images Authors:
 | 
				
			|||||||
  url: http://www.oxygen-icons.org
 | 
					  url: http://www.oxygen-icons.org
 | 
				
			||||||
 | 
					
 | 
				
			||||||
* files: src/Icons/flags/*.png
 | 
					* files: src/Icons/flags/*.png
 | 
				
			||||||
  copyright: Mark James <mjames@gmail.com>
 | 
					  copyright: Open Clip Art Library
 | 
				
			||||||
  license: Public Domain
 | 
					  license: Creative Commons Public Domain Dedication
 | 
				
			||||||
  url: http://www.famfamfam.com
 | 
					  url: http://www.openclipart.org
 | 
				
			||||||
 | 
					
 | 
				
			||||||
* files: src/Icons/skin/*.png
 | 
					* files: src/Icons/skin/*.png
 | 
				
			||||||
  files: src/menuicons/YYxYY/*.png
 | 
					  files: src/menuicons/YYxYY/*.png
 | 
				
			||||||
@@ -58,10 +41,6 @@ Images Authors:
 | 
				
			|||||||
  copyright: Greg Houston <gregory.houston@gmail.com>
 | 
					  copyright: Greg Houston <gregory.houston@gmail.com>
 | 
				
			||||||
  license: MIT
 | 
					  license: MIT
 | 
				
			||||||
 | 
					
 | 
				
			||||||
* file: src/Icons/skin/qbittorrent_mono*
 | 
					 | 
				
			||||||
  copyright: Daniel Eguren <deguren@gmail.com>
 | 
					 | 
				
			||||||
  license: LGPL
 | 
					 | 
				
			||||||
 | 
					 | 
				
			||||||
* file: src/search_engine/engines/btjunkie.png
 | 
					* file: src/search_engine/engines/btjunkie.png
 | 
				
			||||||
  copyright: Downloaded from btjunkie.org
 | 
					  copyright: Downloaded from btjunkie.org
 | 
				
			||||||
 | 
					
 | 
				
			||||||
@@ -80,33 +59,24 @@ Images Authors:
 | 
				
			|||||||
Translations authors:
 | 
					Translations authors:
 | 
				
			||||||
* files: src/lang/*.ts
 | 
					* files: src/lang/*.ts
 | 
				
			||||||
  copyright:
 | 
					  copyright:
 | 
				
			||||||
  - Arabic: SDERAWI (abz8868@msn.com) and sn51234 (nesseyan@gmail.com)
 | 
					 | 
				
			||||||
  - Armenian: Hrant Ohanyan (hrantohanyan@mail.am)
 | 
					 | 
				
			||||||
  - Basque: Xabier Aramendi (azpidatziak@gmail.com)
 | 
					 | 
				
			||||||
  - Belarusian: Mihas Varantsou (meequz@gmail.com)
 | 
					 | 
				
			||||||
  - Brazilian: Nick Marinho (nickmarinho@gmail.com)
 | 
					  - Brazilian: Nick Marinho (nickmarinho@gmail.com)
 | 
				
			||||||
  - Bulgarian: Tsvetan & Boyko Bankoff (emerge_life@users.sourceforge.net)
 | 
					  - Bulgarian: Tsvetan & Boiko Bankov (emerge_life@users.sourceforge.net)
 | 
				
			||||||
  - Catalan: Francisco Luque Contreras (frannoe@ya.com)
 | 
					  - Catalan: Francisco Luque Contreras (frannoe@ya.com)
 | 
				
			||||||
  - Chinese (Simplified): Guo Yue (yue.guo0418@gmail.com)
 | 
					  - Chinese (Simplified): Guo Yue (yue.guo0418@gmail.com)
 | 
				
			||||||
  - Chinese (Traditional): Yi-Shun Wang (dnextstep@gmail.com)
 | 
					  - Chinese (Traditional): Yi-Shun Wang (dnextstep@gmail.com)
 | 
				
			||||||
  - Croatian: Oliver Mucafir (oliver.untwist@gmail.com)
 | 
					 | 
				
			||||||
  - Czech: Jirka Vilim (web@tets.cz)
 | 
					  - Czech: Jirka Vilim (web@tets.cz)
 | 
				
			||||||
  - Danish: Mathias Nielsen (comoneo@gmail.com)
 | 
					  - Danish: Mathias Nielsen (comoneo@gmail.com)
 | 
				
			||||||
  - Dutch: Pieter Heyvaert (pieter_heyvaert@hotmail.com)
 | 
					  - Dutch: Joost Schipper (heavyjoost@users.sourceforge.net)
 | 
				
			||||||
  - English: Christophe Dumez (chris@qbittorrent.org)
 | 
					  - English: Christophe Dumez (chris@qbittorrent.org)
 | 
				
			||||||
  - Finnish: Niklas Laxström (nikerabbit@users.sourceforge.net)
 | 
					  - Finnish: Niklas Laxström (nikerabbit@users.sourceforge.net)
 | 
				
			||||||
  - French: Christophe Dumez (chris@qbittorrent.org)
 | 
					  - French: Christophe Dumez (chris@qbittorrent.org)
 | 
				
			||||||
  - Galician: Marcos Lans (marcoslansgarza@gmail.com)
 | 
					 | 
				
			||||||
  - Georgian: Beqa Arabuli (arabulibeqa@yahoo.com)
 | 
					 | 
				
			||||||
  - German: Niels Hoffmann (zentralmaschine@users.sourceforge.net)
 | 
					  - German: Niels Hoffmann (zentralmaschine@users.sourceforge.net)
 | 
				
			||||||
  - Greek: Tsvetan Bankov (emerge_life@users.sourceforge.net) and Stephanos Antaris (santaris@csd.auth.gr)
 | 
					  - Greek: Tsvetan Bankov (emerge_life@users.sourceforge.net) and Stephanos Antaris (santaris@csd.auth.gr)
 | 
				
			||||||
  - Hebrew: David Deutsch (d.deffo@gmail.com)
 | 
					 | 
				
			||||||
  - Hungarian: Majoros Péter (majoros.j.p@t-online.hu)
 | 
					  - Hungarian: Majoros Péter (majoros.j.p@t-online.hu)
 | 
				
			||||||
  - Italian: bovirus (bovirus@live.it) and Matteo Sechi (bu17714@gmail.com)
 | 
					  - Italian: Mirko Ferrari (mirkoferrari@gmail.com) and Ferraro Luciano (luciano.ferraro@gmail.com)
 | 
				
			||||||
  - Japanese: Masato Hashimoto (cabezon.hashimoto@gmail.com)
 | 
					  - Japanese: Nardog (alphisation@gmail.com)
 | 
				
			||||||
  - Korean: Jin Woo Sin (jin828sin@users.sourceforge.net)
 | 
					  - Korean: Jin Woo Sin (jin828sin@users.sourceforge.net)
 | 
				
			||||||
  - Lithuanian: Naglis Jonaitis (njonaitis@gmail.com)
 | 
					  - Norwegian: Lars-Erik Labori (hamil@users.sourceforge.net)
 | 
				
			||||||
  - Norwegian: Tomaso
 | 
					 | 
				
			||||||
  - Polish: Mariusz Fik (fisiu@opensuse.org)
 | 
					  - Polish: Mariusz Fik (fisiu@opensuse.org)
 | 
				
			||||||
  - Portuguese: Nick Marinho (nickmarinho@gmail.com)
 | 
					  - Portuguese: Nick Marinho (nickmarinho@gmail.com)
 | 
				
			||||||
  - Romanian: Obada Denis (obadadenis@users.sourceforge.net)
 | 
					  - Romanian: Obada Denis (obadadenis@users.sourceforge.net)
 | 
				
			||||||
@@ -116,5 +86,5 @@ Translations authors:
 | 
				
			|||||||
  - Spanish: Francisco Luque Contreras (frannoe@ya.com)
 | 
					  - Spanish: Francisco Luque Contreras (frannoe@ya.com)
 | 
				
			||||||
  - Swedish: Daniel Nylander (po@danielnylander.se)
 | 
					  - Swedish: Daniel Nylander (po@danielnylander.se)
 | 
				
			||||||
  - Turkish: Hasan Yilmaz (iletisim@hedefturkce.com)
 | 
					  - Turkish: Hasan Yilmaz (iletisim@hedefturkce.com)
 | 
				
			||||||
  - Ukrainian: Oleh Prypin (blaxpirit@gmail.com)
 | 
					  - Ukrainian: Andrey Shpachenko (masterfix@users.sourceforge.net)
 | 
				
			||||||
  license: GPLv2
 | 
					  license: GPLv2
 | 
				
			||||||
 
 | 
				
			|||||||
							
								
								
									
										16
									
								
								INSTALL
									
									
									
									
									
								
							
							
						
						@@ -10,23 +10,23 @@ qBittorrent - A BitTorrent client in C++ / Qt4
 | 
				
			|||||||
  will install and execute qBittorrent hopefully without any problems.
 | 
					  will install and execute qBittorrent hopefully without any problems.
 | 
				
			||||||
 | 
					
 | 
				
			||||||
  Dependencies:
 | 
					  Dependencies:
 | 
				
			||||||
    - Qt >= 4.6.0 (libqtgui, libqtcore, libqtnetwork, libqtxml, libqtdbus/optional)
 | 
					    - Qt >= 4.4.0 (libqt-devel, libqtgui, libqtcore, libqtnetwork, libqtxml)
 | 
				
			||||||
 | 
					
 | 
				
			||||||
    - pkg-config executable
 | 
					    - pkg-config executable
 | 
				
			||||||
 | 
					
 | 
				
			||||||
    - libtorrent-rasterbar by Arvid Norberg (>= 0.15.0)
 | 
					    - libtorrent-rasterbar by Arvid Norberg (>= 0.14.4 REQUIRED, >= v0.15.0 ADVISED)
 | 
				
			||||||
        -> http://www.libtorrent.net
 | 
					        -> http://www.libtorrent.net
 | 
				
			||||||
        Be careful: another library (the one used by rTorrent) uses a similar name.
 | 
					        Be careful: another library (the one used by rTorrent) uses a similar name.
 | 
				
			||||||
 | 
					
 | 
				
			||||||
    - libboost 1.34.x (libboost-filesystem°) + libasio
 | 
					    - libboost: libboost-filesystem, libboost-date-time, libboost-thread, libboost-serialization
 | 
				
			||||||
      or
 | 
					 | 
				
			||||||
    - libboost >= 1.35.x (libboost-system, libboost-filesystem°)
 | 
					 | 
				
			||||||
      
 | 
					 | 
				
			||||||
    °libboost-filesystem is not needed if libtorrent-rasterbar >= v0.16.x is used
 | 
					 | 
				
			||||||
 | 
					
 | 
				
			||||||
    - python >= 2.3 (needed by search engine)
 | 
					    - python >= 2.3 (needed by search engine)
 | 
				
			||||||
        * Run time only dependency
 | 
					        * Run time only dependency
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					    - libnotify >= 0.4.2, glib-2.0 (optional)
 | 
				
			||||||
 | 
					        * Can be used for system notifications to replace standard Qt notifications
 | 
				
			||||||
 | 
					          so that it integrates better into the Desktop
 | 
				
			||||||
 | 
					
 | 
				
			||||||
    - geoip-database (optional)
 | 
					    - geoip-database (optional)
 | 
				
			||||||
        * If qBittorrent cannot find this database, it will try to resolve countries using the Internet but it will be a lot slower.
 | 
					        * If qBittorrent cannot find this database, it will try to resolve countries using the Internet but it will be a lot slower.
 | 
				
			||||||
        * Run time only dependency
 | 
					        * Run time only dependency
 | 
				
			||||||
@@ -44,7 +44,7 @@ qBittorrent - A BitTorrent client in C++ / Qt4
 | 
				
			|||||||
 | 
					
 | 
				
			||||||
    - pkg-config executable
 | 
					    - pkg-config executable
 | 
				
			||||||
 | 
					
 | 
				
			||||||
    - libtorrent-rasterbar by Arvid Norberg (>= v0.15.0)
 | 
					    - libtorrent-rasterbar by Arvid Norberg (>= 0.14.4 REQUIRED, >= v0.15.0 ADVISED)
 | 
				
			||||||
        -> http://www.libtorrent.net
 | 
					        -> http://www.libtorrent.net
 | 
				
			||||||
        Be careful: another library (the one used by rTorrent) uses a similar name.
 | 
					        Be careful: another library (the one used by rTorrent) uses a similar name.
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 
 | 
				
			|||||||
							
								
								
									
										74
									
								
								README.os2
									
									
									
									
									
								
							
							
						
						@@ -1,74 +0,0 @@
 | 
				
			|||||||
qBittorrent - A BitTorrent client in Qt4
 | 
					 | 
				
			||||||
------------------------------------------
 | 
					 | 
				
			||||||
 | 
					 | 
				
			||||||
This is the eComStation (OS/2) qBittorrent part of the readme. See also README for more general information.
 | 
					 | 
				
			||||||
 | 
					 | 
				
			||||||
 | 
					 | 
				
			||||||
Building qBittorrent
 | 
					 | 
				
			||||||
********************
 | 
					 | 
				
			||||||
 | 
					 | 
				
			||||||
 | 
					 | 
				
			||||||
Requirements
 | 
					 | 
				
			||||||
============
 | 
					 | 
				
			||||||
 | 
					 | 
				
			||||||
- gcc based build env (recommended gcc v4.4.2 or greater)
 | 
					 | 
				
			||||||
  
 | 
					 | 
				
			||||||
- Qt4 for eCS (OS/2) dev package (see http://svn.netlabs.org/qt4 for more information)
 | 
					 | 
				
			||||||
 | 
					 | 
				
			||||||
- libtorrent-rasterbar for eCS (OS/2) port (see http://svn.netlabs.org/ports for more information)
 | 
					 | 
				
			||||||
 | 
					 | 
				
			||||||
- boost for eCS (OS/2) port (see http://svn.netlabs.org/ports for more information)
 | 
					 | 
				
			||||||
 | 
					 | 
				
			||||||
 | 
					 | 
				
			||||||
How to build
 | 
					 | 
				
			||||||
============
 | 
					 | 
				
			||||||
 | 
					 | 
				
			||||||
First you need to create the conf.pri file in the same dir as this readme.os2 is.
 | 
					 | 
				
			||||||
the conf.pri file has the following content:
 | 
					 | 
				
			||||||
 | 
					 | 
				
			||||||
##### conf.pri content beginn #####
 | 
					 | 
				
			||||||
BINDIR = ./bin
 | 
					 | 
				
			||||||
INCDIR = ./include
 | 
					 | 
				
			||||||
LIBDIR = ./lib
 | 
					 | 
				
			||||||
DATADIR = ./share
 | 
					 | 
				
			||||||
 | 
					 | 
				
			||||||
CONFIG += staticlib
 | 
					 | 
				
			||||||
INCLUDEPATH += x:/trees/libtorrent/trunk/include
 | 
					 | 
				
			||||||
LIBS += -Lx:/trees/libtorrent/trunk/src/.libs \
 | 
					 | 
				
			||||||
        -Lx:/trees/boost/trunk/stage/lib \
 | 
					 | 
				
			||||||
        -Lx:/trees/openssl \
 | 
					 | 
				
			||||||
	-Lx:/extras/lib
 | 
					 | 
				
			||||||
##### conf.pri content end #####
 | 
					 | 
				
			||||||
 | 
					 | 
				
			||||||
Of course all the above path references have to be adjusted to your build env.
 | 
					 | 
				
			||||||
 | 
					 | 
				
			||||||
Now you can either do a normal build or a shadow build. A shadow build has the
 | 
					 | 
				
			||||||
advantage that no created files are in the same dir as the sources are.
 | 
					 | 
				
			||||||
 | 
					 | 
				
			||||||
For a normal build do the following:
 | 
					 | 
				
			||||||
 | 
					 | 
				
			||||||
Simply type:
 | 
					 | 
				
			||||||
$ qmake
 | 
					 | 
				
			||||||
 | 
					 | 
				
			||||||
Followed by:
 | 
					 | 
				
			||||||
$ make
 | 
					 | 
				
			||||||
 | 
					 | 
				
			||||||
For a shadow build do the following:
 | 
					 | 
				
			||||||
given your sources are in x:\trees\qbittorrent\trunk create a 
 | 
					 | 
				
			||||||
x:\trees\qbittorrent\build directory
 | 
					 | 
				
			||||||
 | 
					 | 
				
			||||||
Now switch to the created directory and type:
 | 
					 | 
				
			||||||
$ qmake ..\trunk
 | 
					 | 
				
			||||||
 | 
					 | 
				
			||||||
Followed by:
 | 
					 | 
				
			||||||
$ make
 | 
					 | 
				
			||||||
 | 
					 | 
				
			||||||
If all works fine you should get a working qbittorrent executable.
 | 
					 | 
				
			||||||
 | 
					 | 
				
			||||||
If you have any question regarding the eCS (OS/2) port of qBittorrent you can meet me (_diver) on IRC:
 | 
					 | 
				
			||||||
#netlabs on irc.freenode.net
 | 
					 | 
				
			||||||
 | 
					 | 
				
			||||||
------------------------------------------
 | 
					 | 
				
			||||||
Silvan Scherrer <silvan.scherrer@aroa.ch>
 | 
					 | 
				
			||||||
 | 
					 | 
				
			||||||
 | 
					 | 
				
			||||||
							
								
								
									
										187
									
								
								install.os2
									
									
									
									
									
								
							
							
						
						@@ -1,187 +0,0 @@
 | 
				
			|||||||
QBittorrent installation
 | 
					 | 
				
			||||||
 | 
					 | 
				
			||||||
 | 
					 | 
				
			||||||
 | 
					 | 
				
			||||||
0. CONTENTS OF THIS FILE
 | 
					 | 
				
			||||||
========================
 | 
					 | 
				
			||||||
 | 
					 | 
				
			||||||
1. INTRODUCTION
 | 
					 | 
				
			||||||
 | 
					 | 
				
			||||||
2. REQUIREMENTS
 | 
					 | 
				
			||||||
 | 
					 | 
				
			||||||
3. INSTALLATION
 | 
					 | 
				
			||||||
 | 
					 | 
				
			||||||
4. BUGREPORTS
 | 
					 | 
				
			||||||
 | 
					 | 
				
			||||||
5. CREDITS
 | 
					 | 
				
			||||||
 | 
					 | 
				
			||||||
6. SUPPORT AND DONATIONS
 | 
					 | 
				
			||||||
 | 
					 | 
				
			||||||
7. HISTORY
 | 
					 | 
				
			||||||
 | 
					 | 
				
			||||||
 | 
					 | 
				
			||||||
1. INTRODUCTION
 | 
					 | 
				
			||||||
===============
 | 
					 | 
				
			||||||
 | 
					 | 
				
			||||||
Welcome to QBittorrent port for OS/2 and eComStation.
 | 
					 | 
				
			||||||
 | 
					 | 
				
			||||||
 | 
					 | 
				
			||||||
2. REQUIREMENTS
 | 
					 | 
				
			||||||
===============
 | 
					 | 
				
			||||||
 | 
					 | 
				
			||||||
The following requirements can be installed either by rpm or by zip files.
 | 
					 | 
				
			||||||
 | 
					 | 
				
			||||||
RPM Installation:
 | 
					 | 
				
			||||||
 | 
					 | 
				
			||||||
klibc
 | 
					 | 
				
			||||||
-----
 | 
					 | 
				
			||||||
 | 
					 | 
				
			||||||
  1. yum install libc
 | 
					 | 
				
			||||||
 | 
					 | 
				
			||||||
openssl 1.0
 | 
					 | 
				
			||||||
-----------
 | 
					 | 
				
			||||||
 | 
					 | 
				
			||||||
  1. yum install openssl
 | 
					 | 
				
			||||||
 | 
					 | 
				
			||||||
pthread
 | 
					 | 
				
			||||||
-------
 | 
					 | 
				
			||||||
 | 
					 | 
				
			||||||
  1. yum install pthread
 | 
					 | 
				
			||||||
 | 
					 | 
				
			||||||
GCC4Core
 | 
					 | 
				
			||||||
--------
 | 
					 | 
				
			||||||
 | 
					 | 
				
			||||||
  1. yum install libgcc
 | 
					 | 
				
			||||||
  2. yum install gcc-stack-protector
 | 
					 | 
				
			||||||
  3. yum install gcc-stdc++-shared-library
 | 
					 | 
				
			||||||
  4. yum install gcc-supc++-shared-library
 | 
					 | 
				
			||||||
 | 
					 | 
				
			||||||
Qt4 dll
 | 
					 | 
				
			||||||
-------
 | 
					 | 
				
			||||||
 | 
					 | 
				
			||||||
  1. yum install libqt4
 | 
					 | 
				
			||||||
 | 
					 | 
				
			||||||
 | 
					 | 
				
			||||||
ZIP Installation:
 | 
					 | 
				
			||||||
 | 
					 | 
				
			||||||
klibc
 | 
					 | 
				
			||||||
-----
 | 
					 | 
				
			||||||
 | 
					 | 
				
			||||||
  1. Download klibc 0.6.5 or better (see http://svn.netlabs.org/libc for more information)
 | 
					 | 
				
			||||||
  2. Install the files to your libpath eg x:\ecs\dll
 | 
					 | 
				
			||||||
 | 
					 | 
				
			||||||
openssl 1.0
 | 
					 | 
				
			||||||
-----------
 | 
					 | 
				
			||||||
 | 
					 | 
				
			||||||
  1. Download the zip file from http://rpm.netlabs.org/release/00/zip
 | 
					 | 
				
			||||||
  2. Install the files to your libpath eg. x:\ecs\dll
 | 
					 | 
				
			||||||
 | 
					 | 
				
			||||||
pthread
 | 
					 | 
				
			||||||
-------
 | 
					 | 
				
			||||||
 | 
					 | 
				
			||||||
  1. Download pthread 2012-03-13 or better from http://rpm.netlabs.org/release/00/zip
 | 
					 | 
				
			||||||
  2. Install the files to your libpath eg. x:\ecs\dll
 | 
					 | 
				
			||||||
 | 
					 | 
				
			||||||
GCC4Core
 | 
					 | 
				
			||||||
--------
 | 
					 | 
				
			||||||
 | 
					 | 
				
			||||||
  1. Download GCC4Core 1.2.1 or better from http://ftp.netlabs.org/pub/gcc
 | 
					 | 
				
			||||||
  2. Install the files to your libpath eg. x:\ecs\dll
 | 
					 | 
				
			||||||
 | 
					 | 
				
			||||||
Qt4 dll
 | 
					 | 
				
			||||||
-------
 | 
					 | 
				
			||||||
 | 
					 | 
				
			||||||
  1. Download Qt4 4.7.3 or better (see http://svn.netlabs.org/qt4 for more information)
 | 
					 | 
				
			||||||
  2. Install the files according to the readme
 | 
					 | 
				
			||||||
 | 
					 | 
				
			||||||
 | 
					 | 
				
			||||||
3. INSTALLATION
 | 
					 | 
				
			||||||
===============
 | 
					 | 
				
			||||||
          
 | 
					 | 
				
			||||||
To install QBittorrent, do the following:
 | 
					 | 
				
			||||||
 | 
					 | 
				
			||||||
  1. Create a directory for QBittorrent.
 | 
					 | 
				
			||||||
  2. Extract the QBittorrent package to the new directory.
 | 
					 | 
				
			||||||
  3. Create a WPS object for QBittorrent.exe.
 | 
					 | 
				
			||||||
  4. Start QBittorrent
 | 
					 | 
				
			||||||
  5. Happy torrenting
 | 
					 | 
				
			||||||
  
 | 
					 | 
				
			||||||
 | 
					 | 
				
			||||||
4. BUGREPORTS
 | 
					 | 
				
			||||||
=============
 | 
					 | 
				
			||||||
 | 
					 | 
				
			||||||
Please create bugreports at http://svn.netlabs.org/qtapps
 | 
					 | 
				
			||||||
Only bug reports with a reproducable bug are accepted. :-)
 | 
					 | 
				
			||||||
 | 
					 | 
				
			||||||
 | 
					 | 
				
			||||||
5. CREDITS
 | 
					 | 
				
			||||||
==========
 | 
					 | 
				
			||||||
 | 
					 | 
				
			||||||
The port was done by:
 | 
					 | 
				
			||||||
 | 
					 | 
				
			||||||
Silvan Scherrer aka _diver
 | 
					 | 
				
			||||||
 | 
					 | 
				
			||||||
Thanks go to:
 | 
					 | 
				
			||||||
 | 
					 | 
				
			||||||
  * Dmitry A. Kuminov
 | 
					 | 
				
			||||||
 | 
					 | 
				
			||||||
They either helped me when I had some nasty questions or did some testing for
 | 
					 | 
				
			||||||
me.
 | 
					 | 
				
			||||||
 | 
					 | 
				
			||||||
 | 
					 | 
				
			||||||
6. SUPPORT AND DONATIONS
 | 
					 | 
				
			||||||
========================
 | 
					 | 
				
			||||||
 | 
					 | 
				
			||||||
QBittorrent port is based on volunteer work. If you would like to support further
 | 
					 | 
				
			||||||
development, you can do so in one of the following ways:
 | 
					 | 
				
			||||||
 | 
					 | 
				
			||||||
 | 
					 | 
				
			||||||
  * Donate to the Qt4 project: see qt.netlabs.org for more information
 | 
					 | 
				
			||||||
 | 
					 | 
				
			||||||
  * Contribute to the project: Besides actual development, this also includes
 | 
					 | 
				
			||||||
    maintaining the documentation and the project web site as well as help
 | 
					 | 
				
			||||||
    for users.
 | 
					 | 
				
			||||||
 | 
					 | 
				
			||||||
 | 
					 | 
				
			||||||
7. HISTORY
 | 
					 | 
				
			||||||
==========
 | 
					 | 
				
			||||||
 | 
					 | 
				
			||||||
2012-09-19
 | 
					 | 
				
			||||||
 | 
					 | 
				
			||||||
  * updated to 3.0.4 code level of QBittorrent
 | 
					 | 
				
			||||||
  * updated libtorrent to 0.16.3 level
 | 
					 | 
				
			||||||
 | 
					 | 
				
			||||||
2012-09-06
 | 
					 | 
				
			||||||
 | 
					 | 
				
			||||||
  * updated to 3.0.2 code level of QBittorrent
 | 
					 | 
				
			||||||
 | 
					 | 
				
			||||||
2012-05-14
 | 
					 | 
				
			||||||
 | 
					 | 
				
			||||||
  * updated to 2.9.8 code level of QBittorrent
 | 
					 | 
				
			||||||
 | 
					 | 
				
			||||||
2012-03-15
 | 
					 | 
				
			||||||
 | 
					 | 
				
			||||||
  * updated to 2.9.5 code level of QBittorrent
 | 
					 | 
				
			||||||
 | 
					 | 
				
			||||||
2011-09-26
 | 
					 | 
				
			||||||
 | 
					 | 
				
			||||||
  * updated to 2.8.5 code level of QBittorrent
 | 
					 | 
				
			||||||
  * updated to Qt 4.7.3
 | 
					 | 
				
			||||||
 | 
					 | 
				
			||||||
2011-06-20
 | 
					 | 
				
			||||||
 | 
					 | 
				
			||||||
  * updated to 2.7.3 code level of QBittorrent
 | 
					 | 
				
			||||||
  * updated libtorrent to 0.15.6 level
 | 
					 | 
				
			||||||
 | 
					 | 
				
			||||||
2010-12-23
 | 
					 | 
				
			||||||
 | 
					 | 
				
			||||||
  * updated to 2.5.2 code level of QBittorrent
 | 
					 | 
				
			||||||
 | 
					 | 
				
			||||||
2010-11-22
 | 
					 | 
				
			||||||
 | 
					 | 
				
			||||||
  * updated to 2.4.11 code level of QBittorrent
 | 
					 | 
				
			||||||
 | 
					 | 
				
			||||||
2010-xx-xx
 | 
					 | 
				
			||||||
 | 
					 | 
				
			||||||
  * initial port
 | 
					 | 
				
			||||||
 | 
					 | 
				
			||||||
							
								
								
									
										67
									
								
								macxconf.pri
									
									
									
									
									
								
							
							
						
						@@ -1,67 +0,0 @@
 | 
				
			|||||||
PREFIX = /usr/local
 | 
					 | 
				
			||||||
BINDIR = /usr/local/bin
 | 
					 | 
				
			||||||
DATADIR = /usr/local/share
 | 
					 | 
				
			||||||
 | 
					 | 
				
			||||||
# Use pkg-config to get all necessary libtorrent DEFINES
 | 
					 | 
				
			||||||
CONFIG += link_pkgconfig
 | 
					 | 
				
			||||||
PKGCONFIG += libtorrent-rasterbar
 | 
					 | 
				
			||||||
DEFINES += BOOST_ASIO_DYN_LINK
 | 
					 | 
				
			||||||
 | 
					 | 
				
			||||||
# Special include/libs paths (macports)
 | 
					 | 
				
			||||||
INCLUDEPATH += /usr/include/openssl /usr/include /opt/local/include/boost /opt/local/include
 | 
					 | 
				
			||||||
LIBS += -L/opt/local/lib
 | 
					 | 
				
			||||||
 | 
					 | 
				
			||||||
# OpenSSL lib
 | 
					 | 
				
			||||||
LIBS += -lssl -lcrypto
 | 
					 | 
				
			||||||
# Boost system lib
 | 
					 | 
				
			||||||
LIBS += -lboost_system-mt
 | 
					 | 
				
			||||||
# Boost filesystem lib (Not needed for libtorrent >= 0.16.0)
 | 
					 | 
				
			||||||
#LIBS += -lboost_filesystem-mt
 | 
					 | 
				
			||||||
# Carbon
 | 
					 | 
				
			||||||
LIBS += -framework Carbon -framework IOKit
 | 
					 | 
				
			||||||
# Zlib
 | 
					 | 
				
			||||||
LIBS += -lz
 | 
					 | 
				
			||||||
 | 
					 | 
				
			||||||
document_icon.path = Contents/Resources
 | 
					 | 
				
			||||||
document_icon.files = mac/qBitTorrentDocument.icns
 | 
					 | 
				
			||||||
QMAKE_BUNDLE_DATA += document_icon
 | 
					 | 
				
			||||||
 | 
					 | 
				
			||||||
qt_conf.path = Contents/Resources
 | 
					 | 
				
			||||||
qt_conf.files = mac/qt.conf
 | 
					 | 
				
			||||||
QMAKE_BUNDLE_DATA += qt_conf
 | 
					 | 
				
			||||||
 | 
					 | 
				
			||||||
qt_translations.path = Contents/MacOS/translations
 | 
					 | 
				
			||||||
qt_translations.files = qt-translations/qt_ar.qm \
 | 
					 | 
				
			||||||
                        qt-translations/qt_bg.qm \
 | 
					 | 
				
			||||||
                        qt-translations/qt_ca.qm \
 | 
					 | 
				
			||||||
                        qt-translations/qt_cs.qm \
 | 
					 | 
				
			||||||
                        qt-translations/qt_da.qm \
 | 
					 | 
				
			||||||
                        qt-translations/qt_de.qm \
 | 
					 | 
				
			||||||
                        qt-translations/qt_es.qm \
 | 
					 | 
				
			||||||
                        qt-translations/qt_fi.qm \
 | 
					 | 
				
			||||||
                        qt-translations/qt_fr.qm \
 | 
					 | 
				
			||||||
                        qt-translations/qt_gl.qm \
 | 
					 | 
				
			||||||
                        qt-translations/qt_he.qm \
 | 
					 | 
				
			||||||
                        qt-translations/qt_hu.qm \
 | 
					 | 
				
			||||||
                        qt-translations/qt_it.qm \
 | 
					 | 
				
			||||||
                        qt-translations/qt_ja.qm \
 | 
					 | 
				
			||||||
                        qt-translations/qt_ko.qm \
 | 
					 | 
				
			||||||
                        qt-translations/qt_lt.qm \
 | 
					 | 
				
			||||||
                        qt-translations/qt_nl.qm \
 | 
					 | 
				
			||||||
                        qt-translations/qt_pl.qm \
 | 
					 | 
				
			||||||
                        qt-translations/qt_pt.qm \
 | 
					 | 
				
			||||||
                        qt-translations/qt_pt_BR.qm \
 | 
					 | 
				
			||||||
                        qt-translations/qt_ru.qm \
 | 
					 | 
				
			||||||
                        qt-translations/qt_sk.qm \
 | 
					 | 
				
			||||||
                        qt-translations/qt_sv.qm \
 | 
					 | 
				
			||||||
                        qt-translations/qt_tr.qm \
 | 
					 | 
				
			||||||
                        qt-translations/qt_uk.qm \
 | 
					 | 
				
			||||||
                        qt-translations/qt_zh_CN.qm \
 | 
					 | 
				
			||||||
                        qt-translations/qt_zh_TW.qm
 | 
					 | 
				
			||||||
QMAKE_BUNDLE_DATA += qt_translations
 | 
					 | 
				
			||||||
 | 
					 | 
				
			||||||
ICON = mac/qbittorrent_mac.icns
 | 
					 | 
				
			||||||
QMAKE_INFO_PLIST = mac/Info.plist
 | 
					 | 
				
			||||||
 | 
					 | 
				
			||||||
DEFINES += WITH_GEOIP_EMBEDDED
 | 
					 | 
				
			||||||
message("On Mac OS X, GeoIP database must be embedded.")
 | 
					 | 
				
			||||||
							
								
								
									
										19
									
								
								os2conf.pri
									
									
									
									
									
								
							
							
						
						@@ -1,19 +0,0 @@
 | 
				
			|||||||
exists(conf.pri) {
 | 
					 | 
				
			||||||
    # to the conf.pri goes all system dependent stuff
 | 
					 | 
				
			||||||
    include(conf.pri)
 | 
					 | 
				
			||||||
}
 | 
					 | 
				
			||||||
 | 
					 | 
				
			||||||
LIBS += -ltorrent-rasterbar \
 | 
					 | 
				
			||||||
        -lboost_thread \
 | 
					 | 
				
			||||||
        -lboost_system \
 | 
					 | 
				
			||||||
        -lboost_filesystem \
 | 
					 | 
				
			||||||
        -lssl -lcrypto -lidn -lpthread -lz
 | 
					 | 
				
			||||||
 | 
					 | 
				
			||||||
RC_FILE = qbittorrent_os2.rc
 | 
					 | 
				
			||||||
 | 
					 | 
				
			||||||
# LIBTORRENT DEFINES
 | 
					 | 
				
			||||||
DEFINES += WITH_SHIPPED_GEOIP_H
 | 
					 | 
				
			||||||
DEFINES += BOOST_ASIO_DYN_LINK
 | 
					 | 
				
			||||||
 | 
					 | 
				
			||||||
DEFINES += WITH_GEOIP_EMBEDDED
 | 
					 | 
				
			||||||
message("On eCS(OS/2), GeoIP database must be embedded.")
 | 
					 | 
				
			||||||
							
								
								
									
										199
									
								
								qBittorrent.kdevelop
									
									
									
									
									
										Normal file
									
								
							
							
						
						@@ -0,0 +1,199 @@
 | 
				
			|||||||
 | 
					<?xml version = '1.0'?>
 | 
				
			||||||
 | 
					<kdevelop>
 | 
				
			||||||
 | 
					  <general>
 | 
				
			||||||
 | 
					    <author>Christophe Dumez</author>
 | 
				
			||||||
 | 
					    <email>chris@qbittorrent.org</email>
 | 
				
			||||||
 | 
					    <version>1.0.0</version>
 | 
				
			||||||
 | 
					    <projectmanagement>KDevTrollProject</projectmanagement>
 | 
				
			||||||
 | 
					    <primarylanguage>C++</primarylanguage>
 | 
				
			||||||
 | 
					    <keywords>
 | 
				
			||||||
 | 
					      <keyword>Qt</keyword>
 | 
				
			||||||
 | 
					    </keywords>
 | 
				
			||||||
 | 
					    <projectname>qBittorrent</projectname>
 | 
				
			||||||
 | 
					    <ignoreparts/>
 | 
				
			||||||
 | 
					    <projectdirectory>.</projectdirectory>
 | 
				
			||||||
 | 
					    <absoluteprojectpath>false</absoluteprojectpath>
 | 
				
			||||||
 | 
					    <description/>
 | 
				
			||||||
 | 
					    <defaultencoding/>
 | 
				
			||||||
 | 
					    <versioncontrol>kdevsubversion</versioncontrol>
 | 
				
			||||||
 | 
					  </general>
 | 
				
			||||||
 | 
					  <kdevfileview>
 | 
				
			||||||
 | 
					    <groups>
 | 
				
			||||||
 | 
					      <group pattern="*.cpp;*.cxx;*.h" name="Sources" />
 | 
				
			||||||
 | 
					      <group pattern="*.ui" name="User Interface" />
 | 
				
			||||||
 | 
					      <group pattern="*.png" name="Icons" />
 | 
				
			||||||
 | 
					      <group pattern="*" name="Others" />
 | 
				
			||||||
 | 
					      <hidenonprojectfiles>false</hidenonprojectfiles>
 | 
				
			||||||
 | 
					      <hidenonlocation>false</hidenonlocation>
 | 
				
			||||||
 | 
					    </groups>
 | 
				
			||||||
 | 
					    <tree>
 | 
				
			||||||
 | 
					      <hidepatterns>*.o,*.lo,CVS</hidepatterns>
 | 
				
			||||||
 | 
					      <hidenonprojectfiles>false</hidenonprojectfiles>
 | 
				
			||||||
 | 
					      <showvcsfields>false</showvcsfields>
 | 
				
			||||||
 | 
					    </tree>
 | 
				
			||||||
 | 
					  </kdevfileview>
 | 
				
			||||||
 | 
					  <kdevdoctreeview>
 | 
				
			||||||
 | 
					    <ignoretocs>
 | 
				
			||||||
 | 
					      <toc>bash</toc>
 | 
				
			||||||
 | 
					      <toc>bash_bugs</toc>
 | 
				
			||||||
 | 
					      <toc>clanlib</toc>
 | 
				
			||||||
 | 
					      <toc>w3c-dom-level2-html</toc>
 | 
				
			||||||
 | 
					      <toc>fortran_bugs_gcc</toc>
 | 
				
			||||||
 | 
					      <toc>gnome1</toc>
 | 
				
			||||||
 | 
					      <toc>gnustep</toc>
 | 
				
			||||||
 | 
					      <toc>gtk</toc>
 | 
				
			||||||
 | 
					      <toc>gtk_bugs</toc>
 | 
				
			||||||
 | 
					      <toc>haskell</toc>
 | 
				
			||||||
 | 
					      <toc>haskell_bugs_ghc</toc>
 | 
				
			||||||
 | 
					      <toc>java_bugs_gcc</toc>
 | 
				
			||||||
 | 
					      <toc>java_bugs_sun</toc>
 | 
				
			||||||
 | 
					      <toc>kde2book</toc>
 | 
				
			||||||
 | 
					      <toc>opengl</toc>
 | 
				
			||||||
 | 
					      <toc>pascal_bugs_fp</toc>
 | 
				
			||||||
 | 
					      <toc>php</toc>
 | 
				
			||||||
 | 
					      <toc>php_bugs</toc>
 | 
				
			||||||
 | 
					      <toc>perl</toc>
 | 
				
			||||||
 | 
					      <toc>perl_bugs</toc>
 | 
				
			||||||
 | 
					      <toc>python</toc>
 | 
				
			||||||
 | 
					      <toc>python_bugs</toc>
 | 
				
			||||||
 | 
					      <toc>qt-kdev3</toc>
 | 
				
			||||||
 | 
					      <toc>ruby</toc>
 | 
				
			||||||
 | 
					      <toc>ruby_bugs</toc>
 | 
				
			||||||
 | 
					      <toc>sdl</toc>
 | 
				
			||||||
 | 
					      <toc>stl</toc>
 | 
				
			||||||
 | 
					      <toc>w3c-svg</toc>
 | 
				
			||||||
 | 
					      <toc>sw</toc>
 | 
				
			||||||
 | 
					      <toc>w3c-uaag10</toc>
 | 
				
			||||||
 | 
					      <toc>wxwidgets_bugs</toc>
 | 
				
			||||||
 | 
					    </ignoretocs>
 | 
				
			||||||
 | 
					    <ignoredoxygen>
 | 
				
			||||||
 | 
					      <toc>KDE Libraries (Doxygen)</toc>
 | 
				
			||||||
 | 
					    </ignoredoxygen>
 | 
				
			||||||
 | 
					  </kdevdoctreeview>
 | 
				
			||||||
 | 
					  <kdevdebugger>
 | 
				
			||||||
 | 
					    <general>
 | 
				
			||||||
 | 
					      <dbgshell/>
 | 
				
			||||||
 | 
					      <gdbpath/>
 | 
				
			||||||
 | 
					      <configGdbScript/>
 | 
				
			||||||
 | 
					      <runShellScript/>
 | 
				
			||||||
 | 
					      <runGdbScript/>
 | 
				
			||||||
 | 
					      <breakonloadinglibs>true</breakonloadinglibs>
 | 
				
			||||||
 | 
					      <separatetty>false</separatetty>
 | 
				
			||||||
 | 
					      <floatingtoolbar>false</floatingtoolbar>
 | 
				
			||||||
 | 
					    </general>
 | 
				
			||||||
 | 
					    <display>
 | 
				
			||||||
 | 
					      <staticmembers>false</staticmembers>
 | 
				
			||||||
 | 
					      <demanglenames>true</demanglenames>
 | 
				
			||||||
 | 
					      <outputradix>10</outputradix>
 | 
				
			||||||
 | 
					    </display>
 | 
				
			||||||
 | 
					  </kdevdebugger>
 | 
				
			||||||
 | 
					  <kdevcppsupport>
 | 
				
			||||||
 | 
					    <qt>
 | 
				
			||||||
 | 
					      <version>4</version>
 | 
				
			||||||
 | 
					      <used>true</used>
 | 
				
			||||||
 | 
					      <includestyle>4</includestyle>
 | 
				
			||||||
 | 
					      <designerintegration>ExternalDesigner</designerintegration>
 | 
				
			||||||
 | 
					      <root>/usr/lib/qt4</root>
 | 
				
			||||||
 | 
					      <qmake>/usr/bin/qmake</qmake>
 | 
				
			||||||
 | 
					      <designer>/usr/bin/designer</designer>
 | 
				
			||||||
 | 
					      <designerpluginpaths/>
 | 
				
			||||||
 | 
					    </qt>
 | 
				
			||||||
 | 
					    <references>
 | 
				
			||||||
 | 
					      <pcs>automatic_%2Fhome%2Fishanarora%2Fprojects%2Fqbittorrent</pcs>
 | 
				
			||||||
 | 
					    </references>
 | 
				
			||||||
 | 
					    <codecompletion>
 | 
				
			||||||
 | 
					      <automaticCodeCompletion>true</automaticCodeCompletion>
 | 
				
			||||||
 | 
					      <automaticArgumentsHint>true</automaticArgumentsHint>
 | 
				
			||||||
 | 
					      <automaticHeaderCompletion>true</automaticHeaderCompletion>
 | 
				
			||||||
 | 
					      <codeCompletionDelay>250</codeCompletionDelay>
 | 
				
			||||||
 | 
					      <argumentsHintDelay>400</argumentsHintDelay>
 | 
				
			||||||
 | 
					      <headerCompletionDelay>250</headerCompletionDelay>
 | 
				
			||||||
 | 
					      <showOnlyAccessibleItems>false</showOnlyAccessibleItems>
 | 
				
			||||||
 | 
					      <completionBoxItemOrder>0</completionBoxItemOrder>
 | 
				
			||||||
 | 
					      <howEvaluationContextMenu>true</howEvaluationContextMenu>
 | 
				
			||||||
 | 
					      <showCommentWithArgumentHint>true</showCommentWithArgumentHint>
 | 
				
			||||||
 | 
					      <statusBarTypeEvaluation>false</statusBarTypeEvaluation>
 | 
				
			||||||
 | 
					      <namespaceAliases>std=_GLIBCXX_STD;__gnu_cxx=std</namespaceAliases>
 | 
				
			||||||
 | 
					      <processPrimaryTypes>true</processPrimaryTypes>
 | 
				
			||||||
 | 
					      <processFunctionArguments>true</processFunctionArguments>
 | 
				
			||||||
 | 
					      <preProcessAllHeaders>true</preProcessAllHeaders>
 | 
				
			||||||
 | 
					      <parseMissingHeadersExperimental>true</parseMissingHeadersExperimental>
 | 
				
			||||||
 | 
					      <resolveIncludePathsUsingMakeExperimental>true</resolveIncludePathsUsingMakeExperimental>
 | 
				
			||||||
 | 
					      <alwaysParseInBackground>true</alwaysParseInBackground>
 | 
				
			||||||
 | 
					      <usePermanentCaching>true</usePermanentCaching>
 | 
				
			||||||
 | 
					      <alwaysIncludeNamespaces>false</alwaysIncludeNamespaces>
 | 
				
			||||||
 | 
					      <includePaths>.;</includePaths>
 | 
				
			||||||
 | 
					    </codecompletion>
 | 
				
			||||||
 | 
					    <creategettersetter>
 | 
				
			||||||
 | 
					      <prefixGet>get</prefixGet>
 | 
				
			||||||
 | 
					      <prefixSet>set</prefixSet>
 | 
				
			||||||
 | 
					      <prefixVariable>m_,_</prefixVariable>
 | 
				
			||||||
 | 
					      <parameterName>theValue</parameterName>
 | 
				
			||||||
 | 
					      <inlineGet>true</inlineGet>
 | 
				
			||||||
 | 
					      <inlineSet>true</inlineSet>
 | 
				
			||||||
 | 
					    </creategettersetter>
 | 
				
			||||||
 | 
					    <splitheadersource>
 | 
				
			||||||
 | 
					      <enabled>false</enabled>
 | 
				
			||||||
 | 
					      <synchronize>true</synchronize>
 | 
				
			||||||
 | 
					      <orientation>Vertical</orientation>
 | 
				
			||||||
 | 
					    </splitheadersource>
 | 
				
			||||||
 | 
					  </kdevcppsupport>
 | 
				
			||||||
 | 
					  <kdevfilecreate>
 | 
				
			||||||
 | 
					    <filetypes/>
 | 
				
			||||||
 | 
					    <useglobaltypes>
 | 
				
			||||||
 | 
					      <type ext="ui" />
 | 
				
			||||||
 | 
					      <type ext="cpp" />
 | 
				
			||||||
 | 
					      <type ext="h" />
 | 
				
			||||||
 | 
					    </useglobaltypes>
 | 
				
			||||||
 | 
					  </kdevfilecreate>
 | 
				
			||||||
 | 
					  <kdevtrollproject>
 | 
				
			||||||
 | 
					    <general>
 | 
				
			||||||
 | 
					      <activedir>src</activedir>
 | 
				
			||||||
 | 
					    </general>
 | 
				
			||||||
 | 
					    <run>
 | 
				
			||||||
 | 
					      <directoryradio>executable</directoryradio>
 | 
				
			||||||
 | 
					      <mainprogram>/home/ishanarora/projects/qbittorrent/src/qbittorrent</mainprogram>
 | 
				
			||||||
 | 
					      <programargs/>
 | 
				
			||||||
 | 
					      <globaldebugarguments/>
 | 
				
			||||||
 | 
					      <globalcwd>/home/ishanarora/projects/qbittorrent</globalcwd>
 | 
				
			||||||
 | 
					      <useglobalprogram>true</useglobalprogram>
 | 
				
			||||||
 | 
					      <terminal>false</terminal>
 | 
				
			||||||
 | 
					      <autocompile>true</autocompile>
 | 
				
			||||||
 | 
					      <autoinstall>false</autoinstall>
 | 
				
			||||||
 | 
					      <autokdesu>false</autokdesu>
 | 
				
			||||||
 | 
					      <envvars/>
 | 
				
			||||||
 | 
					    </run>
 | 
				
			||||||
 | 
					    <make>
 | 
				
			||||||
 | 
					      <abortonerror>true</abortonerror>
 | 
				
			||||||
 | 
					      <runmultiplejobs>false</runmultiplejobs>
 | 
				
			||||||
 | 
					      <numberofjobs>1</numberofjobs>
 | 
				
			||||||
 | 
					      <dontact>false</dontact>
 | 
				
			||||||
 | 
					      <makebin/>
 | 
				
			||||||
 | 
					      <prio>0</prio>
 | 
				
			||||||
 | 
					      <envvars/>
 | 
				
			||||||
 | 
					    </make>
 | 
				
			||||||
 | 
					    <qmake>
 | 
				
			||||||
 | 
					      <savebehaviour>2</savebehaviour>
 | 
				
			||||||
 | 
					      <replacePaths>false</replacePaths>
 | 
				
			||||||
 | 
					      <disableDefaultOpts>true</disableDefaultOpts>
 | 
				
			||||||
 | 
					    </qmake>
 | 
				
			||||||
 | 
					  </kdevtrollproject>
 | 
				
			||||||
 | 
					  <cppsupportpart>
 | 
				
			||||||
 | 
					    <filetemplates>
 | 
				
			||||||
 | 
					      <interfacesuffix>.h</interfacesuffix>
 | 
				
			||||||
 | 
					      <implementationsuffix>.cpp</implementationsuffix>
 | 
				
			||||||
 | 
					    </filetemplates>
 | 
				
			||||||
 | 
					  </cppsupportpart>
 | 
				
			||||||
 | 
					  <ctagspart>
 | 
				
			||||||
 | 
					    <customArguments/>
 | 
				
			||||||
 | 
					    <customTagfilePath>/home/ishanarora/projects/qbittorrent/tags</customTagfilePath>
 | 
				
			||||||
 | 
					    <activeTagsFiles/>
 | 
				
			||||||
 | 
					  </ctagspart>
 | 
				
			||||||
 | 
					  <kdevdocumentation>
 | 
				
			||||||
 | 
					    <projectdoc>
 | 
				
			||||||
 | 
					      <docsystem/>
 | 
				
			||||||
 | 
					      <docurl/>
 | 
				
			||||||
 | 
					      <usermanualurl/>
 | 
				
			||||||
 | 
					    </projectdoc>
 | 
				
			||||||
 | 
					  </kdevdocumentation>
 | 
				
			||||||
 | 
					</kdevelop>
 | 
				
			||||||
@@ -2,17 +2,3 @@ TEMPLATE = subdirs
 | 
				
			|||||||
 | 
					
 | 
				
			||||||
SUBDIRS += src
 | 
					SUBDIRS += src
 | 
				
			||||||
 | 
					
 | 
				
			||||||
include(version.pri)
 | 
					 | 
				
			||||||
 | 
					 | 
				
			||||||
# Dist
 | 
					 | 
				
			||||||
dist.commands += rm -fR ../$${PROJECT_NAME}-$${PROJECT_VERSION}/ &&
 | 
					 | 
				
			||||||
dist.commands += git clone . ../$${PROJECT_NAME}-$${PROJECT_VERSION} &&
 | 
					 | 
				
			||||||
dist.commands += rm -fR ../$${PROJECT_NAME}-$${PROJECT_VERSION}/.git &&
 | 
					 | 
				
			||||||
dist.commands += rm -f ../$${PROJECT_NAME}-$${PROJECT_VERSION}/.gitignore &&
 | 
					 | 
				
			||||||
dist.commands += cd .. &&
 | 
					 | 
				
			||||||
dist.commands += tar czf $${PROJECT_NAME}-$${PROJECT_VERSION}.tar.gz $${PROJECT_NAME}-$${PROJECT_VERSION} &&
 | 
					 | 
				
			||||||
dist.commands += tar cf $${PROJECT_NAME}-$${PROJECT_VERSION}.tar $${PROJECT_NAME}-$${PROJECT_VERSION} &&
 | 
					 | 
				
			||||||
dist.commands += xz -f $${PROJECT_NAME}-$${PROJECT_VERSION}.tar &&
 | 
					 | 
				
			||||||
dist.commands += rm -fR $${PROJECT_NAME}-$${PROJECT_VERSION}
 | 
					 | 
				
			||||||
 | 
					 | 
				
			||||||
QMAKE_EXTRA_TARGETS += dist
 | 
					 | 
				
			||||||
 
 | 
				
			|||||||
@@ -6,8 +6,6 @@
 | 
				
			|||||||
  <dep type='qt4'>
 | 
					  <dep type='qt4'>
 | 
				
			||||||
    <required/>
 | 
					    <required/>
 | 
				
			||||||
  </dep>
 | 
					  </dep>
 | 
				
			||||||
  <dep type='qt-dbus'>
 | 
					 | 
				
			||||||
  </dep>
 | 
					 | 
				
			||||||
  <dep type='pkg-config'>
 | 
					  <dep type='pkg-config'>
 | 
				
			||||||
    <required/>
 | 
					    <required/>
 | 
				
			||||||
  </dep>
 | 
					  </dep>
 | 
				
			||||||
@@ -17,9 +15,8 @@
 | 
				
			|||||||
  <dep type='libboost'>
 | 
					  <dep type='libboost'>
 | 
				
			||||||
    <required/>
 | 
					    <required/>
 | 
				
			||||||
  </dep>
 | 
					  </dep>
 | 
				
			||||||
 | 
					  <dep type='libnotify'>
 | 
				
			||||||
 | 
					  </dep>
 | 
				
			||||||
  <dep type='geoip-database'>
 | 
					  <dep type='geoip-database'>
 | 
				
			||||||
  </dep>
 | 
					  </dep>
 | 
				
			||||||
  <dep type='qtsingleapplication'>
 | 
					 | 
				
			||||||
    <required/>
 | 
					 | 
				
			||||||
  </dep>
 | 
					 | 
				
			||||||
</qconf>
 | 
					</qconf>
 | 
				
			||||||
 
 | 
				
			|||||||
@@ -2,96 +2,55 @@
 | 
				
			|||||||
-----BEGIN QCMOD-----
 | 
					-----BEGIN QCMOD-----
 | 
				
			||||||
name: libboost
 | 
					name: libboost
 | 
				
			||||||
arg: with-libboost-inc=[path], Path to libboost include files
 | 
					arg: with-libboost-inc=[path], Path to libboost include files
 | 
				
			||||||
arg: with-libboost-lib=[path], Path to libboost library files
 | 
					 | 
				
			||||||
-----END QCMOD-----
 | 
					-----END QCMOD-----
 | 
				
			||||||
*/
 | 
					*/
 | 
				
			||||||
#include <boost/version.hpp>
 | 
					 | 
				
			||||||
#include <libtorrent/version.hpp>
 | 
					 | 
				
			||||||
 | 
					 | 
				
			||||||
class qc_libboost : public ConfObj
 | 
					class qc_libboost : public ConfObj
 | 
				
			||||||
{
 | 
					{
 | 
				
			||||||
public:
 | 
					public:
 | 
				
			||||||
	qc_libboost(Conf *c) : ConfObj(c) {}
 | 
						qc_libboost(Conf *c) : ConfObj(c) {}
 | 
				
			||||||
	QString name() const { return "libboost"; }
 | 
						QString name() const { return "libboost"; }
 | 
				
			||||||
	QString shortname() const { return "libboost"; }
 | 
						QString shortname() const { return "libboost"; }
 | 
				
			||||||
 | 
					 | 
				
			||||||
  QString findBoostLib(QString path, QString lib) const {
 | 
					 | 
				
			||||||
    QString name;
 | 
					 | 
				
			||||||
    QDir libDir(path);
 | 
					 | 
				
			||||||
    QStringList filters;
 | 
					 | 
				
			||||||
    filters << "libboost_"+lib+"*-mt*.so";
 | 
					 | 
				
			||||||
    QStringList result = libDir.entryList(filters, QDir::Files);
 | 
					 | 
				
			||||||
    if(!result.empty()) {
 | 
					 | 
				
			||||||
      name = result.first().mid(3);
 | 
					 | 
				
			||||||
      // Remove .so
 | 
					 | 
				
			||||||
      name.chop(3);
 | 
					 | 
				
			||||||
    } else {
 | 
					 | 
				
			||||||
      // Fall back to non -mt boost lib
 | 
					 | 
				
			||||||
      filters.clear();
 | 
					 | 
				
			||||||
      filters << "libboost_"+lib+"*.so";
 | 
					 | 
				
			||||||
      result = libDir.entryList(filters, QDir::Files);
 | 
					 | 
				
			||||||
      if(!result.empty()) {
 | 
					 | 
				
			||||||
        name = result.first().mid(3);
 | 
					 | 
				
			||||||
        // Remove .so
 | 
					 | 
				
			||||||
        name.chop(3);
 | 
					 | 
				
			||||||
      }
 | 
					 | 
				
			||||||
    }
 | 
					 | 
				
			||||||
    return name;
 | 
					 | 
				
			||||||
  }
 | 
					 | 
				
			||||||
 | 
					 | 
				
			||||||
	bool exec(){
 | 
						bool exec(){
 | 
				
			||||||
 | 
					        	QString s;
 | 
				
			||||||
 | 
							s = conf->getenv("QC_WITH_LIBBOOST_INC");
 | 
				
			||||||
 | 
							if(!s.isEmpty()) {
 | 
				
			||||||
 | 
								if(!conf->checkHeader(s, "boost/format.hpp")) {
 | 
				
			||||||
 | 
									return false;
 | 
				
			||||||
 | 
					      			}
 | 
				
			||||||
 | 
								if(!conf->checkHeader(s, "boost/date_time/posix_time/posix_time.hpp")) {
 | 
				
			||||||
 | 
									return false;
 | 
				
			||||||
 | 
					      			}
 | 
				
			||||||
 | 
								if(!conf->checkHeader(s, "boost/filesystem/path.hpp")) {
 | 
				
			||||||
 | 
									return false;
 | 
				
			||||||
 | 
					      			}
 | 
				
			||||||
 | 
								if(!conf->checkHeader(s, "boost/thread.hpp")) {
 | 
				
			||||||
 | 
									return false;
 | 
				
			||||||
 | 
					      			}
 | 
				
			||||||
 | 
							}else{
 | 
				
			||||||
			QStringList sl;
 | 
								QStringList sl;
 | 
				
			||||||
    QString s = conf->getenv("QC_WITH_LIBBOOST_INC");
 | 
					 | 
				
			||||||
    if (!s.isEmpty())
 | 
					 | 
				
			||||||
      sl << s;
 | 
					 | 
				
			||||||
			sl << "/usr/include";
 | 
								sl << "/usr/include";
 | 
				
			||||||
			sl << "/usr/local/include";
 | 
								sl << "/usr/local/include";
 | 
				
			||||||
			bool found = false;
 | 
								bool found = false;
 | 
				
			||||||
			foreach(s, sl){
 | 
								foreach(s, sl){
 | 
				
			||||||
      if (conf->checkHeader(s, "boost/format.hpp")
 | 
									if(conf->checkHeader(s, "boost/format.hpp")){
 | 
				
			||||||
#if LIBTORRENT_VERSION_MAJOR == 0 && LIBTORRENT_VERSION_MINOR < 16
 | 
					 | 
				
			||||||
          && conf->checkHeader(s, "boost/filesystem/path.hpp")
 | 
					 | 
				
			||||||
#endif
 | 
					 | 
				
			||||||
         ) {
 | 
					 | 
				
			||||||
        found = true;
 | 
					 | 
				
			||||||
        break;
 | 
					 | 
				
			||||||
      }
 | 
					 | 
				
			||||||
    }
 | 
					 | 
				
			||||||
    if (!found)
 | 
					 | 
				
			||||||
      return false;
 | 
					 | 
				
			||||||
 | 
					 | 
				
			||||||
    conf->addIncludePath(s);
 | 
					 | 
				
			||||||
 | 
					 | 
				
			||||||
    // Find library
 | 
					 | 
				
			||||||
    s = conf->getenv("QC_WITH_LIBBOOST_LIB");
 | 
					 | 
				
			||||||
    QStringList required_libs;
 | 
					 | 
				
			||||||
#if BOOST_VERSION >= 103500
 | 
					 | 
				
			||||||
      required_libs << "system"; 
 | 
					 | 
				
			||||||
#endif
 | 
					 | 
				
			||||||
#if LIBTORRENT_VERSION_MAJOR == 0 && LIBTORRENT_VERSION_MINOR < 16
 | 
					 | 
				
			||||||
    required_libs << "filesystem" ;
 | 
					 | 
				
			||||||
#endif
 | 
					 | 
				
			||||||
    //required_libs << "thread";
 | 
					 | 
				
			||||||
    QStringList libDirs;
 | 
					 | 
				
			||||||
    if (!s.isEmpty())
 | 
					 | 
				
			||||||
      libDirs << s;
 | 
					 | 
				
			||||||
    libDirs << "/usr/lib/" << "/usr/lib64/" << "/usr/local/lib/" << "/usr/local/lib64/";
 | 
					 | 
				
			||||||
 | 
					 | 
				
			||||||
    foreach(const QString& lib, required_libs) {
 | 
					 | 
				
			||||||
      bool found = false;
 | 
					 | 
				
			||||||
      foreach(const QString& libDir, libDirs) {
 | 
					 | 
				
			||||||
        QString detected_name = findBoostLib(libDir, lib);
 | 
					 | 
				
			||||||
        if(!detected_name.isEmpty()) {
 | 
					 | 
				
			||||||
          conf->addLib("-l"+detected_name);
 | 
					 | 
				
			||||||
					found = true;
 | 
										found = true;
 | 
				
			||||||
					break;
 | 
										break;
 | 
				
			||||||
				}
 | 
									}
 | 
				
			||||||
			}
 | 
								}
 | 
				
			||||||
			if(!found) {
 | 
								if(!found) {
 | 
				
			||||||
        printf("Could not find boost %s library!\n", qPrintable(lib));
 | 
									return false;
 | 
				
			||||||
 | 
					          		}
 | 
				
			||||||
 | 
								if(!conf->checkHeader(s, "boost/date_time/posix_time/posix_time.hpp")) {
 | 
				
			||||||
 | 
									return false;
 | 
				
			||||||
 | 
					      			}
 | 
				
			||||||
 | 
								if(!conf->checkHeader(s, "boost/filesystem/path.hpp")) {
 | 
				
			||||||
 | 
									return false;
 | 
				
			||||||
 | 
					      			}
 | 
				
			||||||
 | 
								if(!conf->checkHeader(s, "boost/thread.hpp")) {
 | 
				
			||||||
				return false;
 | 
									return false;
 | 
				
			||||||
      			}
 | 
					      			}
 | 
				
			||||||
		}
 | 
							}
 | 
				
			||||||
 | 
							conf->addIncludePath(s);
 | 
				
			||||||
		return true;
 | 
							return true;
 | 
				
			||||||
	}
 | 
						}
 | 
				
			||||||
};
 | 
					};
 | 
				
			||||||
 
 | 
				
			|||||||
@@ -24,7 +24,7 @@ public:
 | 
				
			|||||||
		QString version, libs, other;
 | 
							QString version, libs, other;
 | 
				
			||||||
		VersionMode mode = VersionMin;
 | 
							VersionMode mode = VersionMin;
 | 
				
			||||||
		if(conf->findPkgConfig("libnotify", mode, req_ver, &version, &incs, &libs, &other)) {
 | 
							if(conf->findPkgConfig("libnotify", mode, req_ver, &version, &incs, &libs, &other)) {
 | 
				
			||||||
			conf->addExtra("CONFIG += libnotify");
 | 
								conf->addDefine("WITH_LIBNOTIFY");
 | 
				
			||||||
			for(int n = 0; n < incs.count(); ++n)
 | 
								for(int n = 0; n < incs.count(); ++n)
 | 
				
			||||||
				conf->addIncludePath(incs[n]);
 | 
									conf->addIncludePath(incs[n]);
 | 
				
			||||||
			if(!libs.isEmpty())
 | 
								if(!libs.isEmpty())
 | 
				
			||||||
@@ -40,17 +40,6 @@ public:
 | 
				
			|||||||
			} else {
 | 
								} else {
 | 
				
			||||||
				return false;
 | 
									return false;
 | 
				
			||||||
			}
 | 
								}
 | 
				
			||||||
			QStringList incs3;
 | 
					 | 
				
			||||||
                        QString req_ver3 = "2.0";
 | 
					 | 
				
			||||||
                        QString version3, libs3, other3;
 | 
					 | 
				
			||||||
			if(conf->findPkgConfig("gtk+-2.0", mode, req_ver3, &version3, &incs3, &libs3, &other3)) {
 | 
					 | 
				
			||||||
                                for(int n = 0; n < incs3.count(); ++n)
 | 
					 | 
				
			||||||
                                conf->addIncludePath(incs3[n]);
 | 
					 | 
				
			||||||
                                if(!libs3.isEmpty())
 | 
					 | 
				
			||||||
                                        conf->addLib(libs3);
 | 
					 | 
				
			||||||
                        } else {
 | 
					 | 
				
			||||||
                                return false;
 | 
					 | 
				
			||||||
                        }
 | 
					 | 
				
			||||||
		} else {
 | 
							} else {
 | 
				
			||||||
			return false;
 | 
								return false;
 | 
				
			||||||
		}
 | 
							}
 | 
				
			||||||
 
 | 
				
			|||||||
@@ -8,17 +8,24 @@ class qc_libtorrent_rasterbar : public ConfObj
 | 
				
			|||||||
{
 | 
					{
 | 
				
			||||||
public:
 | 
					public:
 | 
				
			||||||
	qc_libtorrent_rasterbar(Conf *c) : ConfObj(c) {}
 | 
						qc_libtorrent_rasterbar(Conf *c) : ConfObj(c) {}
 | 
				
			||||||
	QString name() const { return "libtorrent-rasterbar >= 0.15.0"; }
 | 
						QString name() const { return "libtorrent-rasterbar >= 0.14.4"; }
 | 
				
			||||||
	QString shortname() const { return "libtorrent-rasterbar"; }
 | 
						QString shortname() const { return "libtorrent-rasterbar"; }
 | 
				
			||||||
	bool exec(){
 | 
						bool exec(){
 | 
				
			||||||
		QStringList incs;
 | 
							QStringList incs;
 | 
				
			||||||
		QString req_ver = "0.15.0";
 | 
							QString req_ver = "0.14.4";
 | 
				
			||||||
 | 
							QString adv_ver = "0.15.0";
 | 
				
			||||||
		QString version, libs, other;
 | 
							QString version, libs, other;
 | 
				
			||||||
		VersionMode mode = VersionMin;
 | 
							VersionMode mode = VersionMin;
 | 
				
			||||||
		if(!conf->findPkgConfig("libtorrent-rasterbar", mode, req_ver, &version, &incs, &libs, &other))
 | 
							if(!conf->findPkgConfig("libtorrent-rasterbar", mode, req_ver, &version, &incs, &libs, &other))
 | 
				
			||||||
			return false;
 | 
								return false;
 | 
				
			||||||
		for(int n = 0; n < incs.count(); ++n)
 | 
							for(int n = 0; n < incs.count(); ++n)
 | 
				
			||||||
			conf->addIncludePath(incs[n]);
 | 
								conf->addIncludePath(incs[n]);
 | 
				
			||||||
 | 
							if(!libs.isEmpty())
 | 
				
			||||||
 | 
								conf->addLib(libs);
 | 
				
			||||||
 | 
							if(!conf->findPkgConfig("libtorrent-rasterbar", mode, adv_ver, &version, &incs, &libs, &other))
 | 
				
			||||||
 | 
					                        printf("\nWarning: libtorrent-rasterbar v%s was detected. Some feature will be disabled because they require v%s.\n", version.toLocal8Bit().data(), adv_ver.toUtf8().data());
 | 
				
			||||||
 | 
							else
 | 
				
			||||||
 | 
								conf->addDefine("LIBTORRENT_0_15");
 | 
				
			||||||
		return true;
 | 
							return true;
 | 
				
			||||||
	}
 | 
						}
 | 
				
			||||||
};
 | 
					};
 | 
				
			||||||
 
 | 
				
			|||||||
@@ -1,31 +0,0 @@
 | 
				
			|||||||
/*
 | 
					 | 
				
			||||||
-----BEGIN QCMOD-----
 | 
					 | 
				
			||||||
name: qt-dbus
 | 
					 | 
				
			||||||
-----END QCMOD-----
 | 
					 | 
				
			||||||
*/
 | 
					 | 
				
			||||||
// see  Conf::findPkgConfig
 | 
					 | 
				
			||||||
class qc_qt_dbus : public ConfObj
 | 
					 | 
				
			||||||
{
 | 
					 | 
				
			||||||
public:
 | 
					 | 
				
			||||||
	qc_qt_dbus(Conf *c) : ConfObj(c) {}
 | 
					 | 
				
			||||||
	QString name() const { return "QtDBus >= 4.5"; }
 | 
					 | 
				
			||||||
	QString shortname() const { return "qt-dbus"; }
 | 
					 | 
				
			||||||
        QString checkString() const {
 | 
					 | 
				
			||||||
                if(!conf->getenv("QC_DISABLE_qt_dbus").isEmpty() || !conf->getenv("QC_DISABLE_GUI").isEmpty())
 | 
					 | 
				
			||||||
                        return "";
 | 
					 | 
				
			||||||
                return ConfObj::checkString();
 | 
					 | 
				
			||||||
        }
 | 
					 | 
				
			||||||
	bool exec(){
 | 
					 | 
				
			||||||
                if(!conf->getenv("QC_DISABLE_qt_dbus").isEmpty() || !conf->getenv("QC_DISABLE_GUI").isEmpty())
 | 
					 | 
				
			||||||
                  return false;
 | 
					 | 
				
			||||||
		QStringList incs;
 | 
					 | 
				
			||||||
		QString req_ver = "4.5.0";
 | 
					 | 
				
			||||||
		QString version, libs, other;
 | 
					 | 
				
			||||||
		VersionMode mode = VersionMin;
 | 
					 | 
				
			||||||
		if(conf->findPkgConfig("QtDBus", mode, req_ver, &version, &incs, &libs, &other)) {
 | 
					 | 
				
			||||||
                        conf->addExtra("CONFIG += dbus");
 | 
					 | 
				
			||||||
			return true;
 | 
					 | 
				
			||||||
                }
 | 
					 | 
				
			||||||
		return false;
 | 
					 | 
				
			||||||
	}
 | 
					 | 
				
			||||||
};
 | 
					 | 
				
			||||||
@@ -1,31 +0,0 @@
 | 
				
			|||||||
/*
 | 
					 | 
				
			||||||
-----BEGIN QCMOD-----
 | 
					 | 
				
			||||||
name: qt-svg
 | 
					 | 
				
			||||||
-----END QCMOD-----
 | 
					 | 
				
			||||||
*/
 | 
					 | 
				
			||||||
// see  Conf::findPkgConfig
 | 
					 | 
				
			||||||
class qc_qt_svg : public ConfObj
 | 
					 | 
				
			||||||
{
 | 
					 | 
				
			||||||
public:
 | 
					 | 
				
			||||||
	qc_qt_svg(Conf *c) : ConfObj(c) {}
 | 
					 | 
				
			||||||
	QString name() const { return "QtSvg >= 4.5"; }
 | 
					 | 
				
			||||||
	QString shortname() const { return "qt-svg"; }
 | 
					 | 
				
			||||||
        QString checkString() const {
 | 
					 | 
				
			||||||
                if(!conf->getenv("QC_DISABLE_qt_svg").isEmpty() || !conf->getenv("QC_DISABLE_GUI").isEmpty())
 | 
					 | 
				
			||||||
                        return "";
 | 
					 | 
				
			||||||
                return ConfObj::checkString();
 | 
					 | 
				
			||||||
        }
 | 
					 | 
				
			||||||
	bool exec(){
 | 
					 | 
				
			||||||
                if(!conf->getenv("QC_DISABLE_qt_svg").isEmpty() || !conf->getenv("QC_DISABLE_GUI").isEmpty())
 | 
					 | 
				
			||||||
                  return false;
 | 
					 | 
				
			||||||
		QStringList incs;
 | 
					 | 
				
			||||||
		QString req_ver = "4.5.0";
 | 
					 | 
				
			||||||
		QString version, libs, other;
 | 
					 | 
				
			||||||
		VersionMode mode = VersionMin;
 | 
					 | 
				
			||||||
		if(conf->findPkgConfig("QtSvg", mode, req_ver, &version, &incs, &libs, &other)) {
 | 
					 | 
				
			||||||
                        conf->addExtra("CONFIG += svg");
 | 
					 | 
				
			||||||
			return true;
 | 
					 | 
				
			||||||
                }
 | 
					 | 
				
			||||||
		return false;
 | 
					 | 
				
			||||||
	}
 | 
					 | 
				
			||||||
};
 | 
					 | 
				
			||||||
							
								
								
									
										28
									
								
								qcm/qt4.qcm
									
									
									
									
									
								
							
							
						
						@@ -1,7 +1,6 @@
 | 
				
			|||||||
/*
 | 
					/*
 | 
				
			||||||
-----BEGIN QCMOD-----
 | 
					-----BEGIN QCMOD-----
 | 
				
			||||||
name: Qt >= 4.6
 | 
					name: Qt >= 4.4
 | 
				
			||||||
arg: enable-debug, Enable debug mode
 | 
					 | 
				
			||||||
arg: disable-gui, Disable qBittorrent Graphical user interface for headless running
 | 
					arg: disable-gui, Disable qBittorrent Graphical user interface for headless running
 | 
				
			||||||
-----END QCMOD-----
 | 
					-----END QCMOD-----
 | 
				
			||||||
*/
 | 
					*/
 | 
				
			||||||
@@ -9,28 +8,17 @@ class qc_qt4 : public ConfObj
 | 
				
			|||||||
{
 | 
					{
 | 
				
			||||||
public:
 | 
					public:
 | 
				
			||||||
	qc_qt4(Conf *c) : ConfObj(c) {}
 | 
						qc_qt4(Conf *c) : ConfObj(c) {}
 | 
				
			||||||
	QString name() const { return "Qt >= 4.6"; }
 | 
						QString name() const { return "Qt >= 4.4"; }
 | 
				
			||||||
	QString shortname() const { return "Qt 4.6"; }
 | 
						QString shortname() const { return "Qt 4.4"; }
 | 
				
			||||||
	bool exec()
 | 
						bool exec()
 | 
				
			||||||
	{
 | 
						{
 | 
				
			||||||
                // NOX mode
 | 
					 | 
				
			||||||
		if(!conf->getenv("QC_DISABLE_GUI").isEmpty()) {
 | 
							if(!conf->getenv("QC_DISABLE_GUI").isEmpty()) {
 | 
				
			||||||
			conf->addExtra("CONFIG += nox");
 | 
								conf->addDefine("DISABLE_GUI");
 | 
				
			||||||
		}	
 | 
							}	
 | 
				
			||||||
                // Debug mode
 | 
							if(QT_VERSION >= 0x040500) {
 | 
				
			||||||
                if(!conf->getenv("QC_ENABLE_DEBUG").isEmpty()) {
 | 
					                        conf->addDefine("QT_4_5");
 | 
				
			||||||
                  conf->addExtra("CONFIG -= release");
 | 
					 | 
				
			||||||
                  conf->addExtra("CONFIG += debug");
 | 
					 | 
				
			||||||
                } else {
 | 
					 | 
				
			||||||
                  conf->addExtra("CONFIG -= debug");
 | 
					 | 
				
			||||||
                  conf->addExtra("CONFIG += release");
 | 
					 | 
				
			||||||
                }
 | 
					                }
 | 
				
			||||||
                #ifdef Q_OS_FREEBSD
 | 
							return(QT_VERSION >= 0x040400);
 | 
				
			||||||
                  conf->addLib("-lexecinfo");
 | 
							
 | 
				
			||||||
                  conf->addExtra("MANPREFIX = $$PREFIX");
 | 
					 | 
				
			||||||
                #else
 | 
					 | 
				
			||||||
                  conf->addExtra("MANPREFIX = $$PREFIX/share"); 
 | 
					 | 
				
			||||||
                #endif
 | 
					 | 
				
			||||||
		return(QT_VERSION >= 0x040600);
 | 
					 | 
				
			||||||
	}
 | 
						}
 | 
				
			||||||
};
 | 
					};
 | 
				
			||||||
 
 | 
				
			|||||||
@@ -1,26 +0,0 @@
 | 
				
			|||||||
/*
 | 
					 | 
				
			||||||
-----BEGIN QCMOD-----
 | 
					 | 
				
			||||||
name: qtsingleapplication
 | 
					 | 
				
			||||||
arg: with-qtsingleapplication=[system|shipped], Use the shipped qtsingleapplication library or the system one
 | 
					 | 
				
			||||||
-----END QCMOD-----
 | 
					 | 
				
			||||||
*/
 | 
					 | 
				
			||||||
class qc_qtsingleapplication : public ConfObj
 | 
					 | 
				
			||||||
{
 | 
					 | 
				
			||||||
public:
 | 
					 | 
				
			||||||
        qc_qtsingleapplication(Conf *c) : ConfObj(c) {}
 | 
					 | 
				
			||||||
        QString name() const { return "qtsingleapplication library"; }
 | 
					 | 
				
			||||||
        QString shortname() const { return "qtsingleapplication"; }
 | 
					 | 
				
			||||||
 | 
					 | 
				
			||||||
        bool exec(){
 | 
					 | 
				
			||||||
                QString s;
 | 
					 | 
				
			||||||
                s = conf->getenv("QC_WITH_QTSINGLEAPPLICATION");
 | 
					 | 
				
			||||||
                if(s.compare("system", Qt::CaseInsensitive) == 0) {
 | 
					 | 
				
			||||||
                  // System
 | 
					 | 
				
			||||||
                  conf->addExtra("CONFIG += usesystemqtsingleapplication");
 | 
					 | 
				
			||||||
                  printf(" [system] ");
 | 
					 | 
				
			||||||
                } else {
 | 
					 | 
				
			||||||
                  printf(" [shipped] ");
 | 
					 | 
				
			||||||
                }
 | 
					 | 
				
			||||||
                return true;
 | 
					 | 
				
			||||||
        }
 | 
					 | 
				
			||||||
};
 | 
					 | 
				
			||||||
							
								
								
									
										927
									
								
								src/GUI.cpp
									
									
									
									
									
										Normal file
									
								
							
							
						
						@@ -37,81 +37,83 @@
 | 
				
			|||||||
#include "ui_mainwindow.h"
 | 
					#include "ui_mainwindow.h"
 | 
				
			||||||
#include "qtorrenthandle.h"
 | 
					#include "qtorrenthandle.h"
 | 
				
			||||||
 | 
					
 | 
				
			||||||
class QBtSession;
 | 
					enum TabIndex{TAB_TRANSFER, TAB_SEARCH, TAB_RSS};
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					class Bittorrent;
 | 
				
			||||||
 | 
					class QTimer;
 | 
				
			||||||
class downloadFromURL;
 | 
					class downloadFromURL;
 | 
				
			||||||
class SearchEngine;
 | 
					class SearchEngine;
 | 
				
			||||||
 | 
					class QLocalServer;
 | 
				
			||||||
 | 
					class QCloseEvent;
 | 
				
			||||||
class RSSImp;
 | 
					class RSSImp;
 | 
				
			||||||
 | 
					class QShortcut;
 | 
				
			||||||
class about;
 | 
					class about;
 | 
				
			||||||
class options_imp;
 | 
					class options_imp;
 | 
				
			||||||
 | 
					class QTabWidget;
 | 
				
			||||||
class TransferListWidget;
 | 
					class TransferListWidget;
 | 
				
			||||||
class TransferListFiltersWidget;
 | 
					class TransferListFiltersWidget;
 | 
				
			||||||
 | 
					class QSplitter;
 | 
				
			||||||
class PropertiesWidget;
 | 
					class PropertiesWidget;
 | 
				
			||||||
class StatusBar;
 | 
					class StatusBar;
 | 
				
			||||||
class consoleDlg;
 | 
					 | 
				
			||||||
class about;
 | 
					 | 
				
			||||||
class TorrentCreatorDlg;
 | 
					 | 
				
			||||||
class downloadFromURL;
 | 
					 | 
				
			||||||
class HidableTabWidget;
 | 
					 | 
				
			||||||
class LineEdit;
 | 
					 | 
				
			||||||
class ExecutionLog;
 | 
					 | 
				
			||||||
class PowerManagement;
 | 
					 | 
				
			||||||
 | 
					
 | 
				
			||||||
QT_BEGIN_NAMESPACE
 | 
					class GUI : public QMainWindow, private Ui::MainWindow{
 | 
				
			||||||
class QCloseEvent;
 | 
					 | 
				
			||||||
class QFileSystemWatcher;
 | 
					 | 
				
			||||||
class QShortcut;
 | 
					 | 
				
			||||||
class QSplitter;
 | 
					 | 
				
			||||||
class QTabWidget;
 | 
					 | 
				
			||||||
class QTimer;
 | 
					 | 
				
			||||||
QT_END_NAMESPACE
 | 
					 | 
				
			||||||
 | 
					 | 
				
			||||||
class MainWindow : public QMainWindow, private Ui::MainWindow{
 | 
					 | 
				
			||||||
  Q_OBJECT
 | 
					  Q_OBJECT
 | 
				
			||||||
 | 
					
 | 
				
			||||||
public:
 | 
					private:
 | 
				
			||||||
  // Construct / Destruct
 | 
					  // Bittorrent
 | 
				
			||||||
  MainWindow(QWidget *parent=0, const QStringList& torrentCmdLine = QStringList());
 | 
					  Bittorrent *BTSession;
 | 
				
			||||||
  ~MainWindow();
 | 
					  QList<QPair<QTorrentHandle,QString> > unauthenticated_trackers; // Still needed?
 | 
				
			||||||
  // Methods
 | 
					  // GUI related
 | 
				
			||||||
  QWidget* getCurrentTabWidget() const;
 | 
					  QTimer *guiUpdater;
 | 
				
			||||||
  TransferListWidget* getTransferList() const { return transferList; }
 | 
					  QTabWidget *tabs;
 | 
				
			||||||
  QMenu* getTrayIconMenu();
 | 
					  StatusBar *status_bar;
 | 
				
			||||||
  PropertiesWidget *getProperties() const { return properties; }
 | 
					  QPointer<options_imp> options;
 | 
				
			||||||
 | 
					  QPointer<QSystemTrayIcon> systrayIcon;
 | 
				
			||||||
public slots:
 | 
					  QPointer<QTimer> systrayCreator;
 | 
				
			||||||
  void trackerAuthenticationRequired(const QTorrentHandle& h);
 | 
					  QMenu *myTrayIconMenu;
 | 
				
			||||||
  void setTabText(int index, QString text) const;
 | 
					  TransferListWidget *transferList;
 | 
				
			||||||
  void showNotificationBaloon(QString title, QString msg) const;
 | 
					  TransferListFiltersWidget *transferListFilters;
 | 
				
			||||||
  void downloadFromURLList(const QStringList& urls);
 | 
					  PropertiesWidget *properties;
 | 
				
			||||||
  void updateAltSpeedsBtn(bool alternative);
 | 
					  bool displaySpeedInTitle;
 | 
				
			||||||
  void updateNbTorrents();
 | 
					  bool force_exit;
 | 
				
			||||||
  void deleteBTSession();
 | 
					  // Keyboard shortcuts
 | 
				
			||||||
 | 
					  QShortcut *switchSearchShortcut;
 | 
				
			||||||
 | 
					  QShortcut *switchSearchShortcut2;
 | 
				
			||||||
 | 
					  QShortcut *switchTransferShortcut;
 | 
				
			||||||
 | 
					  QShortcut *switchRSSShortcut;
 | 
				
			||||||
 | 
					  // Widgets
 | 
				
			||||||
 | 
					  QAction *prioSeparator;
 | 
				
			||||||
 | 
					  QAction *prioSeparator2;
 | 
				
			||||||
 | 
					  QSplitter *hSplitter;
 | 
				
			||||||
 | 
					  QSplitter *vSplitter;
 | 
				
			||||||
 | 
					  // Search
 | 
				
			||||||
 | 
					  SearchEngine *searchEngine;
 | 
				
			||||||
 | 
					  // RSS
 | 
				
			||||||
 | 
					  QPointer<RSSImp> rssWidget;
 | 
				
			||||||
 | 
					  // Misc
 | 
				
			||||||
 | 
					  QLocalServer *localServer;
 | 
				
			||||||
 | 
					
 | 
				
			||||||
protected slots:
 | 
					protected slots:
 | 
				
			||||||
  // GUI related slots
 | 
					  // GUI related slots
 | 
				
			||||||
  void dropEvent(QDropEvent *event);
 | 
					  void dropEvent(QDropEvent *event);
 | 
				
			||||||
  void dragEnterEvent(QDragEnterEvent *event);
 | 
					  void dragEnterEvent(QDragEnterEvent *event);
 | 
				
			||||||
  void toggleVisibility(QSystemTrayIcon::ActivationReason e = QSystemTrayIcon::Trigger);
 | 
					  void toggleVisibility(QSystemTrayIcon::ActivationReason e);
 | 
				
			||||||
  void on_actionAbout_triggered();
 | 
					  void on_actionAbout_triggered();
 | 
				
			||||||
  void on_actionCreate_torrent_triggered();
 | 
					  void on_actionCreate_torrent_triggered();
 | 
				
			||||||
  void on_actionWebsite_triggered() const;
 | 
					  void on_actionWebsite_triggered() const;
 | 
				
			||||||
  void on_actionBugReport_triggered() const;
 | 
					  void on_actionBugReport_triggered() const;
 | 
				
			||||||
 | 
					  void on_actionShow_console_triggered();
 | 
				
			||||||
 | 
					  void readParamsOnSocket();
 | 
				
			||||||
 | 
					  void acceptConnection();
 | 
				
			||||||
  void balloonClicked();
 | 
					  void balloonClicked();
 | 
				
			||||||
  void writeSettings();
 | 
					  void writeSettings();
 | 
				
			||||||
  void readSettings();
 | 
					  void readSettings();
 | 
				
			||||||
  void on_actionExit_triggered();
 | 
					  void on_actionExit_triggered();
 | 
				
			||||||
  void createTrayIcon();
 | 
					  void createTrayIcon();
 | 
				
			||||||
  void fullDiskError(const QTorrentHandle& h, QString msg) const;
 | 
					  void fullDiskError(QTorrentHandle& h, QString msg) const;
 | 
				
			||||||
  void handleDownloadFromUrlFailure(QString, QString) const;
 | 
					  void handleDownloadFromUrlFailure(QString, QString) const;
 | 
				
			||||||
  void createSystrayDelayed();
 | 
					  void createSystrayDelayed();
 | 
				
			||||||
  void tab_changed(int);
 | 
					  void tab_changed(int);
 | 
				
			||||||
  void on_actionLock_qBittorrent_triggered();
 | 
					 | 
				
			||||||
  void defineUILockPassword();
 | 
					 | 
				
			||||||
  bool unlockUI();
 | 
					 | 
				
			||||||
  void notifyOfUpdate(QString);
 | 
					 | 
				
			||||||
  void showConnectionSettings();
 | 
					 | 
				
			||||||
  void minimizeWindow();
 | 
					 | 
				
			||||||
  void updateTrayIconMenu();
 | 
					 | 
				
			||||||
  // Keyboard shortcuts
 | 
					  // Keyboard shortcuts
 | 
				
			||||||
  void createKeyboardShortcuts();
 | 
					  void createKeyboardShortcuts();
 | 
				
			||||||
  void displayTransferTab() const;
 | 
					  void displayTransferTab() const;
 | 
				
			||||||
@@ -124,91 +126,37 @@ protected slots:
 | 
				
			|||||||
  void on_actionOpen_triggered();
 | 
					  void on_actionOpen_triggered();
 | 
				
			||||||
  void updateGUI();
 | 
					  void updateGUI();
 | 
				
			||||||
  void loadPreferences(bool configure_session=true);
 | 
					  void loadPreferences(bool configure_session=true);
 | 
				
			||||||
  void processParams(const QString& params);
 | 
					 | 
				
			||||||
  void processParams(const QStringList& params);
 | 
					  void processParams(const QStringList& params);
 | 
				
			||||||
  void addTorrent(QString path);
 | 
					  void addTorrent(QString path);
 | 
				
			||||||
  void addUnauthenticatedTracker(const QPair<QTorrentHandle,QString> &tracker);
 | 
					  void addUnauthenticatedTracker(QPair<QTorrentHandle,QString> tracker);
 | 
				
			||||||
  void processDownloadedFiles(QString path, QString url);
 | 
					  void processDownloadedFiles(QString path, QString url);
 | 
				
			||||||
  void processNewMagnetLink(const QString& link);
 | 
					  void finishedTorrent(QTorrentHandle& h) const;
 | 
				
			||||||
  void finishedTorrent(const QTorrentHandle& h) const;
 | 
					 | 
				
			||||||
  void askRecursiveTorrentDownloadConfirmation(const QTorrentHandle &h);
 | 
					 | 
				
			||||||
  // Options slots
 | 
					  // Options slots
 | 
				
			||||||
  void on_actionOptions_triggered();
 | 
					  void on_actionOptions_triggered();
 | 
				
			||||||
  void optionsSaved();
 | 
					  void optionsSaved();
 | 
				
			||||||
  // HTTP slots
 | 
					  // HTTP slots
 | 
				
			||||||
  void on_actionDownload_from_URL_triggered();
 | 
					  void on_actionDownload_from_URL_triggered();
 | 
				
			||||||
#if defined(Q_WS_WIN) || defined(Q_WS_MAC)
 | 
					
 | 
				
			||||||
  void handleUpdateCheckFinished(bool update_available, QString new_version);
 | 
					
 | 
				
			||||||
  void handleUpdateInstalled(QString error_msg);
 | 
					public slots:
 | 
				
			||||||
#endif
 | 
					  void trackerAuthenticationRequired(QTorrentHandle& h);
 | 
				
			||||||
 | 
					  void setTabText(int index, QString text) const;
 | 
				
			||||||
 | 
					  void showNotificationBaloon(QString title, QString msg) const;
 | 
				
			||||||
 | 
					  void downloadFromURLList(const QStringList& urls);
 | 
				
			||||||
 | 
					
 | 
				
			||||||
protected:
 | 
					protected:
 | 
				
			||||||
  void closeEvent(QCloseEvent *);
 | 
					  void closeEvent(QCloseEvent *);
 | 
				
			||||||
  void showEvent(QShowEvent *);
 | 
					  void showEvent(QShowEvent *);
 | 
				
			||||||
  bool event(QEvent * event);
 | 
					  bool event(QEvent * event);
 | 
				
			||||||
  void displayRSSTab(bool enable);
 | 
					  void displayRSSTab(bool enable);
 | 
				
			||||||
  void displaySearchTab(bool enable);
 | 
					 | 
				
			||||||
 | 
					
 | 
				
			||||||
private:
 | 
					public:
 | 
				
			||||||
  QIcon getSystrayIcon() const;
 | 
					  // Construct / Destruct
 | 
				
			||||||
 | 
					  GUI(QWidget *parent=0, QStringList torrentCmdLine=QStringList());
 | 
				
			||||||
private:
 | 
					  ~GUI();
 | 
				
			||||||
  QFileSystemWatcher *executable_watcher;
 | 
					  // Methods
 | 
				
			||||||
  // Bittorrent
 | 
					  int getCurrentTabIndex() const;
 | 
				
			||||||
  QList<QPair<QTorrentHandle,QString> > unauthenticated_trackers; // Still needed?
 | 
					  TransferListWidget* getTransferList() const { return transferList; }
 | 
				
			||||||
  // GUI related
 | 
					 | 
				
			||||||
  bool m_posInitialized;
 | 
					 | 
				
			||||||
  QTimer *guiUpdater;
 | 
					 | 
				
			||||||
  HidableTabWidget *tabs;
 | 
					 | 
				
			||||||
  StatusBar *status_bar;
 | 
					 | 
				
			||||||
  QPointer<options_imp> options;
 | 
					 | 
				
			||||||
  QPointer<consoleDlg> console;
 | 
					 | 
				
			||||||
  QPointer<about> aboutDlg;
 | 
					 | 
				
			||||||
  QPointer<TorrentCreatorDlg> createTorrentDlg;
 | 
					 | 
				
			||||||
  QPointer<downloadFromURL> downloadFromURLDialog;
 | 
					 | 
				
			||||||
  QPointer<QSystemTrayIcon> systrayIcon;
 | 
					 | 
				
			||||||
  QPointer<QTimer> systrayCreator;
 | 
					 | 
				
			||||||
  QPointer<QMenu> myTrayIconMenu;
 | 
					 | 
				
			||||||
  TransferListWidget *transferList;
 | 
					 | 
				
			||||||
  TransferListFiltersWidget *transferListFilters;
 | 
					 | 
				
			||||||
  PropertiesWidget *properties;
 | 
					 | 
				
			||||||
  bool displaySpeedInTitle;
 | 
					 | 
				
			||||||
  bool force_exit;
 | 
					 | 
				
			||||||
  bool ui_locked;
 | 
					 | 
				
			||||||
  LineEdit *search_filter;
 | 
					 | 
				
			||||||
  // Keyboard shortcuts
 | 
					 | 
				
			||||||
  QShortcut *switchSearchShortcut;
 | 
					 | 
				
			||||||
  QShortcut *switchSearchShortcut2;
 | 
					 | 
				
			||||||
  QShortcut *switchTransferShortcut;
 | 
					 | 
				
			||||||
  QShortcut *switchRSSShortcut;
 | 
					 | 
				
			||||||
  // Widgets
 | 
					 | 
				
			||||||
  QAction *prioSeparator;
 | 
					 | 
				
			||||||
  QAction *prioSeparatorMenu;
 | 
					 | 
				
			||||||
  QSplitter *hSplitter;
 | 
					 | 
				
			||||||
  QSplitter *vSplitter;
 | 
					 | 
				
			||||||
  // Search
 | 
					 | 
				
			||||||
  QPointer<SearchEngine> searchEngine;
 | 
					 | 
				
			||||||
  // RSS
 | 
					 | 
				
			||||||
  QPointer<RSSImp> rssWidget;
 | 
					 | 
				
			||||||
  // Execution Log
 | 
					 | 
				
			||||||
  QPointer<ExecutionLog> m_executionLog;
 | 
					 | 
				
			||||||
  // Power Management
 | 
					 | 
				
			||||||
  PowerManagement *m_pwr;
 | 
					 | 
				
			||||||
  QTimer *preventTimer;
 | 
					 | 
				
			||||||
 | 
					 | 
				
			||||||
private slots:
 | 
					 | 
				
			||||||
    void on_actionSearch_engine_triggered();
 | 
					 | 
				
			||||||
    void on_actionRSS_Reader_triggered();
 | 
					 | 
				
			||||||
    void on_actionSpeed_in_title_bar_triggered();
 | 
					 | 
				
			||||||
    void on_actionTop_tool_bar_triggered();
 | 
					 | 
				
			||||||
    void on_action_Import_Torrent_triggered();
 | 
					 | 
				
			||||||
    void on_actionDonate_money_triggered();
 | 
					 | 
				
			||||||
    void on_actionExecution_Logs_triggered(bool checked);
 | 
					 | 
				
			||||||
    void on_actionAutoExit_qBittorrent_toggled(bool );
 | 
					 | 
				
			||||||
    void on_actionAutoSuspend_system_toggled(bool );
 | 
					 | 
				
			||||||
    void on_actionAutoShutdown_system_toggled(bool );
 | 
					 | 
				
			||||||
    // Check for active torrents and set preventing from suspend state
 | 
					 | 
				
			||||||
    void checkForActiveTorrents();
 | 
					 | 
				
			||||||
};
 | 
					};
 | 
				
			||||||
 | 
					
 | 
				
			||||||
#endif
 | 
					#endif
 | 
				
			||||||
| 
		 Before Width: | Height: | Size: 322 B  | 
							
								
								
									
										
											BIN
										
									
								
								src/Icons/L.gif
									
									
									
									
									
								
							
							
						
						| 
		 Before Width: | Height: | Size: 66 B  | 
							
								
								
									
										
											BIN
										
									
								
								src/Icons/downarrow.png
									
									
									
									
									
										Normal file
									
								
							
							
						
						| 
		 After Width: | Height: | Size: 722 B  | 
| 
		 Before Width: | Height: | Size: 643 B  | 
| 
		 Before Width: | Height: | Size: 408 B  | 
| 
		 Before Width: | Height: | Size: 604 B  | 
| 
		 Before Width: | Height: | Size: 591 B  | 
| 
		 Before Width: | Height: | Size: 643 B  | 
| 
		 Before Width: | Height: | Size: 600 B  | 
							
								
								
									
										
											BIN
										
									
								
								src/Icons/flags/algeria.png
									
									
									
									
									
										Normal file
									
								
							
							
						
						| 
		 After Width: | Height: | Size: 473 B  |