• Home
  • History
  • Annotate
  • Raw
  • Download
  • only in /netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/transmission/transmission-2.73/qt/

Lines Matching refs:connect

157     connect( ui.action_Toolbar, SIGNAL(toggled(bool)), this, SLOT(setToolbarVisible(bool)));
158 connect( ui.action_Filterbar, SIGNAL(toggled(bool)), this, SLOT(setFilterbarVisible(bool)));
159 connect( ui.action_Statusbar, SIGNAL(toggled(bool)), this, SLOT(setStatusbarVisible(bool)));
160 connect( ui.action_CompactView, SIGNAL(toggled(bool)), this, SLOT(setCompactView(bool)));
161 connect( ui.action_SortByActivity, SIGNAL(toggled(bool)), this, SLOT(onSortByActivityToggled(bool)));
162 connect( ui.action_SortByAge, SIGNAL(toggled(bool)), this, SLOT(onSortByAgeToggled(bool)));
163 connect( ui.action_SortByETA, SIGNAL(toggled(bool)), this, SLOT(onSortByETAToggled(bool)));
164 connect( ui.action_SortByName, SIGNAL(toggled(bool)), this, SLOT(onSortByNameToggled(bool)));
165 connect( ui.action_SortByProgress, SIGNAL(toggled(bool)), this, SLOT(onSortByProgressToggled(bool)));
166 connect( ui.action_SortByQueue, SIGNAL(toggled(bool)), this, SLOT(onSortByQueueToggled(bool)));
167 connect( ui.action_SortByRatio, SIGNAL(toggled(bool)), this, SLOT(onSortByRatioToggled(bool)));
168 connect( ui.action_SortBySize, SIGNAL(toggled(bool)), this, SLOT(onSortBySizeToggled(bool)));
169 connect( ui.action_SortByState, SIGNAL(toggled(bool)), this, SLOT(onSortByStateToggled(bool)));
170 connect( ui.action_ReverseSortOrder, SIGNAL(toggled(bool)), this, SLOT(setSortAscendingPref(bool)));
171 connect( ui.action_Start, SIGNAL(triggered()), this, SLOT(startSelected()));
172 connect( ui.action_QueueMoveTop, SIGNAL(triggered()), this, SLOT(queueMoveTop()));
173 connect( ui.action_QueueMoveUp, SIGNAL(triggered()), this, SLOT(queueMoveUp()));
174 connect( ui.action_QueueMoveDown, SIGNAL(triggered()), this, SLOT(queueMoveDown()));
175 connect( ui.action_QueueMoveBottom, SIGNAL(triggered()), this, SLOT(queueMoveBottom()));
176 connect( ui.action_StartNow, SIGNAL(triggered()), this, SLOT(startSelectedNow()));
177 connect( ui.action_Pause, SIGNAL(triggered()), this, SLOT(pauseSelected()));
178 connect( ui.action_Remove, SIGNAL(triggered()), this, SLOT(removeSelected()));
179 connect( ui.action_Delete, SIGNAL(triggered()), this, SLOT(deleteSelected()));
180 connect( ui.action_Verify, SIGNAL(triggered()), this, SLOT(verifySelected()) );
181 connect( ui.action_Announce, SIGNAL(triggered()), this, SLOT(reannounceSelected()) );
182 connect( ui.action_StartAll, SIGNAL(triggered()), this, SLOT(startAll()));
183 connect( ui.action_PauseAll, SIGNAL(triggered()), this, SLOT(pauseAll()));
184 connect( ui.action_OpenFile, SIGNAL(triggered()), this, SLOT(openTorrent()));
185 connect( ui.action_AddURL, SIGNAL(triggered()), this, SLOT(openURL()));
186 connect( ui.action_New, SIGNAL(triggered()), this, SLOT(newTorrent()));
187 connect( ui.action_Preferences, SIGNAL(triggered()), this, SLOT(openPreferences()));
188 connect( ui.action_Statistics, SIGNAL(triggered()), myStatsDialog, SLOT(show()));
189 connect( ui.action_Donate, SIGNAL(triggered()), this, SLOT(openDonate()));
190 connect( ui.action_About, SIGNAL(triggered()), myAboutDialog, SLOT(show()));
191 connect( ui.action_Contents, SIGNAL(triggered()), this, SLOT(openHelp()));
192 connect( ui.action_OpenFolder, SIGNAL(triggered()), this, SLOT(openFolder()));
193 connect( ui.action_CopyMagnetToClipboard, SIGNAL(triggered()), this, SLOT(copyMagnetLinkToClipboard()));
194 connect( ui.action_SetLocation, SIGNAL(triggered()), this, SLOT(setLocation()));
195 connect( ui.action_Properties, SIGNAL(triggered()), this, SLOT(openProperties()));
196 connect( ui.action_SessionDialog, SIGNAL(triggered()), mySessionDialog, SLOT(show()));
198 connect( ui.listView, SIGNAL(activated(const QModelIndex&)), ui.action_Properties, SLOT(trigger()));
201 connect( ui.action_SelectAll, SIGNAL(triggered()), ui.listView, SLOT(selectAll()));
202 connect( ui.action_DeselectAll, SIGNAL(triggered()), ui.listView, SLOT(clearSelection()));
204 connect( &myFilterModel, SIGNAL(rowsInserted(const QModelIndex&,int,int)), this, SLOT(refreshVisibleCount()));
205 connect( &myFilterModel, SIGNAL(rowsRemoved(const QModelIndex&,int,int)), this, SLOT(refreshVisibleCount()));
206 connect( &myFilterModel, SIGNAL(rowsInserted(const QModelIndex&,int,int)), this, SLOT(refreshActionSensitivitySoon()));
207 connect( &myFilterModel, SIGNAL(rowsRemoved(const QModelIndex&,int,int)), this, SLOT(refreshActionSensitivitySoon()));
209 connect( ui.action_Quit, SIGNAL(triggered()), QCoreApplication::instance(), SLOT(quit()) );
213 connect( &myModel, SIGNAL(modelReset()), this, SLOT(onModelReset()));
214 connect( &myModel, SIGNAL(rowsRemoved(const QModelIndex&,int,int)), this, SLOT(onModelReset()));
215 connect( &myModel, SIGNAL(rowsInserted(const QModelIndex&,int,int)), this, SLOT(onModelReset()));
216 connect( &myModel, SIGNAL(dataChanged(const QModelIndex&,const QModelIndex&)), this, SLOT(refreshTrayIconSoon()));
219 connect( ui.listView->selectionModel(), SIGNAL(selectionChanged(const QItemSelection&,const QItemSelection&)), this, SLOT(refreshActionSensitivitySoon()));
234 connect( myAltSpeedAction, SIGNAL(triggered()), this, SLOT(toggleSpeedMode()) );
252 connect( &myPrefs, SIGNAL(changed(int)), this, SLOT(refreshPref(int)) );
253 connect( ui.action_ShowMainWindow, SIGNAL(toggled(bool)), this, SLOT(toggleWindows(bool)));
254 connect( &myTrayIcon, SIGNAL(activated(QSystemTrayIcon::ActivationReason)),
283 connect( &mySession, SIGNAL(sourceChanged()), this, SLOT(onSessionSourceChanged()) );
284 connect( &mySession, SIGNAL(statsUpdated()), this, SLOT(refreshStatusBar()) );
285 connect( &mySession, SIGNAL(dataReadProgress()), this, SLOT(dataReadProgress()) );
286 connect( &mySession, SIGNAL(dataSendProgress()), this, SLOT(dataSendProgress()) );
287 connect( &mySession, SIGNAL(httpAuthenticationRequired()), this, SLOT(wrongAuthentication()) );
292 connect( &myNetworkTimer, SIGNAL(timeout()), this, SLOT(onNetworkTimer()));
296 connect( &myRefreshTrayIconTimer, SIGNAL(timeout()), this, SLOT(refreshTrayIcon()) );
297 connect( &myRefreshActionSensitivityTimer, SIGNAL(timeout()), this, SLOT(refreshActionSensitivity()) );
402 connect( p, SIGNAL(clicked()), this, SLOT(toggleSpeedMode()));
424 connect( ui.action_TotalRatio, SIGNAL(triggered()), this, SLOT(showTotalRatio()));
425 connect( ui.action_TotalTransfer, SIGNAL(triggered()), this, SLOT(showTotalTransfer()));
426 connect( ui.action_SessionRatio, SIGNAL(triggered()), this, SLOT(showSessionRatio()));
427 connect( ui.action_SessionTransfer, SIGNAL(triggered()), this, SLOT(showSessionTransfer()));
482 connect( a, SIGNAL(triggered(bool)), this, SLOT(onSetPrefs(bool)) );
487 connect( a, SIGNAL(triggered(bool)), this, SLOT(onSetPrefs(bool)) );
492 connect( a, SIGNAL(triggered(bool)), this, SLOT(onSetPrefs()));
502 connect( a, SIGNAL(triggered(bool)), this, SLOT(onSetPrefs(bool)) );
507 connect( a, SIGNAL(triggered(bool)), this, SLOT(onSetPrefs(bool)) );
512 connect( a, SIGNAL(triggered(bool)), this, SLOT(onSetPrefs()));
524 connect( a, SIGNAL(triggered(bool)), this, SLOT(onSetPrefs(bool)) );
529 connect( a, SIGNAL(triggered(bool)), this, SLOT(onSetPrefs(bool)) );
534 connect( a, SIGNAL(triggered(bool)), this, SLOT(onSetPrefs()));
580 connect( myPrefsDialog, SIGNAL(destroyed(QObject*)), this, SLOT(onPrefsDestroyed()));
597 connect( myDetailsDialog, SIGNAL(destroyed(QObject*)), this, SLOT(onDetailsDestroyed()));
1157 connect( myFileDialog, SIGNAL(filesSelected(const QStringList&)),