Searched refs:Prefs (Results 1 - 25 of 29) sorted by relevance

12

/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/transmission/transmission-2.73/web/javascript/
H A Dcommon.js152 function Prefs() { } class
153 Prefs.prototype = { };
155 Prefs._RefreshRate = 'refresh_rate';
157 Prefs._FilterMode = 'filter';
158 Prefs._FilterAll = 'all';
159 Prefs._FilterActive = 'active';
160 Prefs._FilterSeeding = 'seeding';
161 Prefs._FilterDownloading = 'downloading';
162 Prefs._FilterPaused = 'paused';
163 Prefs
[all...]
H A Dtorrent.js324 case Prefs._FilterActive:
329 case Prefs._FilterSeeding:
332 case Prefs._FilterDownloading:
335 case Prefs._FilterPaused:
337 case Prefs._FilterFinished:
345 * @param filter one of Prefs._Filter*
438 case Prefs._SortByActivity:
441 case Prefs._SortByAge:
444 case Prefs._SortByQueue:
447 case Prefs
[all...]
H A Dtransmission.js41 Prefs.getClutchPrefs(this);
71 e.val(this[Prefs._FilterMode]);
116 Prefs.getClutchPrefs(o);
132 Prefs.getClutchPrefs(this);
136 $('#sort_by_' + this[Prefs._SortMethod]).selectMenuItem();
138 if (this[Prefs._SortDirection] === Prefs._SortDescending)
274 Prefs.setValue(key, val);
603 this.setPref(Prefs._SortMethod, sort_method);
608 this.setPref(Prefs
[all...]
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/transmission/transmission-2.73/qt/
H A Dsession-dialog.cc33 myPrefs.set( Prefs::SESSION_IS_REMOTE, myRemoteRadioButton->isChecked( ) );
34 myPrefs.set( Prefs::SESSION_REMOTE_HOST, myHostLineEdit->text( ) );
35 myPrefs.set( Prefs::SESSION_REMOTE_PORT, myPortSpinBox->value( ) );
36 myPrefs.set( Prefs::SESSION_REMOTE_AUTH, myAuthCheckBox->isChecked( ) );
37 myPrefs.set( Prefs::SESSION_REMOTE_USERNAME, myUsernameLineEdit->text( ) );
38 myPrefs.set( Prefs::SESSION_REMOTE_PASSWORD, myPasswordLineEdit->text( ) );
60 SessionDialog :: SessionDialog( Session& session, Prefs& prefs, QWidget * parent ):
79 rb->setChecked( !prefs.get<bool>(Prefs::SESSION_IS_REMOTE) );
83 rb->setChecked( prefs.get<bool>(Prefs::SESSION_IS_REMOTE) );
87 le->setText( prefs.get<QString>(Prefs
[all...]
H A Dprefs-dialog.cc181 QWidget * l = checkBoxNew( tr( "&Enable web client" ), Prefs::RPC_ENABLED );
184 l = hig->addRow( tr( "Listening &port:" ), w = spinBoxNew( Prefs::RPC_PORT, 0, 65535, 1 ) );
186 hig->addWideControl( w = checkBoxNew( tr( "Use &authentication" ), Prefs::RPC_AUTH_REQUIRED ) );
188 l = hig->addRow( tr( "&Username:" ), w = lineEditNew( Prefs::RPC_USERNAME ) );
190 l = hig->addRow( tr( "Pass&word:" ), w = lineEditNew( Prefs::RPC_PASSWORD, QLineEdit::Password ) );
192 hig->addWideControl( w = checkBoxNew( tr( "Only allow these IP a&ddresses to connect:" ), Prefs::RPC_WHITELIST_ENABLED ) );
194 l = hig->addRow( tr( "Addresses:" ), w = lineEditNew( Prefs::RPC_WHITELIST ) );
209 setPref( Prefs::ALT_SPEED_LIMIT_TIME_DAY, value );
221 l = checkBoxNew( tr( "Limit &download speed (%1):" ).arg( speed_K_str ), Prefs::DSPEED_ENABLED );
222 r = spinBoxNew( Prefs
[all...]
H A Dsession-dialog.h19 class Prefs;
31 SessionDialog( Session& session, Prefs& prefs, QWidget * parent = 0 );
49 Prefs& myPrefs;
H A Dtorrent-filter.h24 class Prefs;
32 TorrentFilter( Prefs& prefs );
54 Prefs& myPrefs;
H A Dsession.cc142 case Prefs :: ALT_SPEED_LIMIT_DOWN:
143 case Prefs :: ALT_SPEED_LIMIT_ENABLED:
144 case Prefs :: ALT_SPEED_LIMIT_TIME_BEGIN:
145 case Prefs :: ALT_SPEED_LIMIT_TIME_DAY:
146 case Prefs :: ALT_SPEED_LIMIT_TIME_ENABLED:
147 case Prefs :: ALT_SPEED_LIMIT_TIME_END:
148 case Prefs :: ALT_SPEED_LIMIT_UP:
149 case Prefs :: BLOCKLIST_DATE:
150 case Prefs :: BLOCKLIST_ENABLED:
151 case Prefs
[all...]
H A Dtorrent-filter.cc23 TorrentFilter :: TorrentFilter( Prefs& prefs ):
33 initKeys << Prefs :: SORT_MODE
34 << Prefs :: FILTER_MODE
35 << Prefs :: FILTER_TRACKERS
36 << Prefs :: FILTER_TEXT;
50 case Prefs :: FILTER_TEXT:
51 case Prefs :: FILTER_MODE:
52 case Prefs :: FILTER_TRACKERS:
55 sort( 0, !myPrefs.getBool(Prefs::SORT_REVERSED) ? Qt::AscendingOrder : Qt::DescendingOrder );
57 case Prefs
[all...]
H A Dapp.h24 class Prefs;
46 Prefs * myPrefs;
H A Dtorrent-model.h24 class Prefs;
42 Prefs& myPrefs;
75 TorrentModel( Prefs& prefs );
H A Dmainwin.cc97 TrMainWindow :: TrMainWindow( Session& session, Prefs& prefs, TorrentModel& model, bool minimized ):
233 myAltSpeedAction->setIcon( myPrefs.get<bool>(Prefs::ALT_SPEED_LIMIT_ENABLED) ? mySpeedModeOnIcon : mySpeedModeOffIcon );
258 ui.action_TrayIcon->setChecked( minimized || prefs.getBool( Prefs::SHOW_TRAY_ICON ) );
264 initKeys << Prefs :: MAIN_WINDOW_X
265 << Prefs :: SHOW_TRAY_ICON
266 << Prefs :: SORT_REVERSED
267 << Prefs :: SORT_MODE
268 << Prefs :: FILTERBAR
269 << Prefs :: STATUSBAR
270 << Prefs
[all...]
H A Dfilterbar.h25 class Prefs;
66 FilterBar( Prefs& prefs, TorrentModel& torrents, TorrentFilter& filter, QWidget * parent = 0 );
77 Prefs& myPrefs;
H A Dapp.cc150 myPrefs = new Prefs ( configDir );
152 myPrefs->set( Prefs::SESSION_REMOTE_HOST, host );
154 myPrefs->set( Prefs::SESSION_REMOTE_PORT, port );
156 myPrefs->set( Prefs::SESSION_REMOTE_USERNAME, username );
158 myPrefs->set( Prefs::SESSION_REMOTE_PASSWORD, password );
160 myPrefs->set( Prefs::SESSION_IS_REMOTE, true );
185 initKeys << Prefs::DIR_WATCH;
217 if( !myPrefs->getBool( Prefs::USER_HAS_GIVEN_INFORMED_CONSENT ))
256 if( !myPrefs->getBool( Prefs::SHOW_DESKTOP_NOTIFICATION ) )
311 myPrefs->set<bool>( Prefs
[all...]
H A Dprefs.cc32 Prefs::PrefItem Prefs::myItems[] =
128 Prefs :: Prefs( const char * configDir ): function in class:Prefs
190 Prefs :: ~Prefs( )
255 Prefs :: initDefaults( tr_benc * d )
296 Prefs :: getBool( int key ) const
303 Prefs :: getString( int key ) const
313 Prefs
[all...]
H A Dprefs-dialog.h35 class Prefs;
74 PrefsDialog( Session&, Prefs&, QWidget * parent = 0 );
93 Prefs& myPrefs;
H A Dprefs.h29 class Prefs: public QObject class in inherits:QObject
154 Prefs( const char * configDir );
155 ~Prefs( );
H A Doptions.h36 class Prefs;
64 Options( Session& session, const Prefs& prefs, const AddData& addme, QWidget * parent = 0 );
H A Dmainwin.h37 class Prefs;
70 Prefs& myPrefs;
193 TrMainWindow( Session&, Prefs&, TorrentModel&, bool minized );
H A Dsession.h36 class Prefs;
43 Session( const char * configDir, Prefs& prefs );
148 Prefs& myPrefs;
H A Ddetails.h55 Details( Session&, Prefs&, TorrentModel&, QWidget * parent = 0 );
74 Prefs& myPrefs;
H A Dfilterbar.cc369 refreshPref( Prefs::FILTER_TRACKERS );
398 FilterBar :: FilterBar( Prefs& prefs, TorrentModel& torrents, TorrentFilter& filter, QWidget * parent ):
452 initKeys << Prefs :: FILTER_MODE
453 << Prefs :: FILTER_TRACKERS;
472 case Prefs :: FILTER_MODE: {
480 case Prefs :: FILTER_TRACKERS: {
494 case Prefs :: FILTER_TEXT:
504 myPrefs.set( Prefs::FILTER_TEXT, str.trimmed( ) );
522 myPrefs.set( Prefs::FILTER_TRACKERS, str );
532 myPrefs.set( Prefs
[all...]
H A Dtorrent.h36 class Prefs;
182 Torrent( Prefs&, int id );
340 Prefs& myPrefs;
H A Doptions.cc82 Options :: Options( Session& session, const Prefs& prefs, const AddData& addme, QWidget * parent ):
125 myDestination.setPath( prefs.getString( Prefs :: DOWNLOAD_DIR ) );
137 e->setText( prefs.getString( Prefs :: DOWNLOAD_DIR ) );
166 c->setChecked( prefs.getBool( Prefs :: START ) );
170 c->setChecked( prefs.getBool( Prefs :: TRASH_ORIGINAL ) );
H A Ddetails.cc63 class Prefs;
143 Details :: Details( Session& session, Prefs& prefs, TorrentModel& model, QWidget * parent ):
175 initKeys << Prefs :: SHOW_TRACKER_SCRAPES
176 << Prefs :: SHOW_BACKUP_TRACKERS;
234 case Prefs :: SHOW_TRACKER_SCRAPES: {
246 case Prefs :: SHOW_BACKUP_TRACKERS:
897 myPrefs.set( Prefs::SHOW_TRACKER_SCRAPES, val );
903 myPrefs.set( Prefs::SHOW_BACKUP_TRACKERS, val );
1241 c->setChecked( myPrefs.getBool( Prefs::SHOW_TRACKER_SCRAPES ) );
1247 c->setChecked( myPrefs.getBool( Prefs
[all...]

Completed in 76 milliseconds

12