Helpviewer/AdBlock/AdBlockDialog.py

branch
Py2 comp.
changeset 3057
10516539f238
parent 2525
8b507a9a2d40
parent 3000
971d84f7a6d6
child 3058
0a02c433f52d
--- a/Helpviewer/AdBlock/AdBlockDialog.py	Tue Oct 15 22:03:54 2013 +0200
+++ b/Helpviewer/AdBlock/AdBlockDialog.py	Fri Oct 18 23:00:41 2013 +0200
@@ -27,6 +27,8 @@
     def __init__(self, parent=None):
         """
         Constructor
+        
+        @param parent reference to the parent object (QWidget)
         """
         super(AdBlockDialog, self).__init__(parent)
         self.setupUi(self)
@@ -78,7 +80,8 @@
                 icon = UI.PixmapCache.getIcon("adBlockPlus.png")
             else:
                 icon = UI.PixmapCache.getIcon("adBlockPlusDisabled.png")
-            self.subscriptionsTabWidget.addTab(tree, icon, subscription.title())
+            self.subscriptionsTabWidget.addTab(
+                tree, icon, subscription.title())
         
         self.__loaded = True
         QCoreApplication.processEvents()
@@ -96,7 +99,8 @@
         from .AdBlockTreeWidget import AdBlockTreeWidget
         tree = AdBlockTreeWidget(subscription, self.subscriptionsTabWidget)
         index = self.subscriptionsTabWidget.insertTab(
-            self.subscriptionsTabWidget.count() - 1, tree, subscription.title())
+            self.subscriptionsTabWidget.count() - 1, tree,
+            subscription.title())
         self.subscriptionsTabWidget.setCurrentIndex(index)
         QCoreApplication.processEvents()
         if refresh:
@@ -122,8 +126,10 @@
         menu.addAction(self.trUtf8("Remove Rule"), self.__removeCustomRule)\
             .setEnabled(subscriptionEditable)
         menu.addSeparator()
-        menu.addAction(self.trUtf8("Browse Subscriptions..."), self.__browseSubscriptions)
-        menu.addAction(self.trUtf8("Remove Subscription"), self.__removeSubscription)\
+        menu.addAction(
+            self.trUtf8("Browse Subscriptions..."), self.__browseSubscriptions)
+        menu.addAction(
+            self.trUtf8("Remove Subscription"), self.__removeSubscription)\
             .setEnabled(subscriptionRemovable)
         if self.__currentSubscription:
             menu.addSeparator()
@@ -133,7 +139,8 @@
                 txt = self.trUtf8("Enable Subscription")
             menu.addAction(txt, self.__switchSubscriptionEnabled)
         menu.addSeparator()
-        menu.addAction(self.trUtf8("Update Subscription"), self.__updateSubscription)\
+        menu.addAction(
+            self.trUtf8("Update Subscription"), self.__updateSubscription)\
             .setEnabled(not subscriptionEditable)
         menu.addAction(self.trUtf8("Update All Subscriptions"),
             self.__updateAllSubscriptions)
@@ -203,13 +210,15 @@
         for subscription in requiresSubscriptions:
             requiresTitles.append(subscription.title())
         if requiresTitles:
-            message = self.trUtf8("<p>Do you really want to remove subscription"
+            message = self.trUtf8(
+                "<p>Do you really want to remove subscription"
                 " <b>{0}</b> and all subscriptions requiring it?</p>"
                 "<ul><li>{1}</li></ul>").format(
                     self.__currentSubscription.title(),
                     "</li><li>".join(requiresTitles))
         else:
-            message = self.trUtf8("<p>Do you really want to remove subscription"
+            message = self.trUtf8(
+                "<p>Do you really want to remove subscription"
                 " <b>{0}</b>?</p>").format(self.__currentSubscription.title())
         res = E5MessageBox.yesNo(self,
             self.trUtf8("Remove Subscription"),
@@ -229,7 +238,7 @@
     
     def __switchSubscriptionEnabled(self):
         """
-        Private slot to switch the enabled state of the selected subscription
+        Private slot to switch the enabled state of the selected subscription.
         """
         newState = not self.__currentSubscription.isEnabled()
         self.__setSubscriptionEnabled(self.__currentSubscription, newState)
@@ -238,7 +247,8 @@
         """
         Private slot to set the enabled state of a subscription.
         
-        @param subscription subscription to set the state for (AdBlockSubscription)
+        @param subscription subscription to set the state for
+            (AdBlockSubscription)
         @param enable state to set to (boolean)
         """
         if enable:
@@ -284,8 +294,10 @@
         @param index index of the new current tab (integer)
         """
         if index != -1:
-            self.__currentTreeWidget = self.subscriptionsTabWidget.widget(index)
-            self.__currentSubscription = self.__currentTreeWidget.subscription()
+            self.__currentTreeWidget = \
+                self.subscriptionsTabWidget.widget(index)
+            self.__currentSubscription = \
+                self.__currentTreeWidget.subscription()
     
     @pyqtSlot(str)
     def on_searchEdit_textChanged(self, filter):

eric ide

mercurial